@charset "UTF-8";

/** Variables **/
/** Bootstrap Variables **/
/** Reset Bootstrap Styles **/
/** Fonts **/
/** Grid **/
/** Colors **/
/** Gradients **/
.exclusive-bg {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
}

/** Font Sizing **/
/** Added Font Sizing **/
/** Added Variables **/
/* Misc. **/

@keyframes flash {
  0% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  50% {
    transform: translateY(0);
  }

  60% {
    transform: translateY(-15px);
  }

  80% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  10% {
    transform: translateX(-10px);
  }

  20% {
    transform: translateX(10px);
  }

  30% {
    transform: translateX(-10px);
  }

  40% {
    transform: translateX(10px);
  }

  50% {
    transform: translateX(-10px);
  }

  60% {
    transform: translateX(10px);
  }

  70% {
    transform: translateX(-10px);
  }

  80% {
    transform: translateX(10px);
  }

  90% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes tada {
  0% {
    transform: scale(1, 1);
  }

  10% {
    transform: scale(0.9) rotate(-3deg);
  }

  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30% {
    transform: scale(1.1) rotate(3deg);
  }

  40% {
    transform: scale(1.1) rotate(-3deg);
  }

  50% {
    transform: scale(1.1) rotate(3deg);
  }

  60% {
    transform: scale(1.1) rotate(-3deg);
  }

  70% {
    transform: scale(1.1) rotate(3deg);
  }

  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  90% {
    transform: scale(1.1) rotate(3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes swing {

  20%,
  40%,
  60%,
  80%,
  100% {
    transform-origin: top center 50%;
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes wiggle {
  0% {
    transform: skewX(9deg);
  }

  10% {
    transform: skewX(-8deg);
  }

  20% {
    transform: skewX(7deg);
  }

  30% {
    transform: skewX(-6deg);
  }

  40% {
    transform: skewX(5deg);
  }

  50% {
    transform: skewX(-4deg);
  }

  60% {
    transform: skewX(3deg);
  }

  70% {
    transform: skewX(-2deg);
  }

  80% {
    transform: skewX(1deg);
  }

  90% {
    transform: skewX(0deg);
  }

  100% {
    transform: skewX(0deg);
  }
}

@keyframes bounceOut {
  0% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.95, 0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1, 1.1);
  }

  100% {
    opacity: 0;
    transform: scale(0.3, 0.3);
  }
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3, 0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05, 1.05);
  }

  70% {
    transform: scale(0.9, 0.9);
  }

  100% {
    transform: scale(1, 1);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOutUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

@keyframes fadeOutDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

@keyframes fadeOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}

@keyframes fadeOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-20px);
    opacity: 0;
  }
}

@keyframes fadeOutUpBig {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-2000px);
    opacity: 0;
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUpBig {
  0% {
    transform: translateY(2000px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px) scale(1);
    animation-timing-function: ease-in;
  }
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateX(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    transform: perspective(400px) rotateY(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateY(90deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }

  60% {
    transform: translateX(-20%) skewX(30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  80% {
    transform: translateX(0%) skewX(-15deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    transform: translateX(0%) skewX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
  }

  100% {
    transform: translateX(100%) skewX(-30deg);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    transform-origin: center center 50%;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: center center 50%;
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom 50%;
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom 50%;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom 50%;
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom 50%;
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateIn {
  0% {
    transform-origin: center center 50%;
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center center 50%;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom 50%;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom 50%;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom 50%;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom 50%;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom 50%;
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left 50%;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left 50%;
    animation-timing-function: ease-in-out;
  }

  40% {
    transform: rotate(60deg);
    transform-origin: top left 50%;
    animation-timing-function: ease-in-out;
  }

  80% {
    transform: rotate(60deg) translateY(0);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    transform-origin: top left 50%;
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translateY(700px);
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
  }
}

@keyframes rollIn {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollOut {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
}

/** Bootstrap **/
*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/*
html {
  font-family: sans-serif; // 2
  line-height: 1.15; // 3
  -webkit-text-size-adjust: 100%; // 4
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba($black, 0); // 5
}
*/
article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #131a25;
  text-align: left;
  background-color: #fff;
  overflow-x: hidden;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

dfn {
  font-style: italic;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #e9ecef;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #25a9e0;
  text-decoration: none;
}

a:hover {
  color: #25a9e0;
  text-decoration: none;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

/*
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: $zindex-dropdown;
  display: none; // none by default, but block on "open" of the menu
  float: left;
  min-width: $dropdown-min-width;
  padding: $dropdown-padding-y 0;
  margin: $dropdown-spacer 0 0; // override default ul
  @include font-size($dropdown-font-size);
  color: $dropdown-color;
  text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)
  list-style: none;
  background-color: $dropdown-bg;
  background-clip: padding-box;
  border: $dropdown-border-width solid $dropdown-border-color;
  @include border-radius($dropdown-border-radius);
  @include box-shadow($dropdown-box-shadow);
}
*/
.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu,
.dropup .dropdown-public .dropdown-menu--large,
.dropdown-public .dropup .dropdown-menu--large {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu,
.dropright .dropdown-public .dropdown-menu--large,
.dropdown-public .dropright .dropdown-menu--large {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu,
.dropleft .dropdown-public .dropdown-menu--large,
.dropdown-public .dropleft .dropdown-menu--large {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-public .dropdown-menu--large[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-public .dropdown-menu--large[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-public .dropdown-menu--large[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"],
.dropdown-public .dropdown-menu--large[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show,
.dropdown-public .show.dropdown-menu--large {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

code {
  font-size: 87.5%;
  color: #ed217c;
  word-wrap: break-word;
}

a>code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1160px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -16px;
  margin-left: -16px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  min-height: 1px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1>* {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2>* {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3>* {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.row-cols-4>* {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5>* {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6>* {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
}

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
}

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
}

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
}

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
}

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
}

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
}

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-sm-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-md-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
  }

  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
  }

  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
  }

  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
  }

  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-lg-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1>* {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2>* {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3>* {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .row-cols-xl-4>* {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5>* {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6>* {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #e9ecef !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #cbd3da !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #8cc63f !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #71a230 !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #eb2227 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #c81217 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #e9ecef !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #8cc63f !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #eb2227 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 5px !important;
}

.rounded-top {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

.rounded-right {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-left {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

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

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

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

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

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

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

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

  .float-xl-none {
    float: none !important;
  }
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #e9ecef !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #bdc6cf !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #8cc63f !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #638e2a !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #eb2227 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #b11014 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #131a25 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

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

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

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

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

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

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

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

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

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

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

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

  .float-xl-none {
    float: none !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer>* {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #949baf;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.form-control::-moz-placeholder {
  color: #949baf;
  opacity: 1;
}

.form-control::placeholder {
  color: #949baf;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #131a25;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size],
select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled]~.form-check-label,
.form-check-input:disabled~.form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #8cc63f;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #212529;
  background-color: rgba(140, 198, 63, 0.9);
  border-radius: 5px;
}

.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip,
.is-valid~.valid-feedback,
.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #8cc63f;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%238cc63f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
  border-color: #8cc63f;
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #8cc63f;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%238cc63f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #8cc63f;
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.25);
}

.was-validated .form-check-input:valid~.form-check-label,
.form-check-input.is-valid~.form-check-label {
  color: #8cc63f;
}

.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip,
.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid~.custom-control-label,
.custom-control-input.is-valid~.custom-control-label {
  color: #8cc63f;
}

.was-validated .custom-control-input:valid~.custom-control-label::before,
.custom-control-input.is-valid~.custom-control-label::before {
  border-color: #8cc63f;
}

.was-validated .custom-control-input:valid:checked~.custom-control-label::before,
.custom-control-input.is-valid:checked~.custom-control-label::before {
  border-color: #a4d266;
  background-color: #a4d266;
}

.was-validated .custom-control-input:valid:focus~.custom-control-label::before,
.custom-control-input.is-valid:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before {
  border-color: #8cc63f;
}

.was-validated .custom-file-input:valid~.custom-file-label,
.custom-file-input.is-valid~.custom-file-label {
  border-color: #8cc63f;
}

.was-validated .custom-file-input:valid:focus~.custom-file-label,
.custom-file-input.is-valid:focus~.custom-file-label {
  border-color: #8cc63f;
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #eb2227;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(235, 34, 39, 0.9);
  border-radius: 5px;
}

.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip,
.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #eb2227;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23eb2227' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23eb2227' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #eb2227;
  box-shadow: 0 0 0 0.2rem rgba(235, 34, 39, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #eb2227;
  padding-right: calc(0.75em + 2.3125rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23eb2227' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23eb2227' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #eb2227;
  box-shadow: 0 0 0 0.2rem rgba(235, 34, 39, 0.25);
}

.was-validated .form-check-input:invalid~.form-check-label,
.form-check-input.is-invalid~.form-check-label {
  color: #eb2227;
}

.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip,
.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid~.custom-control-label,
.custom-control-input.is-invalid~.custom-control-label {
  color: #eb2227;
}

.was-validated .custom-control-input:invalid~.custom-control-label::before,
.custom-control-input.is-invalid~.custom-control-label::before {
  border-color: #eb2227;
}

.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,
.custom-control-input.is-invalid:checked~.custom-control-label::before {
  border-color: #ef5155;
  background-color: #ef5155;
}

.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,
.custom-control-input.is-invalid:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(235, 34, 39, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before {
  border-color: #eb2227;
}

.was-validated .custom-file-input:invalid~.custom-file-label,
.custom-file-input.is-invalid~.custom-file-label {
  border-color: #eb2227;
}

.was-validated .custom-file-input:invalid:focus~.custom-file-label,
.custom-file-input.is-invalid:focus~.custom-file-label {
  border-color: #eb2227;
  box-shadow: 0 0 0 0.2rem rgba(235, 34, 39, 0.25);
}

.form-inline,
.form-inline--nowrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.form-inline .form-check,
.form-inline--nowrap .form-check {
  width: 100%;
}

@media (min-width: 576px) {

  .form-inline label,
  .form-inline--nowrap label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group,
  .form-inline--nowrap .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control,
  .form-inline--nowrap .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext,
  .form-inline--nowrap .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline--nowrap .input-group,
  .form-inline .custom-select,
  .form-inline--nowrap .custom-select {
    width: auto;
  }

  .form-inline .form-check,
  .form-inline--nowrap .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input,
  .form-inline--nowrap .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control,
  .form-inline--nowrap .custom-control {
    align-items: center;
    justify-content: center;
  }

  .form-inline .custom-control-label,
  .form-inline--nowrap .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #131a25;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 5px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: #131a25;
  text-decoration: none;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.btn.disabled,
.btn:disabled {
  opacity: 0.65;
}

a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-primary:hover {
  color: #212529;
  background-color: #d3d9df;
  border-color: #cbd3da;
}

.btn-primary:focus,
.btn-primary.focus {
  color: #212529;
  background-color: #d3d9df;
  border-color: #cbd3da;
  box-shadow: 0 0 0 0.2rem rgba(203, 206, 209, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  color: #212529;
  background-color: #cbd3da;
  border-color: #c4ccd4;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(203, 206, 209, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.btn-secondary.focus {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #8cc63f;
  border-color: #8cc63f;
}

.btn-success:hover {
  color: #fff;
  background-color: #78ac33;
  border-color: #71a230;
}

.btn-success:focus,
.btn-success.focus {
  color: #fff;
  background-color: #78ac33;
  border-color: #71a230;
  box-shadow: 0 0 0 0.2rem rgba(124, 174, 60, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #212529;
  background-color: #8cc63f;
  border-color: #8cc63f;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show>.btn-success.dropdown-toggle {
  color: #fff;
  background-color: #71a230;
  border-color: #6a982d;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(124, 174, 60, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show>.btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show>.btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #eb2227;
  border-color: #eb2227;
}

.btn-danger:hover {
  color: #fff;
  background-color: #d41318;
  border-color: #c81217;
}

.btn-danger:focus,
.btn-danger.focus {
  color: #fff;
  background-color: #d41318;
  border-color: #c81217;
  box-shadow: 0 0 0 0.2rem rgba(238, 67, 71, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #eb2227;
  border-color: #eb2227;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show>.btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #c81217;
  border-color: #bc1115;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 67, 71, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus,
.btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show>.btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #e9ecef;
  border-color: #e9ecef;
}

.btn-outline-primary:hover {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #e9ecef;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show>.btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #e9ecef;
  border-color: #e9ecef;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show>.btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #8cc63f;
  border-color: #8cc63f;
}

.btn-outline-success:hover {
  color: #212529;
  background-color: #8cc63f;
  border-color: #8cc63f;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #8cc63f;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show>.btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #8cc63f;
  border-color: #8cc63f;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(140, 198, 63, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show>.btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show>.btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #eb2227;
  border-color: #eb2227;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #eb2227;
  border-color: #eb2227;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(235, 34, 39, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #eb2227;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show>.btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #eb2227;
  border-color: #eb2227;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(235, 34, 39, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show>.btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show>.btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #e9ecef;
  text-decoration: none;
}

.btn-link:hover {
  color: #25a9e0;
  text-decoration: none;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block+.btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control,
.input-group>.form-control-plaintext,
.input-group>.custom-select,
.input-group>.custom-file {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group>.form-control+.form-control,
.input-group>.form-control+.custom-select,
.input-group>.form-control+.custom-file,
.input-group>.form-control-plaintext+.form-control,
.input-group>.form-control-plaintext+.custom-select,
.input-group>.form-control-plaintext+.custom-file,
.input-group>.custom-select+.form-control,
.input-group>.custom-select+.custom-select,
.input-group>.custom-select+.custom-file,
.input-group>.custom-file+.form-control,
.input-group>.custom-file+.custom-select,
.input-group>.custom-file+.custom-file {
  margin-left: -1px;
}

.input-group>.form-control:focus,
.input-group>.custom-select:focus,
.input-group>.custom-file .custom-file-input:focus~.custom-file-label {
  z-index: 3;
}

.input-group>.custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group>.form-control:not(:last-child),
.input-group>.custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.form-control:not(:first-child),
.input-group>.custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group>.custom-file {
  display: flex;
  align-items: center;
}

.input-group>.custom-file:not(:last-child) .custom-file-label,
.input-group>.custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}

.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}

.input-group-prepend .btn+.btn,
.input-group-prepend .btn+.input-group-text,
.input-group-prepend .input-group-text+.input-group-text,
.input-group-prepend .input-group-text+.btn,
.input-group-append .btn+.btn,
.input-group-append .btn+.input-group-text,
.input-group-append .input-group-text+.input-group-text,
.input-group-append .input-group-text+.btn {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg>.form-control:not(textarea),
.input-group-lg>.custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg>.form-control,
.input-group-lg>.custom-select,
.input-group-lg>.input-group-prepend>.input-group-text,
.input-group-lg>.input-group-append>.input-group-text,
.input-group-lg>.input-group-prepend>.btn,
.input-group-lg>.input-group-append>.btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm>.form-control:not(textarea),
.input-group-sm>.custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm>.form-control,
.input-group-sm>.custom-select,
.input-group-sm>.input-group-prepend>.input-group-text,
.input-group-sm>.input-group-append>.input-group-text,
.input-group-sm>.input-group-prepend>.btn,
.input-group-sm>.input-group-append>.btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg>.custom-select,
.input-group-sm>.custom-select {
  padding-right: 1.75rem;
}

.input-group>.input-group-prepend>.btn,
.input-group>.input-group-prepend>.input-group-text,
.input-group>.input-group-append:not(:last-child)>.btn,
.input-group>.input-group-append:not(:last-child)>.input-group-text,
.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),
.input-group>.input-group-append:last-child>.input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.input-group-append>.btn,
.input-group>.input-group-append>.input-group-text,
.input-group>.input-group-prepend:not(:first-child)>.btn,
.input-group>.input-group-prepend:not(:first-child)>.input-group-text,
.input-group>.input-group-prepend:first-child>.btn:not(:first-child),
.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}

.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: #e9ecef;
  background-color: #e9ecef;
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
  border-color: #949baf;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
  color: #fff;
  background-color: white;
  border-color: white;
}

.custom-control-input[disabled]~.custom-control-label,
.custom-control-input:disabled~.custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled]~.custom-control-label::before,
.custom-control-input:disabled~.custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50% / 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 5px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before {
  border-color: #e9ecef;
  background-color: #e9ecef;
}

.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(233, 236, 239, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before {
  background-color: rgba(233, 236, 239, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(233, 236, 239, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.custom-switch .custom-control-input:checked~.custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before {
  background-color: rgba(233, 236, 239, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #ced4da;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-select:focus {
  border-color: #949baf;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus~.custom-file-label {
  border-color: #949baf;
  box-shadow: 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.custom-file-input[disabled]~.custom-file-label,
.custom-file-input:disabled~.custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en)~.custom-file-label::after {
  content: "Browse";
}

.custom-file-input~.custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 5px;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 5px 5px 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(233, 236, 239, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #e9ecef;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: white;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #e9ecef;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: white;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #e9ecef;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: white;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {

  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}

/** Base Styles **/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
dialog,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input,
select {
  vertical-align: middle;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
}

[hidden] {
  display: none;
}

img {
  max-width: 100%;
}

/** Base Typography **/
a {
  color: #131a25;
  text-decoration: none;
}

a,
a:link,
a:hover,
input[type="submit"],
input[type="submit"]:hover,
.transition,
.transition:hover {
  transition: all 0.3s ease !important;
  webkit-transition: all 0.3s ease;
}

.cf {
  *zoom: 1;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.vct,
.vctr,
.vctd {
  display: table;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

.vct,
.vctr,
.vctd {
  display: table;
  height: 100%;
  width: 100%;
  vertical-align: middle;
}

.vctr {
  display: table-row;
}

.vctd {
  display: table-cell;
}

.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}

.col-height {
  display: table-cell;
  float: none;
  height: 100%;
}

.col-top {
  vertical-align: top;
}

.col-middle {
  vertical-align: middle;
}

.col-bottom {
  vertical-align: bottom;
}

.eq-height {
  display: flex;
  width: 100%;
}

.eq-height>* {
  flex: 1;
}

.eq-height>* .thing-inside {
  height: 100%;
}

.h100 {
  height: 100%;
}

.rel {
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.panel-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.panel-link span.center {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1.2em;
  margin-top: -0.6em;
}

.inline-b {
  display: inline-block;
}

.inline-b.with-spacing {
  padding-left: 16px;
  padding-right: 16px;
}

.inline-b.with-spacing:first-child {
  padding-left: 0;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  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 {
  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;
}

.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: relative;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  display: inline-block;
  margin: 20px auto 0;
}

.slick-dots::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 17px;
  height: 1px;
  background: #CED2DC;
  left: 32px;
  right: 32px;
}

.slick-dots::before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: 100%;
  width: 100%;
}

.slick-dots li {
  position: relative;
  z-index: 2;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 32px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 2px;
  border: 1px solid #CED2DC;
  border-radius: 50%;
  cursor: pointer;
  background: #eff0f8;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  content: '';
  width: 14px;
  height: 14px;
  margin: 3px;
  border-radius: 50%;
  background: #ff1d4d;
  line-height: 20px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
}

/* Sort */
.inactive {
  display: none;
}

.active {
  display: block;
}

/*
img.inject-svg {
    visibility: hidden;
}
*/
*:focus {
  outline: 0;
}

.buyer__heading,
.buyer__subheading,
.buyer__input,
.buyer__submit,
.buyer__instructions {
  display: none;
}

.flex-break {
  flex-basis: 100%;
  height: 0;
}

input[type=text],
input[type=password],
textarea {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus {
  border: 1px solid #949baf;
}

/* BEGIN Light */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Light/OpenSans-Light.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Light/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Light/OpenSans-Light.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Light/OpenSans-Light.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Light/OpenSans-Light.svg#OpenSansLight") format("svg");
  font-weight: 300;
  font-style: normal;
}

/* END Light */
/* BEGIN Light Italic */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/LightItalic/OpenSans-LightItalic.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/LightItalic/OpenSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/LightItalic/OpenSans-LightItalic.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/LightItalic/OpenSans-LightItalic.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/LightItalic/OpenSans-LightItalic.svg#OpenSansLightItalic") format("svg");
  font-weight: 300;
  font-style: italic;
}

/* END Light Italic */
/* BEGIN Regular */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Regular/OpenSans-Regular.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Regular/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Regular/OpenSans-Regular.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Regular/OpenSans-Regular.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Regular/OpenSans-Regular.svg#OpenSansRegular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* END Regular */
/* BEGIN Italic */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Italic/OpenSans-Italic.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Italic/OpenSans-Italic.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Italic/OpenSans-Italic.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Italic/OpenSans-Italic.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Italic/OpenSans-Italic.svg#OpenSansItalic") format("svg");
  font-weight: normal;
  font-style: italic;
}

/* END Italic */
/* BEGIN Semibold */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Semibold/OpenSans-Semibold.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Semibold/OpenSans-Semibold.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Semibold/OpenSans-Semibold.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Semibold/OpenSans-Semibold.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Semibold/OpenSans-Semibold.svg#OpenSansSemibold") format("svg");
  font-weight: 600;
  font-style: normal;
}

/* END Semibold */
/* BEGIN Semibold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/SemiboldItalic/OpenSans-SemiboldItalic.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/SemiboldItalic/OpenSans-SemiboldItalic.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/SemiboldItalic/OpenSans-SemiboldItalic.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/SemiboldItalic/OpenSans-SemiboldItalic.svg#OpenSansSemiboldItalic") format("svg");
  font-weight: 600;
  font-style: italic;
}

/* END Semibold Italic */
/* BEGIN Bold */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Bold/OpenSans-Bold.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Bold/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Bold/OpenSans-Bold.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Bold/OpenSans-Bold.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/Bold/OpenSans-Bold.svg#OpenSansBold") format("svg");
  font-weight: bold;
  font-style: normal;
}

/* END Bold */
/* BEGIN Bold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/BoldItalic/OpenSans-BoldItalic.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/BoldItalic/OpenSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/BoldItalic/OpenSans-BoldItalic.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/BoldItalic/OpenSans-BoldItalic.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/BoldItalic/OpenSans-BoldItalic.svg#OpenSansBoldItalic") format("svg");
  font-weight: bold;
  font-style: italic;
}

/* END Bold Italic */
/* BEGIN Extrabold */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBold/OpenSans-ExtraBold.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBold/OpenSans-ExtraBold.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBold/OpenSans-ExtraBold.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBold/OpenSans-ExtraBold.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBold/OpenSans-ExtraBold.svg#OpenSansExtrabold") format("svg");
  font-weight: 800;
  font-style: normal;
}

/* END Extrabold */
/* BEGIN Extrabold Italic */
@font-face {
  font-family: 'Open Sans';
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot");
  src: url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.eot?#iefix") format("embedded-opentype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.woff") format("woff"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.ttf") format("truetype"), url("https://files.edx.org/fonts/edx-fonts/open-sans/fonts/ExtraBoldItalic/OpenSans-ExtraBoldItalic.svg#OpenSansExtraboldItalic") format("svg");
  font-weight: 800;
  font-style: italic;
}

/* END Extrabold Italic */
@font-face {
  font-family: 'Open Sans Condensed';
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/opensans-condlight.eot");
  src: url("../fonts/opensans-condlight.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-condlight.woff") format("woff"), url("../fonts/opensans-condlight.ttf") format("truetype"), url("../fonts/opensans-condlight.svg#OpenSansCondensedLight") format("svg");
}

@font-face {
  font-family: 'Open Sans Condensed';
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/opensans-condlightitalic.eot");
  src: url("../fonts/opensans-condlightitalic.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-condlightitalic.woff") format("woff"), url("../fonts/opensans-condlightitalic.ttf") format("truetype"), url("../fonts/opensans-condlightitalic.svg#OpenSansCondensedLightItalic") format("svg");
}

@font-face {
  font-family: 'Open Sans Condensed';
  font-weight: bold;
  font-style: normal;
  src: url("../fonts/opensans-condbold.eot");
  src: url("../fonts/opensans-condbold.eot?#iefix") format("embedded-opentype"), url("../fonts/opensans-condbold.woff") format("woff"), url("../fonts/opensans-condbold.ttf") format("truetype"), url("../fonts/opensans-condbold.svg#OpenSansCondensedBold") format("svg");
}

h1,
h2,
h3,
h4 {
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-weight: normal;
  line-height: 1.2em;
}

h1 {
  font-size: 33px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 19px;
}

h4 {
  font-size: 12px;
}

.flip-horizontal {
  transform: rotateY(180deg);
}

label.bold,
a.bold,
li.bold,
p.bold {
  text-transform: uppercase;
}

label.small,
a.small,
li.small,
p.small {
  font-size: 14px;
}

label.meta,
a.meta,
li.meta,
p.meta {
  color: #949BAF;
}

label.light,
a.light,
li.light,
p.light {
  font-weight: 400;
}

label.medium,
a.medium,
li.medium,
p.medium {
  font-weight: 600;
}

label.semibold,
a.semibold,
li.semibold,
p.semibold {
  font-weight: 700;
}

label.heavy,
a.heavy,
li.heavy,
p.heavy {
  font-weight: 800;
}

label.gray,
a.gray,
li.gray,
p.gray {
  color: #4F536C;
}

.navigation label.small {
  font-size: 14px;
}

a.important,
li.important,
p.important {
  font-style: italic;
}

.important a,
.important li,
.important p {
  font-style: italic;
}

.right {
  text-align: right;
}

h1.uppercase,
h2.uppercase,
h3.uppercase,
h4.uppercase,
h5.uppercase,
h6.uppercase {
  text-transform: uppercase;
}

h1.semibold,
h2.semibold,
h3.semibold,
h4.semibold,
h5.semibold,
h6.semibold {
  font-weight: 700;
}

h1.heavy,
h2.heavy,
h3.heavy,
h4.heavy,
h5.heavy,
h6.heavy {
  font-weight: 800;
}

/** Layouts **/
.constrained {
  max-width: 1680px;
  margin: 0 auto;
  max-width: unset !important;
}

main .content {
  transition: width 200ms linear;
  -webkit-transition: width 200ms linear;
}

main .content:last-child {
  padding-bottom: 0;
}

main .content.single-listing {
  padding: 40px 0;
}

.post-title {
  width: 100%;
  border-bottom: 4px solid #8cc63f;
}

.post-title h3 {
  margin-bottom: 0;
}

.post-title h3:first-child {
  margin-bottom: 4px;
}

.post-title p {
  line-height: 1;
  margin: 0;
}

.post-content {
  padding-bottom: 60px;
}

.post-actions {
  margin: 16px 0;
}

.post-actions a {
  color: #4f536c;
  font-size: 14px;
}

.post-actions a .icon {
  position: relative;
  top: -4px;
  margin-right: 4px;
  color: #949BAF;
}

.post-actions a .alert {
  position: relative;
  top: -2px;
}

.post-actions a:hover {
  text-decoration: none;
  color: #eb2227;
}

.page-header {
  position: relative;
  border-bottom: 1px solid #CED2DC;
}

.page-header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 180px;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .page-header__wrap {
    height: auto;
  }
}

@media (max-width: 767.98px) {
  .page-header__wrap {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 20px 0;
  }
}

.page-header__right-col {
  display: flex;
  justify-content: center;
  min-width: 300px;
  max-width: 400px;
  flex: 0 0 20%;
  min-width: auto;
  width: auto;
}

@media (max-width: 1199.98px) {
  .page-header__right-col {
    padding-right: 40px;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .page-header__right-col {
    flex: 0 0 20%;
    max-width: 20% !important;
    min-width: auto;
    width: auto;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .page-header__right-col {
    flex: 0 0 22%;
    max-width: 22% !important;
    min-width: auto;
    width: auto;
  }
}

.page-header__left-col {
  display: flex;
  justify-content: flex-start;
  min-width: 300px;
  max-width: 400px;
  flex: 0 0 20%;
  min-width: auto;
  width: auto;
}

@media (max-width: 1199.98px) {
  .page-header__left-col {
    padding-left: 40px;
  }
}

.page-header__left-col h2 {
  justify-content: flex-start !important;
  margin: 0 auto !important;
  min-width: 220px;
  max-width: 400px;
  width: 220px !important;
  padding: 80px 0 80px 0 !important;
  white-space: nowrap;
  overflow: visible;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .page-header__left-col h2 {
    padding: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .page-header__left-col h2 {
    min-width: 100%;
    max-width: 100%;
    width: auto !important;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .page-header__left-col h2 {
    flex: 22% 0 0;
    max-width: 22% !important;
    min-width: 220px;
    width: auto;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .page-header__left-col h2 {
    flex: 20% 0 0;
    max-width: 20% !important;
    min-width: 220px;
    width: auto;
  }
}

@media only screen and (max-width: 1439px) and (min-width: 1200px) {
  .page-header__left-col {
    flex: 22% 0 0;
    max-width: 22% !important;
    min-width: auto;
    width: auto;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .page-header__left-col {
    flex: 20% 0 0;
    max-width: 20% !important;
    min-width: auto;
    width: auto;
  }
}

.page-header .dropdowan-caret::after {
  cursor: pointer;
  content: "\f107";
  font-size: 18px;
  font-family: "FontAwesome";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: 20px;
  color: #131a25;
  border: 1px solid #ced2dc;
  border-radius: 5px;
}

.page-header h2 {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 25px;
  position: relative;
}

@media (max-width: 767.98px) {
  .page-header h2 {
    font-size: 20px;
  }
}

.page-header h2 .icon {
  position: relative;
  font-size: 40px;
  top: 0px;
  margin-right: 20px;
}

@media (max-width: 767.98px) {
  .page-header h2 .icon {
    font-size: 30px;
    margin-right: 10px;
  }
}

.page-header .page-controls a.button.ghost.gray {
  background: transparent;
  min-width: 220px !important;
  max-width: 220px;
  text-align: center;
  margin-right: 0px;
  font-size: 18px;
  font-weight: 600;
}

.page-header .dropdown-list {
  width: 230px;
  left: 165px;
  top: 120px;
  z-index: 99;
}

.page-header .dropdown-list .triangle-up.active {
  border-color: transparent transparent #ced2dc #ced2dc !important;
  transition: all 0.3s ease-in-out;
}

.page-header .dropdown-list li:hover {
  background-color: #ced2dc;
  transition: all 0.3s ease-in-out;
}

.page-header--new-want.page-header .dropdown-list {
  left: 81px;
}

.page-content .left-col {
  border-right: 1px solid #ced2dc;
  padding: 0 0px 80px 0px;
  margin: 0 auto;
  min-width: 300px;
  max-width: 400px !important;
  width: 220px;
}

@media (max-width: 767.98px) {
  .page-content .left-col {
    max-width: 100% !important;
    min-width: 100%;
    padding-bottom: 40px;
  }
}

.page-content .left-col .col-content,
.page-content .left-col .middle-col .col-content--large,
.page-content .middle-col .left-col .col-content--large {
  margin: 0 auto;
  min-width: 220px;
  max-width: 400px;
  width: 220px !important;
  padding: 80px 0 0 0 !important;
  overflow: visible;
  position: sticky;
  top: 0px;
}

@media (max-width: 767.98px) {

  .page-content .left-col .col-content,
  .page-content .left-col .middle-col .col-content--large,
  .page-content .middle-col .left-col .col-content--large {
    width: 100% !important;
    position: initial !important;
    padding: 40px 0 0 0 !important;
  }

  .page-content .left-col .col-content form .acf-fields,
  .page-content .left-col .middle-col .col-content--large form .acf-fields,
  .page-content .middle-col .left-col .col-content--large form .acf-fields {
    margin-bottom: 30px;
  }

  .page-content .left-col .col-content form .acf-fields .acf-field,
  .page-content .left-col .middle-col .col-content--large form .acf-fields .acf-field,
  .page-content .middle-col .left-col .col-content--large form .acf-fields .acf-field {
    position: relative;
    margin-bottom: 0;
  }

  .page-content .left-col .col-content form .acf-fields .acf-field[data-type="message"],
  .page-content .left-col .middle-col .col-content--large form .acf-fields .acf-field[data-type="message"],
  .page-content .middle-col .left-col .col-content--large form .acf-fields .acf-field[data-type="message"] {
    margin-top: 30px;
  }

  .page-content .left-col .col-content form .acf-fields .acf-field[data-type="message"] .acf-label,
  .page-content .left-col .middle-col .col-content--large form .acf-fields .acf-field[data-type="message"] .acf-label,
  .page-content .middle-col .left-col .col-content--large form .acf-fields .acf-field[data-type="message"] .acf-label {
    margin-bottom: 20px;
  }

  .page-content .left-col .col-content form .acf-fields .acf-field.toggle-buttons label,
  .page-content .left-col .middle-col .col-content--large form .acf-fields .acf-field.toggle-buttons label,
  .page-content .middle-col .left-col .col-content--large form .acf-fields .acf-field.toggle-buttons label {
    font-size: 14px;
    line-height: 17px;
  }

  .page-content .left-col .col-content .select-clear p,
  .page-content .left-col .middle-col .col-content--large .select-clear p,
  .page-content .middle-col .left-col .col-content--large .select-clear p {
    font-size: 14px;
    margin-right: 16px;
  }
}

.page-content .middle-col {
  border-right: 1px solid #CED2DC;
  max-width: unset;
  flex-grow: 1;
  padding: 0px;
}

.page-content .middle-col.no-break {
  border-right: none;
}

@media (max-width: 767.98px) {
  .page-content .middle-col.property-second {
    padding: 40px 16px 0 !important;
  }

  .page-content .middle-col.property-second .col-content,
  .page-content .middle-col.property-second .col-content--large {
    margin: 0;
  }

  .page-content .middle-col.middle-col-edit {
    padding: 0 !important;
    border: 0;
  }

  .page-content .middle-col.account-details>div {
    padding: 0;
    margin: 0;
    max-width: 100%;
  }

  .page-content .middle-col.account-details>div .scoreBoard .a-details .b-600 {
    font-size: 14px;
  }

  .page-content .middle-col.payment-method .scoreBoard.add-pay-method form>.row:first-child {
    margin-bottom: 20px !important;
  }

  .page-content .middle-col.payment-method .scoreBoard.add-pay-method form>.row:nth-child(2) .col-md-3:first-child {
    margin-bottom: 20px !important;
  }

  .page-content .middle-col.payment-method .scoreBoard.add-pay-method form .col-md-4 {
    max-width: 60%;
    margin-bottom: 20px;
  }

  .page-content .middle-col.payment-method .scoreBoard.add-pay-method form .col-md-2 {
    max-width: 40%;
    text-align: left;
  }

  .page-content .middle-col.payment-method .scoreBoard.add-pay-method form .btn.btn-success {
    width: 100% !important;
    margin-top: 40px;
    font-size: 16px !important;
  }

  .page-content .middle-col.payment-method .scoreBoard .a-details.pos-rel {
    padding: 20px 15px;
  }

  .page-content .middle-col.payment-method .scoreBoard .a-details.pos-rel .col-md-6,
  .page-content .middle-col.payment-method .scoreBoard .a-details.pos-rel .col-md-5 {
    width: 45% !important;
  }

  .page-content .middle-col.payment-method .scoreBoard .a-details.pos-rel .col-md-1 {
    width: 10%;
    margin: 0 !important;
    padding: 0;
  }

  .page-content .middle-col.payment-method .scoreBoard .a-details.pos-rel .exp-date.a-details__header {
    font-size: 14px;
  }
}

.page-content .middle-col .col-content,
.page-content .middle-col .col-content--large {
  margin: 80px 8%;
  padding: 0px;
  max-width: 700px;
}

.page-content .middle-col .col-content--large {
  max-width: 100%;
}

@media (max-width: 767.98px) {

  .page-content .middle-col .col-content,
  .page-content .middle-col .col-content--large {
    margin: 40px 0;
    padding: 0px;
  }

  .page-content .middle-col .col-content form .acf-field-message,
  .page-content .middle-col .col-content--large form .acf-field-message {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }

  .page-content .middle-col .col-content form .acf-field-message:before,
  .page-content .middle-col .col-content--large form .acf-field-message:before,
  .page-content .middle-col .col-content form .acf-field-message:after,
  .page-content .middle-col .col-content--large form .acf-field-message:after {
    top: auto !important;
    font-size: 12px !important;
  }

  .page-content .middle-col .col-content form .acf-field-message .acf-label,
  .page-content .middle-col .col-content--large form .acf-field-message .acf-label {
    margin-bottom: 0;
  }

  .page-content .middle-col .col-content form .fixed-width,
  .page-content .middle-col .col-content--large form .fixed-width {
    align-items: center;
    justify-content: space-between;
  }

  .page-content .middle-col .col-content form .fixed-width .acf-label,
  .page-content .middle-col .col-content--large form .fixed-width .acf-label {
    margin: 0;
    font-size: 14px !important;
  }

  .page-content .middle-col .col-content form .fixed-width .acf-input,
  .page-content .middle-col .col-content--large form .fixed-width .acf-input {
    width: 56% !important;
  }

  .page-content .middle-col .col-content form .fixed-width.amount_only .acf-input,
  .page-content .middle-col .col-content--large form .fixed-width.amount_only .acf-input,
  .page-content .middle-col .col-content form .fixed-width.only_number .acf-input,
  .page-content .middle-col .col-content--large form .fixed-width.only_number .acf-input {
    justify-content: space-between;
    display: flex;
    align-items: center;
  }

  .page-content .middle-col .col-content form .fixed-width.amount_only .acf-input span,
  .page-content .middle-col .col-content--large form .fixed-width.amount_only .acf-input span,
  .page-content .middle-col .col-content form .fixed-width.only_number .acf-input span,
  .page-content .middle-col .col-content--large form .fixed-width.only_number .acf-input span {
    top: 0;
    font-size: 12px !important;
  }

  .page-content .middle-col .col-content form .fixed-width.amount_only .acf-input input,
  .page-content .middle-col .col-content--large form .fixed-width.amount_only .acf-input input,
  .page-content .middle-col .col-content form .fixed-width.only_number .acf-input input,
  .page-content .middle-col .col-content--large form .fixed-width.only_number .acf-input input {
    width: 42% !important;
  }

  .page-content .middle-col .col-content form .fixed-width#list-price-changed input,
  .page-content .middle-col .col-content--large form .fixed-width#list-price-changed input,
  .page-content .middle-col .col-content form .fixed-width#price-sqr input,
  .page-content .middle-col .col-content--large form .fixed-width#price-sqr input {
    width: 100% !important;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="reviews_count"] .acf-input,
  .page-content .middle-col .col-content--large form .acf-field[data-name="reviews_count"] .acf-input,
  .page-content .middle-col .col-content form .acf-field[data-name="reviews_page_link"] .acf-input,
  .page-content .middle-col .col-content--large form .acf-field[data-name="reviews_page_link"] .acf-input {
    width: 56% !important;
  }

  .page-content .middle-col .col-content form .acf-field.amount_only.fixed-width[data-name="price"] input,
  .page-content .middle-col .col-content--large form .acf-field.amount_only.fixed-width[data-name="price"] input,
  .page-content .middle-col .col-content form .acf-field.fixed-width[data-name="building_area_sq_ft"] input,
  .page-content .middle-col .col-content--large form .acf-field.fixed-width[data-name="building_area_sq_ft"] input,
  .page-content .middle-col .col-content form .acf-field.fixed-width[data-name="beds"] input,
  .page-content .middle-col .col-content--large form .acf-field.fixed-width[data-name="beds"] input,
  .page-content .middle-col .col-content form .acf-field.fixed-width[data-name="baths"] input,
  .page-content .middle-col .col-content--large form .acf-field.fixed-width[data-name="baths"] input {
    width: 100% !important;
  }

  .page-content .middle-col .col-content form #zip li,
  .page-content .middle-col .col-content--large form #zip li {
    width: 100%;
  }

  .page-content .middle-col .col-content form .city-area,
  .page-content .middle-col .col-content--large form .city-area,
  .page-content .middle-col .col-content form .country,
  .page-content .middle-col .col-content--large form .country,
  .page-content .middle-col .col-content form #horse-property,
  .page-content .middle-col .col-content--large form #horse-property,
  .page-content .middle-col .col-content form #year-built,
  .page-content .middle-col .col-content--large form #year-built,
  .page-content .middle-col .col-content form #parking-space,
  .page-content .middle-col .col-content--large form #parking-space,
  .page-content .middle-col .col-content form #building-story,
  .page-content .middle-col .col-content--large form #building-story,
  .page-content .middle-col .col-content form #furnished,
  .page-content .middle-col .col-content--large form #furnished,
  .page-content .middle-col .col-content form #attached,
  .page-content .middle-col .col-content--large form #attached,
  .page-content .middle-col .col-content form #maidss,
  .page-content .middle-col .col-content--large form #maidss {
    align-items: center;
    justify-content: space-between;
  }

  .page-content .middle-col .col-content form .city-area .acf-label,
  .page-content .middle-col .col-content--large form .city-area .acf-label,
  .page-content .middle-col .col-content form .country .acf-label,
  .page-content .middle-col .col-content--large form .country .acf-label,
  .page-content .middle-col .col-content form #horse-property .acf-label,
  .page-content .middle-col .col-content--large form #horse-property .acf-label,
  .page-content .middle-col .col-content form #year-built .acf-label,
  .page-content .middle-col .col-content--large form #year-built .acf-label,
  .page-content .middle-col .col-content form #parking-space .acf-label,
  .page-content .middle-col .col-content--large form #parking-space .acf-label,
  .page-content .middle-col .col-content form #building-story .acf-label,
  .page-content .middle-col .col-content--large form #building-story .acf-label,
  .page-content .middle-col .col-content form #furnished .acf-label,
  .page-content .middle-col .col-content--large form #furnished .acf-label,
  .page-content .middle-col .col-content form #attached .acf-label,
  .page-content .middle-col .col-content--large form #attached .acf-label,
  .page-content .middle-col .col-content form #maidss .acf-label,
  .page-content .middle-col .col-content--large form #maidss .acf-label {
    margin-bottom: 0;
    width: 40% !important;
  }

  .page-content .middle-col .col-content form .city-area .acf-input,
  .page-content .middle-col .col-content--large form .city-area .acf-input,
  .page-content .middle-col .col-content form .country .acf-input,
  .page-content .middle-col .col-content--large form .country .acf-input,
  .page-content .middle-col .col-content form #horse-property .acf-input,
  .page-content .middle-col .col-content--large form #horse-property .acf-input,
  .page-content .middle-col .col-content form #year-built .acf-input,
  .page-content .middle-col .col-content--large form #year-built .acf-input,
  .page-content .middle-col .col-content form #parking-space .acf-input,
  .page-content .middle-col .col-content--large form #parking-space .acf-input,
  .page-content .middle-col .col-content form #building-story .acf-input,
  .page-content .middle-col .col-content--large form #building-story .acf-input,
  .page-content .middle-col .col-content form #furnished .acf-input,
  .page-content .middle-col .col-content--large form #furnished .acf-input,
  .page-content .middle-col .col-content form #attached .acf-input,
  .page-content .middle-col .col-content--large form #attached .acf-input,
  .page-content .middle-col .col-content form #maidss .acf-input,
  .page-content .middle-col .col-content--large form #maidss .acf-input {
    width: 56% !important;
    min-width: 56%;
  }

  .page-content .middle-col .col-content form .acf-field-button-group label,
  .page-content .middle-col .col-content--large form .acf-field-button-group label {
    font-size: 14px !important;
  }

  .page-content .middle-col .col-content form #streetName .ui-autocomplete-input,
  .page-content .middle-col .col-content--large form #streetName .ui-autocomplete-input {
    width: 100%;
  }

  .page-content .middle-col .col-content form .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
  .page-content .middle-col .col-content--large form .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    bottom: 0;
  }

  .page-content .middle-col .col-content form #aditional-infor .acf-label label,
  .page-content .middle-col .col-content--large form #aditional-infor .acf-label label {
    font-size: 16px !important;
  }

  .page-content .middle-col .col-content form #aditional-infor .acf-input label,
  .page-content .middle-col .col-content--large form #aditional-infor .acf-input label {
    font-size: 11px;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"],
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] {
    border-color: #eff0f8;
    border-radius: 5px;
    padding: 20px;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields {
    flex-direction: column;
    align-items: baseline;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso .acf-label label,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso .acf-label label {
    font-size: 16px !important;
    margin-bottom: 10px;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso .acf-input .acf-input-wrap,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso .acf-input .acf-input-wrap {
    overflow: visible;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso .acf-input input,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso .acf-input input {
    width: 100%;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso-radio-btn ul,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso-radio-btn ul {
    padding: 0;
    margin-top: 20px;
  }

  .page-content .middle-col .col-content form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso-radio-btn ul li,
  .page-content .middle-col .col-content--large form .acf-field[data-name="cso_group"] .acf-input .acf-fields #cso-radio-btn ul li {
    width: auto;
    margin-right: 30px;
  }

  .page-content .middle-col .col-content form#update_account,
  .page-content .middle-col .col-content--large form#update_account {
    padding-bottom: 0;
  }

  .page-content .middle-col .col-content .profileImage-heading,
  .page-content .middle-col .col-content--large .profileImage-heading {
    font-size: 16px;
  }

  .page-content .middle-col .col-content .wrapIt p,
  .page-content .middle-col .col-content--large .wrapIt p {
    font-size: 12px;
  }

  .page-content .middle-col .col-content .wrapIt p i,
  .page-content .middle-col .col-content--large .wrapIt p i {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .page-content .middle-col.saved-search .col-10 {
    margin: 0;
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 767.98px) {
  .page-content .middle-col.property-second {
    border: 0;
    padding: 0 16px;
  }

  .page-content .middle-col.property-second .scoreBoard {
    margin-bottom: 0;
  }

  .page-content .middle-col.property-second .a-details {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-content .middle-col.property-second .a-details .col-md-6:first-child {
    width: 70%;
    padding-left: 0;
  }

  .page-content .middle-col.property-second .a-details .col-md-6:last-child {
    width: 30%;
    padding-left: 20px;
    padding-right: 0;
  }

  .page-content .middle-col.property-second .a-details .col-md-6 p {
    font-size: 14px;
  }

  .page-content .middle-col.property-second .notification-style>div {
    margin: 0;
    padding: 0;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .page-content .middle-col.property-second .notification-style .mainContent form {
    margin-top: 5px !important;
  }

  .page-content .middle-col.property-second .notification-style .userEmails li {
    padding: 10px 0;
  }

  .page-content .middle-col.property-second .notification-style .userEmails li span {
    padding-right: 10px;
  }
}

.page-content .right-col {
  min-width: 300px;
  max-width: 400px;
  padding: 0 0 80px 0;
}

@media (max-width: 767.98px) {
  .page-content .right-col {
    width: 100%;
    max-width: 100%;
    padding: 0 0 40px 0;
  }
}

.page-content .right-col .col-content,
.page-content .right-col .middle-col .col-content--large,
.page-content .middle-col .right-col .col-content--large {
  margin: 0 auto;
  min-width: 220px !important;
  max-width: 400px !important;
  width: 220px !important;
  padding: 80px 0 80px 0 !important;
  overflow: visible;
  position: sticky;
  top: 0px;
}

@media (max-width: 767.98px) {

  .page-content .right-col .col-content,
  .page-content .right-col .middle-col .col-content--large,
  .page-content .middle-col .right-col .col-content--large {
    width: 100% !important;
  }

  .page-content .right-col .col-content .edit-up h3,
  .page-content .right-col .middle-col .col-content--large .edit-up h3,
  .page-content .middle-col .right-col .col-content--large .edit-up h3,
  .page-content .right-col .col-content .edit-up p,
  .page-content .right-col .middle-col .col-content--large .edit-up p,
  .page-content .middle-col .right-col .col-content--large .edit-up p {
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .page-content .right-col.property-third {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 16px;
    margin-top: 30px;
  }

  .page-content .right-col.property-third .col-content,
  .page-content .right-col.property-third .middle-col .col-content--large,
  .page-content .middle-col .right-col.property-third .col-content--large {
    padding-top: 0 !important;
  }

  .page-content .right-col.property-third .col-content button,
  .page-content .right-col.property-third .middle-col .col-content--large button,
  .page-content .middle-col .right-col.property-third .col-content--large button {
    font-size: 16px;
  }

  .page-content .right-col.property-third .col-content .member-right__change,
  .page-content .right-col.property-third .middle-col .col-content--large .member-right__change,
  .page-content .middle-col .right-col.property-third .col-content--large .member-right__change {
    text-align: center;
  }

  .page-content .right-col.property-third .col-content .member-right__change a,
  .page-content .right-col.property-third .middle-col .col-content--large .member-right__change a,
  .page-content .middle-col .right-col.property-third .col-content--large .member-right__change a {
    font-size: 16px;
    display: block;
  }

  .page-content .right-col.property-third .col-content form#create_search .select2-selection__rendered,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_search .select2-selection__rendered,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_search .select2-selection__rendered,
  .page-content .right-col.property-third .col-content form#create_want_search .select2-selection__rendered,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_want_search .select2-selection__rendered,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_want_search .select2-selection__rendered {
    padding-left: 0 !important;
  }

  .page-content .right-col.property-third .col-content form#create_search .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_search .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_search .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
  .page-content .right-col.property-third .col-content form#create_want_search .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_want_search .select2-container--default .select2-selection--single .select2-selection__arrow b:before,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_want_search .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    bottom: 0;
  }

  .page-content .right-col.property-third .col-content form#create_search .acf-form-submit .counted,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_search .acf-form-submit .counted,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_search .acf-form-submit .counted,
  .page-content .right-col.property-third .col-content form#create_want_search .acf-form-submit .counted,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_want_search .acf-form-submit .counted,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_want_search .acf-form-submit .counted {
    margin-top: 30px;
  }

  .page-content .right-col.property-third .col-content form#create_search .acf-form-submit .counted .property-found,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_search .acf-form-submit .counted .property-found,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_search .acf-form-submit .counted .property-found,
  .page-content .right-col.property-third .col-content form#create_want_search .acf-form-submit .counted .property-found,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_want_search .acf-form-submit .counted .property-found,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_want_search .acf-form-submit .counted .property-found {
    font-size: 16px !important;
  }

  .page-content .right-col.property-third .col-content form#create_search .acf-form-submit .counted #view_listing_btn,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_search .acf-form-submit .counted #view_listing_btn,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_search .acf-form-submit .counted #view_listing_btn,
  .page-content .right-col.property-third .col-content form#create_want_search .acf-form-submit .counted #view_listing_btn,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_want_search .acf-form-submit .counted #view_listing_btn,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_want_search .acf-form-submit .counted #view_listing_btn {
    font-size: 16px !important;
    border-radius: 3px !important;
    width: 100% !important;
  }

  .page-content .right-col.property-third .col-content form#create_search .acf-form-submit .save-search-label input,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_search .acf-form-submit .save-search-label input,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_search .acf-form-submit .save-search-label input,
  .page-content .right-col.property-third .col-content form#create_want_search .acf-form-submit .save-search-label input,
  .page-content .right-col.property-third .middle-col .col-content--large form#create_want_search .acf-form-submit .save-search-label input,
  .page-content .middle-col .right-col.property-third .col-content--large form#create_want_search .acf-form-submit .save-search-label input {
    width: 100% !important;
    font-size: 16px !important;
    padding: 12px 20px 12px 50px !important;
  }
}

.full-height {
  height: calc(100vh - 88px);
}

@media screen and (max-width: 1340px) {
  main .content {
    padding: 16px;
  }
}

@media screen and (min-width: 1920px) {

  .page-content .middle-col-edit .col-content,
  .page-content .middle-col-edit .middle-col .col-content--large,
  .page-content .middle-col .middle-col-edit .col-content--large {
    margin: 80px 15%;
    max-width: 100%;
    margin: 80px 0 80px 15%;
    max-width: 700px;
  }
}

@media screen and (max-width: 991px) {
  .full-height {
    height: calc(100vh - 72px);
  }
}

@media (max-width: 767.98px) {
  .page-id-240.page-template-single-new-listing .second-listing-sec .middle-col {
    padding: 0 !important;
  }

  .secondry-addusers .right-col {
    width: 100%;
    min-width: 100%;
  }

  .secondry-addusers .right-col .col-content,
  .secondry-addusers .right-col .page-content .middle-col .col-content--large,
  .page-content .middle-col .secondry-addusers .right-col .col-content--large {
    padding: 0 !important;
  }

  .page-template-single-membership.page-id-509 .col-md-3.left-col,
  .page-template-single-membership.page-id-509 .col-3.left-col.userp,
  .page-template-single-saved-search.page-id-2284 .col-md-3.left-col,
  .page-template-single-saved-search.page-id-2284 .col-3.left-col.userp,
  .page-template-single-notifications.page-id-2573 .col-md-3.left-col,
  .page-template-single-notifications.page-id-2573 .col-3.left-col.userp,
  .page-template-single-my-reviews.page-id-85025 .col-md-3.left-col,
  .page-template-single-my-reviews.page-id-85025 .col-3.left-col.userp,
  .page-template-single-my-want.page-id-85041 .col-md-3.left-col,
  .page-template-single-my-want.page-id-85041 .col-3.left-col.userp {
    display: none !important;
    opacity: 0;
    z-index: -1;
  }

  .page-template-single-membership.page-id-509 #profile-listings .page-header__wrap,
  .page-template-single-saved-search.page-id-2284 #profile-listings .page-header__wrap,
  .page-template-single-notifications.page-id-2573 #profile-listings .page-header__wrap,
  .page-template-single-my-reviews.page-id-85025 #profile-listings .page-header__wrap,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-header__wrap {
    height: auto;
  }

  .page-template-single-my-want.page-id-85041 .col-md-9.my-listing {
    padding: 0;
  }

  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-fluid .my-listing>div .row.pt-4:nth-child(2),
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-sm .my-listing>div .row.pt-4:nth-child(2),
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-md .my-listing>div .row.pt-4:nth-child(2),
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-lg .my-listing>div .row.pt-4:nth-child(2),
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-xl .my-listing>div .row.pt-4:nth-child(2) {
    position: initial;
    padding-top: 0 !important;
  }

  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-fluid .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-sm .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-md .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-lg .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-xl .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard {
    margin-bottom: 0 !important;
  }

  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-fluid .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard span,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-sm .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard span,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-md .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard span,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-lg .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard span,
  .page-template-single-my-want.page-id-85041 #profile-listings .page-content .container-xl .my-listing>div .row.pt-4:nth-child(2) .col-md-9 .scoreBoard span {
    font-size: 9px !important;
  }

  .page-template-single-my-reviews.page-id-85025 .page-content .middle-col .col-content,
  .page-template-single-my-reviews.page-id-85025 .page-content .middle-col .col-content--large {
    padding-bottom: 0 !important;
  }

  .page-template-single-my-reviews.page-id-85025 .col-6.middle-col.center-div {
    border-right: 0;
  }

  .page-template-single-my-reviews.page-id-85025 .profile-rating__block .profile-rating__collapse input {
    width: 45%;
  }

  .page-template-single-my-reviews.page-id-85025 .profile-rating__block .profile-rating__field input {
    flex: 0 0 55%;
    max-width: 55%;
  }

  .page-template-single-my-reviews.page-id-85025 .profile-rating__block .profile-rating__main.profile-rating__main--link .profile-rating__right {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 10px;
  }

  .page-template-single-my-reviews.page-id-85025 .profile-rating__block .profile-rating__main.profile-rating__main--link .profile-rating__right input {
    margin-right: 10px;
  }
}

@media (max-width: 767.98px) {
  .clients_details {
    padding: 0;
  }

  .clients_details .single-listing {
    position: relative;
  }

  .clients_details .single-listing .container-fluid,
  .clients_details .single-listing .container-sm,
  .clients_details .single-listing .container-md,
  .clients_details .single-listing .container-lg,
  .clients_details .single-listing .container-xl {
    padding: 0;
  }

  .clients_details .single-listing .container-fluid .post-title,
  .clients_details .single-listing .container-sm .post-title,
  .clients_details .single-listing .container-md .post-title,
  .clients_details .single-listing .container-lg .post-title,
  .clients_details .single-listing .container-xl .post-title {
    padding: 0 16px !important;
    position: relative;
    margin-top: 260px;
    margin-bottom: 30px;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left,
  .clients_details .single-listing .container-sm .post-title .float-sm-left,
  .clients_details .single-listing .container-md .post-title .float-sm-left,
  .clients_details .single-listing .container-lg .post-title .float-sm-left,
  .clients_details .single-listing .container-xl .post-title .float-sm-left {
    display: flex;
    width: 75%;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .fancy-box,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .fancy-box,
  .clients_details .single-listing .container-md .post-title .float-sm-left .fancy-box,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .fancy-box,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .fancy-box {
    margin-right: 20px;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .fancy-box label,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .fancy-box label,
  .clients_details .single-listing .container-md .post-title .float-sm-left .fancy-box label,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .fancy-box label,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .fancy-box label {
    display: flex;
    flex-direction: column-reverse;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .fancy-box label:before,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .fancy-box label:before,
  .clients_details .single-listing .container-md .post-title .float-sm-left .fancy-box label:before,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .fancy-box label:before,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .fancy-box label:before {
    margin-right: 0;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .fancy-box input,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .fancy-box input,
  .clients_details .single-listing .container-md .post-title .float-sm-left .fancy-box input,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .fancy-box input,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .fancy-box input {
    position: absolute;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .inline-b,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .inline-b,
  .clients_details .single-listing .container-md .post-title .float-sm-left .inline-b,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .inline-b,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .inline-b {
    line-height: 12px;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .inline-b .uppercase.heavy.prop-addrs,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .inline-b .uppercase.heavy.prop-addrs,
  .clients_details .single-listing .container-md .post-title .float-sm-left .inline-b .uppercase.heavy.prop-addrs,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .inline-b .uppercase.heavy.prop-addrs,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .inline-b .uppercase.heavy.prop-addrs {
    font-size: 16px;
    line-height: 19px;
    margin: 0;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-left .inline-b span,
  .clients_details .single-listing .container-sm .post-title .float-sm-left .inline-b span,
  .clients_details .single-listing .container-md .post-title .float-sm-left .inline-b span,
  .clients_details .single-listing .container-lg .post-title .float-sm-left .inline-b span,
  .clients_details .single-listing .container-xl .post-title .float-sm-left .inline-b span {
    font-size: 9px !important;
    line-height: 12px;
    padding: 0 !important;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-right,
  .clients_details .single-listing .container-sm .post-title .float-sm-right,
  .clients_details .single-listing .container-md .post-title .float-sm-right,
  .clients_details .single-listing .container-lg .post-title .float-sm-right,
  .clients_details .single-listing .container-xl .post-title .float-sm-right {
    text-align: left;
    padding-left: 47px;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-right h3,
  .clients_details .single-listing .container-sm .post-title .float-sm-right h3,
  .clients_details .single-listing .container-md .post-title .float-sm-right h3,
  .clients_details .single-listing .container-lg .post-title .float-sm-right h3,
  .clients_details .single-listing .container-xl .post-title .float-sm-right h3 {
    font-size: 16px;
  }

  .clients_details .single-listing .container-fluid .post-title .float-sm-right .color-block,
  .clients_details .single-listing .container-sm .post-title .float-sm-right .color-block,
  .clients_details .single-listing .container-md .post-title .float-sm-right .color-block,
  .clients_details .single-listing .container-lg .post-title .float-sm-right .color-block,
  .clients_details .single-listing .container-xl .post-title .float-sm-right .color-block {
    right: 16px;
    bottom: auto;
    top: 0;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .left-col,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .left-col,
  .clients_details .single-listing .container-md .post-content .kelcey-row .left-col,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .left-col,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .left-col {
    position: absolute;
    top: 0;
    padding: 0;
    max-height: 300px;
    overflow: hidden;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.map,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.map,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.map,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.map,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.map {
    height: 400px;
    margin-bottom: 20px;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row {
    margin: 0 -7px !important;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard {
    padding: 0 7px 10px;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .blob,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .blob,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .blob,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .blob,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .blob {
    padding: 20px;
    text-align: center;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard p,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard p,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard p,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard p,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard p {
    font-size: 10px !important;
    margin-bottom: 25px;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .icon,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .icon,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .icon,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .icon,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard .icon {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .clients_details .single-listing .container-fluid .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard h4,
  .clients_details .single-listing .container-sm .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard h4,
  .clients_details .single-listing .container-md .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard h4,
  .clients_details .single-listing .container-lg .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard h4,
  .clients_details .single-listing .container-xl .post-content .kelcey-row .square-col.info-listing .nonstandard-row.row .nonstandard h4 {
    font-size: 12px;
  }

  .clients_details .single-listing .container-fluid .post-content .post-actions,
  .clients_details .single-listing .container-sm .post-content .post-actions,
  .clients_details .single-listing .container-md .post-content .post-actions,
  .clients_details .single-listing .container-lg .post-content .post-actions,
  .clients_details .single-listing .container-xl .post-content .post-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .clients_details .single-listing .container-fluid .post-content .post-actions a,
  .clients_details .single-listing .container-sm .post-content .post-actions a,
  .clients_details .single-listing .container-md .post-content .post-actions a,
  .clients_details .single-listing .container-lg .post-content .post-actions a,
  .clients_details .single-listing .container-xl .post-content .post-actions a {
    margin: 0;
    font-size: 0;
    line-height: normal;
    padding: 0 !important;
    width: 50%;
  }

  .clients_details .single-listing .container-fluid .post-content .post-actions a .inline-b.with-spacing,
  .clients_details .single-listing .container-sm .post-content .post-actions a .inline-b.with-spacing,
  .clients_details .single-listing .container-md .post-content .post-actions a .inline-b.with-spacing,
  .clients_details .single-listing .container-lg .post-content .post-actions a .inline-b.with-spacing,
  .clients_details .single-listing .container-xl .post-content .post-actions a .inline-b.with-spacing {
    padding: 10px !important;
  }

  .clients_details .single-listing .container-fluid .post-content .post-actions .icon,
  .clients_details .single-listing .container-sm .post-content .post-actions .icon,
  .clients_details .single-listing .container-md .post-content .post-actions .icon,
  .clients_details .single-listing .container-lg .post-content .post-actions .icon,
  .clients_details .single-listing .container-xl .post-content .post-actions .icon {
    font-size: 15px;
    margin-right: 5px;
  }

  .clients_details .single-listing .container-fluid .post-content .post-actions span,
  .clients_details .single-listing .container-sm .post-content .post-actions span,
  .clients_details .single-listing .container-md .post-content .post-actions span,
  .clients_details .single-listing .container-lg .post-content .post-actions span,
  .clients_details .single-listing .container-xl .post-content .post-actions span {
    font-size: 12px !important;
  }

  .clients_details .single-listing .container-fluid .post-content .post-actions span.alert,
  .clients_details .single-listing .container-sm .post-content .post-actions span.alert,
  .clients_details .single-listing .container-md .post-content .post-actions span.alert,
  .clients_details .single-listing .container-lg .post-content .post-actions span.alert,
  .clients_details .single-listing .container-xl .post-content .post-actions span.alert {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    font-size: 7px !important;
    line-height: 9px;
    padding: 0;
    margin: 0;
    margin-left: 15px;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text,
  .clients_details .single-listing .container-sm .post-content .listing-text,
  .clients_details .single-listing .container-md .post-content .listing-text,
  .clients_details .single-listing .container-lg .post-content .listing-text,
  .clients_details .single-listing .container-xl .post-content .listing-text {
    position: initial;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text h3,
  .clients_details .single-listing .container-sm .post-content .listing-text h3,
  .clients_details .single-listing .container-md .post-content .listing-text h3,
  .clients_details .single-listing .container-lg .post-content .listing-text h3,
  .clients_details .single-listing .container-xl .post-content .listing-text h3 {
    font-size: 16px;
    margin: 0;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text .listing-remarks,
  .clients_details .single-listing .container-sm .post-content .listing-text .listing-remarks,
  .clients_details .single-listing .container-md .post-content .listing-text .listing-remarks,
  .clients_details .single-listing .container-lg .post-content .listing-text .listing-remarks,
  .clients_details .single-listing .container-xl .post-content .listing-text .listing-remarks {
    font-size: 14px !important;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text .agent-style-spacing,
  .clients_details .single-listing .container-sm .post-content .listing-text .agent-style-spacing,
  .clients_details .single-listing .container-md .post-content .listing-text .agent-style-spacing,
  .clients_details .single-listing .container-lg .post-content .listing-text .agent-style-spacing,
  .clients_details .single-listing .container-xl .post-content .listing-text .agent-style-spacing {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text .agent-style-spacing .agent-remarks,
  .clients_details .single-listing .container-sm .post-content .listing-text .agent-style-spacing .agent-remarks,
  .clients_details .single-listing .container-md .post-content .listing-text .agent-style-spacing .agent-remarks,
  .clients_details .single-listing .container-lg .post-content .listing-text .agent-style-spacing .agent-remarks,
  .clients_details .single-listing .container-xl .post-content .listing-text .agent-style-spacing .agent-remarks {
    margin: 0;
    font-size: 14px !important;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text .btn-style-list,
  .clients_details .single-listing .container-sm .post-content .listing-text .btn-style-list,
  .clients_details .single-listing .container-md .post-content .listing-text .btn-style-list,
  .clients_details .single-listing .container-lg .post-content .listing-text .btn-style-list,
  .clients_details .single-listing .container-xl .post-content .listing-text .btn-style-list {
    padding: 0 16px;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .clients_details .single-listing .container-fluid .post-content .listing-text .btn-style-list .agent-remarks,
  .clients_details .single-listing .container-sm .post-content .listing-text .btn-style-list .agent-remarks,
  .clients_details .single-listing .container-md .post-content .listing-text .btn-style-list .agent-remarks,
  .clients_details .single-listing .container-lg .post-content .listing-text .btn-style-list .agent-remarks,
  .clients_details .single-listing .container-xl .post-content .listing-text .btn-style-list .agent-remarks {
    font-size: 20px !important;
    padding: 15px 0 !important;
  }

  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section--header,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section--header,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section--header,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section--header,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section--header,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section--header,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section--header,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section--header,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section--header,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section--header {
    padding: 20px;
  }

  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section h3,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section h3,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section h3,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section h3,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section h3,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section--header h3,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section--header h3,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section--header h3,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section--header h3,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section--header h3,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section h3,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section h3,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section h3,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section h3,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section h3,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section--header h3,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section--header h3,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section--header h3,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section--header h3,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header h3,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section--header h3 {
    font-size: 21px;
  }

  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section p,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section p,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section p,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section p,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section p,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section--header p,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section--header p,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section--header p,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section--header p,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section--header p,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section p,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section p,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section p,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section p,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section p,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section--header p,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section--header p,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section--header p,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section--header p,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header p,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section--header p {
    font-size: 16px !important;
  }

  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:first-child,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:first-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:first-child,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:first-child {
    max-width: 65%;
  }

  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-4 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section .card-row .cell:last-child,
  .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-fluid .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-sm .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-md .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-lg .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:last-child,
  .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 #dashboard .card .card-section--header .card-row .cell:last-child,
  #dashboard .card .clients_details .single-listing .container-xl .post-content .row:nth-child(4) .col-6 .card-section--header .card-row .cell:last-child {
    max-width: 35%;
    border-right: none !important;
  }

  .clients_details .single-listing .rowEnd {
    display: none;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email,
  .clients_details .single-listing .row.profile-wrapper.agent-footer {
    padding: 0 16px;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .col-12,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .col-12 {
    padding: 0;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header {
    padding: 30px;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .profile.full.inline,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .profile.full.inline,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .profile.full.inline,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .profile.full.inline,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .profile.full.inline,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .profile.full.inline {
    display: flex !important;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .profile.full.inline img,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .profile.full.inline img,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .profile.full.inline img,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .profile.full.inline img,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .profile.full.inline img,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .profile.full.inline img {
    height: 84px !important;
    width: 84px !important;
    margin: 0 !important;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .profile.full.inline .information,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .profile.full.inline .information,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .profile.full.inline .information,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .profile.full.inline .information,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .profile.full.inline .information,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .profile.full.inline .information {
    padding-left: 0;
    margin-left: 20px;
    text-align: left;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .profile.full.inline .information h2,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .profile.full.inline .information h2,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .profile.full.inline .information h2,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .profile.full.inline .information h2,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .profile.full.inline .information h2,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .profile.full.inline .information h2 {
    font-size: 16px;
    margin: 0;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .profile.full.inline .information p,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .profile.full.inline .information p,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .profile.full.inline .information p,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .profile.full.inline .information p,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .profile.full.inline .information p,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .profile.full.inline .information p {
    font-size: 14px !important;
    margin: 0;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .profile.full.inline .information p:last-child,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .profile.full.inline .information p:last-child,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .profile.full.inline .information p:last-child,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .profile.full.inline .information p:last-child,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .profile.full.inline .information p:last-child,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .profile.full.inline .information p:last-child {
    font-size: 12px !important;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .col-sm-6,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .col-sm-6,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .col-sm-6,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .col-sm-6,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .col-sm-6,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .col-sm-6 {
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .col-sm-3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .col-sm-3,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .col-sm-3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .col-sm-3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .col-sm-3,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .col-sm-3 {
    flex: 0 0 100%;
    padding: 0;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .col-sm-3 h3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .col-sm-3 h3,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .col-sm-3 h3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .col-sm-3 p,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .col-sm-3 p,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .col-sm-3 p,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .col-sm-3 h3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .col-sm-3 h3,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .col-sm-3 h3,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .col-sm-3 p,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .col-sm-3 p,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .col-sm-3 p {
    font-size: 14px;
  }

  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .col-sm-3 h3 .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .col-sm-3 h3 .icon,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .col-sm-3 h3 .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section .col-sm-3 p .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer-email #dashboard .card .card-section--header .col-sm-3 p .icon,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer-email .card-section--header .col-sm-3 p .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .col-sm-3 h3 .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .col-sm-3 h3 .icon,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .col-sm-3 h3 .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section .col-sm-3 p .icon,
  .clients_details .single-listing .row.profile-wrapper.agent-footer #dashboard .card .card-section--header .col-sm-3 p .icon,
  #dashboard .card .clients_details .single-listing .row.profile-wrapper.agent-footer .card-section--header .col-sm-3 p .icon {
    font-size: 18px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area {
    padding-left: 0;
    padding-right: 0;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .post-title {
    margin-top: 0;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .left-col.want__details__left {
    padding: 0 16px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .left-col.want__details__left .want__details__left__address {
    padding-top: 20px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .left-col.want__details__left .want__details__left__address h3 {
    font-size: 16px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .left-col.want__details__left .want__details__left__address img {
    height: 40px;
    margin-bottom: 20px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .color-block {
    padding: 5px 14px;
    height: 30px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .square-col.map {
    height: 400px;
    margin-bottom: 20px;
    padding: 0;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .blob {
    padding: 20px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .blob p {
    font-size: 10px !important;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .blob i {
    width: 35px;
    height: 35px;
    margin-bottom: 20px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .listing-text .col-10 {
    max-width: 100%;
    padding: 0 16px;
    flex: 0 0 100%;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .profile.full.inline .agent__reviews img {
    width: 20px !important;
    height: 20px !important;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .profile.full.inline .agent__rating {
    height: 60px;
  }

  .clients_details .single-listing.content.agent-listing.want__details__area .profile.full.inline .agent__rating img {
    height: 60px !important;
  }
}

.header {
  position: relative;
  z-index: 100;
  background: #ff1d4d;
  height: 96px;
}

a:vistied {
  color: unset;
}

.brand {
  width: 100%;
  height: 100px;
  margin: 0;
}

@media (max-width: 991.98px) {
  .brand {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
  }
}

.brand__logo,
.brand__logo--dashboard,
.brand__logo--members-login,
.brand__logo--outline {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

@media (max-width: 767.98px) {
  .brand__logo--outline {
    position: absolute;
    height: 50px;
    left: 45px;
  }
}

.brand__logo.home-page svg fill,
.home-page.brand__logo--dashboard svg fill,
.home-page.brand__logo--members-login svg fill,
.home-page.brand__logo--outline svg fill {
  color: #fff;
}

.brand__logo svg,
.brand__logo--dashboard svg,
.brand__logo--members-login svg,
.brand__logo--outline svg {
  width: 160px;
  height: auto;
}

@media (max-width: 767.98px) {

  .brand__logo svg,
  .brand__logo--dashboard svg,
  .brand__logo--members-login svg,
  .brand__logo--outline svg {
    width: 90px;
  }
}

.brand__logo svg.home-page,
.brand__logo--dashboard svg.home-page,
.brand__logo--members-login svg.home-page,
.brand__logo--outline svg.home-page {
  width: auto;
  height: 80px;
}

.brand__logo--dashboard {
  width: 61.7551px;
  height: auto;
  margin-right: 20px;
}

.brand__logo i,
.brand__logo--dashboard i,
.brand__logo--members-login i,
.brand__logo--outline i {
  font-family: "The NLS";
  font-size: 80px;
  color: #ff1d4e;
}

@media (max-width: 767.98px) {

  .brand__logo svg,
  .brand__logo--dashboard svg,
  .brand__logo--members-login svg,
  .brand__logo--outline svg {
    height: 30px;
  }
}

.brand__logo svg path,
.brand__logo--dashboard svg path,
.brand__logo--members-login svg path,
.brand__logo--outline svg path {
  fill: #ff1d4e;
}

.brand__logo--members-login {
  justify-content: flex-start;
}

@media (max-width: 767.98px) {
  .brand__logo--members-login {
    justify-content: center;
  }
}

.brand__logo--members-login a {
  height: 100%;
}

.brand__logo--members-login svg {
  width: auto;
  height: 100%;
  path-fill: #fff;
}

@media (max-width: 767.98px) {
  .brand__logo--members-login svg {
    width: 160px !important;
    height: auto;
  }
}

.brand__logo--outline {
  justify-content: flex-start;
}

.brand__logo--outline svg path {
  fill: #fff;
}

.brand span {
  color: #fff;
  font-weight: 400;
  padding-left: 8px;
}

.brand img {
  height: 80px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767.98px) {
  .brand img {
    height: 50px;
  }
}

.agents-header .brand__logo svg,
.agents-header .brand__logo--dashboard svg,
.agents-header .brand__logo--members-login svg,
.agents-header .brand__logo--outline svg,
.public-header .brand__logo svg,
.public-header--no-padding .brand__logo svg,
.public-header__return .brand__logo svg,
.public-header .brand__logo--dashboard svg,
.public-header--no-padding .brand__logo--dashboard svg,
.public-header__return .brand__logo--dashboard svg,
.public-header .brand__logo--members-login svg,
.public-header--no-padding .brand__logo--members-login svg,
.public-header__return .brand__logo--members-login svg,
.public-header .brand__logo--outline svg,
.public-header--no-padding .brand__logo--outline svg,
.public-header__return .brand__logo--outline svg {
  height: 80px;
}

@media (max-width: 767.98px) {

  .agents-header .brand__logo svg,
  .agents-header .brand__logo--dashboard svg,
  .agents-header .brand__logo--members-login svg,
  .agents-header .brand__logo--outline svg,
  .public-header .brand__logo svg,
  .public-header--no-padding .brand__logo svg,
  .public-header__return .brand__logo svg,
  .public-header .brand__logo--dashboard svg,
  .public-header--no-padding .brand__logo--dashboard svg,
  .public-header__return .brand__logo--dashboard svg,
  .public-header .brand__logo--members-login svg,
  .public-header--no-padding .brand__logo--members-login svg,
  .public-header__return .brand__logo--members-login svg,
  .public-header .brand__logo--outline svg,
  .public-header--no-padding .brand__logo--outline svg,
  .public-header__return .brand__logo--outline svg {
    height: 40px;
  }
}

.home-page .brand__logo svg,
.home-page .brand__logo--dashboard svg,
.home-page .brand__logo--members-login svg,
.home-page .brand__logo--outline svg {
  width: auto;
  height: 80px;
}

.home-page .brand__logo svg path,
.home-page .brand__logo--dashboard svg path,
.home-page .brand__logo--members-login svg path,
.home-page .brand__logo--outline svg path {
  fill: #fff;
}

.profile {
  display: flex;
  align-items: center;
}

.profile__avatar,
.profile--welcome .profile__avatar,
.profile--members .profile__avatar,
.profile--public .profile__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
}

@media (max-width: 767.98px) {

  .profile__avatar,
  .profile--welcome .profile__avatar,
  .profile--members .profile__avatar,
  .profile--public .profile__avatar {
    width: 30px;
    height: 30px;
  }
}

#profile .profile__image,
.profile__image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0;
  margin-right: 0;
  padding: 0;
  box-sizing: border-box;
  transition: border 0.3s ease-in-out;
}

#profile .profile__image.open,
.profile__image.open {
  border-color: #ff1d4e;
  transition: border 0.3s ease-in-out;
}

.profile__name {
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.profile__carat {
  fill: #fff;
  transform: rotate(0deg);
  transition: all 0.1s ease-in-out;
}

.profile__carat.open {
  transform: rotate(180deg);
  transition: all 0.1s ease-in-out;
}

.profile__carat.open svg {
  fill: #ff1d4e;
}

.profile--welcome {
  display: flex;
  align-items: center;
}

.profile--welcome .profile__avatar {
  background-color: #fff;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
}

.profile--welcome .no-background.profile__avatar {
  background: none;
  background-color: transparent;
}

.profile--welcome .open.profile__avatar {
  color: #fff;
  background-color: #ff1d4e;
  border-color: #fff;
  transition: all 0.3s ease-in-out;
}

.profile--members {
  display: flex;
  align-items: center;
}

.profile--members .profile__avatar {
  color: #ff1d4e;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.profile--members .no-background.profile__avatar {
  background: none;
  background-color: transparent;
}

.profile--members .open.profile__avatar {
  color: #fff;
  background-color: #ff1d4e;
  border-color: #ff1d4e;
  transition: all 0.3s ease-in-out;
}

.profile--members .profile__carat svg {
  fill: #fff;
}

.profile--public {
  display: flex;
  align-items: center;
  height: 100%;
}

.profile--public .profile__avatar {
  color: #fff;
  background-color: #4f536c;
  transition: all 0.3s ease-in-out;
}

.profile--public .open.profile__avatar {
  color: #fff;
  background-color: #ff1d4e;
  border-color: #ff1d4e;
  transition: all 0.3s ease-in-out;
}

.profile--public .profile__carat {
  fill: #4f536c;
}

.home-page .profile__carat {
  fill: #fff;
}

/** WordPress Navigation Styling **/
.mobile-customizer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-customizer li {
  margin: 0 !important;
}

.mobile-customizer::before {
  right: unset;
  left: 71px;
}

.mobile-customizer .area-style {
  margin-bottom: 20px;
}

.mobile-customizer .upload-style {
  display: flex;
  justify-content: space-between;
}

.mobile-customizer .upload-style small {
  font-size: 10px;
  font-weight: 600;
  color: #949baf;
  margin: 0;
}

.mobile-customizer .upload-style form {
  padding: 0;
}

.mobile-customizer .upload-style__label {
  width: 100%;
}

.mobile-customizer .flex-div-img {
  display: flex;
  margin-top: 20px;
}

.mobile-customizer .flex-div-img .img-style-thumbnail {
  position: relative;
  width: 140px;
  height: 80px;
  margin-right: 20px;
  background-size: cover !important;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.mobile-customizer .flex-div-img .img-style-thumbnail #remove_thumb_image {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  font-size: 12px;
  font-style: normal;
  cursor: pointer;
  color: #fff !important;
  background: #ff1d4d;
  border: 1px solid #ff1d4d;
  border-radius: 50%;
}

.mobile-customizer .flex-div-img .img-style-thumbnail #bg-preview {
  width: 80px;
  height: 80px;
}

.mobile-customizer .flex-div-img .img-style-info {
  display: flex;
  flex-direction: column;
}

.mobile-customizer .flex-div-img .img-style-info #img-name {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #4f536c;
}

.mobile-customizer .flex-div-img .img-style-info #img-size {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 600;
  color: #949baf;
}

.members-header {
  background-color: #ff1d4e;
  padding: 0 32px;
}

.members-header__navigation--closed {
  display: flex;
  justify-content: flex-end;
  height: 100px;
}

.members-header__navigation--open {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
}

@media (max-width: 1199.98px) {
  .members-header__navigation--open {
    display: none;
  }
}

.members-header__menu {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

.members-header__item {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.members-header__link {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.members-header__link i {
  display: flex;
}

.members-header__link:hover {
  color: #fff;
  text-decoration: none;
}

.members-header__link:hover .members-header__carat svg {
  transform: rotate(180deg);
}

.members-header__text {
  height: 26px;
  line-height: 26px;
  margin-left: 10px;
}

.members-header__carat {
  margin-left: 10px;
}

.members-header__carat svg {
  fill: #fff;
  transition: all 0.1s ease-out;
}

.members-header__watchlist {
  position: relative;
}

.members-header__notifications {
  position: relative;
}

.members-header path {
  fill: #fff;
}

.members-header__dashboard .area-style {
  margin-bottom: 30px;
}

.members-header__dashboard .area-style small {
  font-size: 10px;
  color: #949baf;
}

.members-header__dashboard .area-style form {
  margin: 0;
}

.members-header__dashboard .upload-style {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.members-header__dashboard .upload-style small {
  font-size: 10px;
  font-weight: 600;
  color: #949baf;
  margin: 0;
}

.members-header__dashboard .upload-style form {
  padding: 0;
}

.members-header__dashboard .upload-style__label {
  width: 100%;
}

.members-header__dashboard .flex-div-img {
  display: flex;
  margin-top: 20px;
}

.members-header__dashboard .flex-div-img .img-style-thumbnail {
  position: relative;
  width: 140px;
  height: 80px;
  margin-right: 20px;
  background-size: cover !important;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.members-header__dashboard .flex-div-img .img-style-thumbnail #remove_thumb_image {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  font-style: normal;
  cursor: pointer;
  color: #fff;
  background: #ff1d4d;
  border: 1px solid #ff1d4d;
  border-radius: 50%;
}

.members-header__dashboard .flex-div-img .img-style-thumbnail #remove_thumb_image i {
  display: inline-table;
  font-size: 10px;
  font-style: normal;
  line-height: 0;
}

.members-header__dashboard .flex-div-img .img-style-thumbnail #bg-preview {
  width: 80px;
  height: 80px;
}

.members-header__dashboard .flex-div-img .img-style-info #img-name {
  font-size: 14px;
  font-weight: 600;
  color: #4f536c;
}

.members-header__dashboard .flex-div-img .img-style-info #img-size {
  font-size: 14px;
  font-weight: 600;
  color: #949baf;
}

.members-header__dashboard .tokenize .form-control:focus {
  box-shadow: none !important;
}

.members-header__dashboard .tokenize>.tokens-container {
  min-height: 40px;
  margin: 0;
  border-radius: 5px;
}

.members-header__dashboard .properties__input {
  border-radius: 5px;
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  color: #4f536c;
  margin-bottom: 0px;
  padding: 0 20px;
  cursor: pointer;
}

.public-header,
.public-header--no-padding,
.public-header__return {
  height: 100px;
  color: #fff;
  background-color: transparent;
  padding: 0 32px;
}

.public-header--no-padding {
  padding: 0;
}

.public-header__agents {
  display: flex;
  align-items: center;
  margin-left: -32px;
  margin-right: 32px;
}

.public-header__return {
  display: flex;
  align-items: center;
  width: calc(100% - 15px);
}

.public-header__return svg {
  fill: #4f536c;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
}

.public-header__navigation,
.public-header__navigation--logged-out {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 767.98px) {
  .public-header__navigation--logged-out {
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px) {
  .public-header__navigation--logged-out {
    padding: 0;
  }
}

.public-header__button,
.listing-header__button--small {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  color: #4f536c;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767.98px) {

  .public-header__button,
  .listing-header__button--small {
    width: 60px;
    height: 30px;
  }
}

.home-page .public-header__button,
.home-page .listing-header__button--small {
  color: #fff;
}

.home-page .public-header__button svg,
.home-page .listing-header__button--small svg {
  fill: #fff;
}

.home-page .public-header__button svg polygon,
.home-page .listing-header__button--small svg polygon {
  fill: #fff;
}

@media (max-width: 991.98px) {

  .public-header__button,
  .listing-header__button--small {
    padding: 0 8px;
    font-size: 12px;
  }
}

.public-header__button:hover,
.listing-header__button--small:hover {
  text-decoration: none;
  color: #fff;
  background: #4f536c;
  border-color: #4f536c;
}

.public-header__button:hover svg,
.listing-header__button--small:hover svg {
  fill: #fff;
}

.public-header__menu {
  position: absolute;
  top: 100px;
  right: -4px;
  display: flex;
  flex-direction: column;
  width: 260px;
  background: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 999;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.03)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.04)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.05)) drop-shadow(0 0 8px rgba(85, 63, 63, 0.06)) drop-shadow(0 0 16px rgba(0, 0, 0, 0.07));
}

.public-header__menu:before {
  position: absolute;
  top: -10px;
  right: 20px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  text-align: center;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  border-left: 5px solid transparent;
  overflow: hidden;
  z-index: 0;
}

.public-header__menu.open {
  top: 85px;
  visibility: visible;
  opacity: 1;
}

.public-header__menu .public-header__item:last-child .public-header__link {
  margin: 0;
}

.public-header__item {
  position: relative;
  transition: all 0.15s ease-out;
}

.public-header__item:hover {
  padding-left: 20px;
  transition: all 0.15s ease-out;
}

.public-header__item:hover:after {
  opacity: 1;
  transition: all 0.15s ease-out;
}

.public-header__item:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1d4d;
  opacity: 0;
  transition: all 0.15s ease-out;
}

.public-header__link {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #131a25;
  margin-bottom: 30px;
}

.public-header__link:hover {
  text-decoration: none;
  color: #ff1d4e;
}

.public-header__sign-in {
  margin-right: 10px;
  transition: all 0.3s ease-out;
}

.public-header__sign-in:hover {
  text-decoration: none;
  color: #fff;
  background: #4f536c;
  border-color: #4f536c;
}

@media (max-width: 767.98px) {
  .public-header__sign-in {
    margin-right: 5px;
    border-color: transparent !important;
  }
}

.public-header__join-free {
  color: #fff;
  background-color: #ff1d4e;
  border-radius: 3px;
  text-decoration: none;
  border-color: #ff1d4e;
  transition: all 0.3s ease-out;
}

.public-header__join-free:hover {
  text-decoration: none;
  color: #ff1d4e;
  background: #fff;
  border-color: #ff1d4e;
}

.home-page .public-header__sign-in {
  color: #fff;
}

.home-page .public-header__sign-in:hover {
  color: #4f536c;
  background-color: #fff;
  border-color: #fff;
}

.home-page .public-header__join-free:hover {
  color: #fff;
  background-color: #4f536c;
  border-color: #4f536c;
}

.agents-header {
  width: 100%;
  padding: 0 32px;
  border-bottom: 1px solid #ced2dc;
}

@media (max-width: 767.98px) {
  .agents-header {
    display: flex;
    align-items: center;
    padding: 0 10px;
  }

  .agents-header>.row {
    width: 100%;
  }
}

.agents-header__navigation {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.agents-header__menu {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.agents-header__item {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

@media (max-width: 767.98px) {
  .agents-header__item {
    margin: 0;
  }
}

.agents-header__link {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #4f536c;
}

.agents-header__link svg {
  margin-right: 10px;
}

@media (max-width: 767.98px) {
  .agents-header__link svg {
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .agents-header__link span {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .agents-header__link {
    font-size: 14px;
  }
}

.agents-header__link i {
  display: flex;
}

.agents-header__link:hover {
  color: #ff1d4e;
  text-decoration: none;
}

.agents-header__back {
  margin-right: 10px;
}

@media (max-width: 767.98px) {
  .agents-header__back {
    margin-right: 0;
  }
}

.agents {
  color: #131a25;
}

.agents__slide {
  display: flex;
  width: 0px;
  background-color: #fff;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: width 1s;
  top: 0;
  z-index: 10;
  position: absolute;
  height: 100vh;
}

.agents__slide.slide {
  width: 384px;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

.agents__slide.slide .agents__navigation {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 384px;
  height: 100%;
}

.agents__slide.slide .agents__menu {
  min-width: 250px;
  opacity: 1;
}

.agents__slide.slide .agents__carat {
  transform: rotate(180deg);
}

.agents__button svg {
  width: 30px;
  height: 30px;
}

.agents__button svg:hover {
  fill: #131a25;
}

.agents__navigation {
  display: flex;
  width: 0;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-out;
}

.agents__menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  list-style-type: none;
  margin-bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.agents__menu--social {
  display: flex;
  min-width: 250px;
  margin: 0 0 50px;
}

.agents__menu--copyright {
  width: 318px;
  height: auto;
}

.agents__menu a {
  font-size: 18px;
  font-weight: 600;
  color: #343a4c;
}

.agents__menu a:hover {
  color: #ff1d4e;
}

.agents__menu--middle {
  display: block;
  height: auto;
  font-size: 21px;
  margin-left: 66px;
}

.agents__menu--middle a {
  font-weight: 800;
}

.agents__menu--middle li {
  margin-top: 40px;
}

.agents__menu--middle li:first-child {
  margin-top: 0;
}

.agents__menu--middle li.small {
  margin-top: 20px;
}

.agents__menu--middle li.underline {
  width: 128px;
  border-bottom: 1px solid #343a4c;
  margin-top: 60px;
  margin-bottom: 50px;
}

.agents__menu--bottom,
.agents__menu--right {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #343a4c;
}

.agents__menu--bottom {
  margin: 0 0 60px 66px;
}

.agents__item {
  margin-left: 35px;
  white-space: nowrap;
}

.agents__link {
  font-size: 16px;
  font-weight: 600;
  color: #343a4c;
}

.agents__link:hover {
  text-decoration: none;
  color: #343a4c;
}

.agents__handle {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #343a4c;
  width: 20px;
  height: 100%;
  border-left: 1px solid #949baf;
  margin-left: auto;
  transition: transform 0.6s ease-out;
  transform: translateX(-1px);
}

@media (max-width: 767.98px) {
  .agents__handle {
    transform: translateX(15px);
  }
}

.agents__carat:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  text-align: center;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid #fff;
}

.agents__icon {
  display: flex;
  align-items: center;
  margin-left: 32px;
  color: #343a4c;
}

.agents__icon svg {
  width: 30px;
  height: 30px;
}

.agents__icon svg path {
  fill: #343a4c;
}

.agents__icon:after {
  content: "Agents";
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin-left: 10px;
}

.agents__icon--closed {
  position: absolute;
  display: flex;
  left: 32px;
  transition: opacity 0.6s ease-out;
}

@media (max-width: 767.98px) {
  .agents__icon--closed {
    position: relative;
  }
}

.agents__icon--closed:after {
  position: absolute;
  content: "Agents";
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #4f536c;
  margin-left: 36px;
}

@media (max-width: 767.98px) {
  .agents__icon--closed:after {
    display: none;
  }
}

.agents__icon--closed svg path {
  fill: #4f536c;
}

.agents__icon--closed.slide:not(.mobile) {
  opacity: 0;
}

.home-page .agents__icon--closed svg path {
  fill: #fff;
}

.home-page .agents__icon--closed::after {
  color: #fff;
}

.notification {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  top: -6px;
  right: -13px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 0;
}

.notification__count {
  font-size: 12px;
  font-weight: 700;
  color: #ff1d4e;
  z-index: 1;
}

.notification .notification__count {
  margin-left: 0 !important;
}

.menutip {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute !important;
  top: 20px;
  min-width: 110px;
  height: 55px;
  right: 50%;
  transform: translateX(50%);
  background-color: #343a4c;
  border-radius: 5px;
  margin-top: 20px;
  padding: 0 25px;
  transition: all 0.3s ease-in 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}

.menutip__label {
  font-size: 19px;
  font-weight: 600;
  font-style: italic;
  text-transform: capitalize;
}

.menutip:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: -2px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #343a4c;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menutip.active {
  top: 20px;
  transition: all 0.3s ease-in 0.3s;
  visibility: visible;
  opacity: 1;
}

/*** Dashboard Dropdown Menu ****/
.dropdown_menu_style,
.status-labels__container,
#dashboard .post-style .hands,
#dashboard .dashpost-style .hands {
  position: absolute;
  width: 500px;
  top: 60px;
  left: -115px;
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  z-index: 999;
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.03)) drop-shadow(0 0 2px rgba(0, 0, 0, 0.04)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.05)) drop-shadow(0 0 8px rgba(85, 63, 63, 0.06)) drop-shadow(0 0 16px rgba(0, 0, 0, 0.07));
  /*
    .triangle-up {
        position: absolute;
        top: -6px;
        right: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 5.5px 6px 5.5px;
        border-color: transparent transparent #fff transparent;
    }
    */
}

@media (max-width: 767.98px) {

  .dropdown_menu_style,
  .status-labels__container,
  #dashboard .post-style .hands,
  #dashboard .dashpost-style .hands {
    padding: 20px;
  }
}

.dropdown_menu_style.active,
.active.status-labels__container,
#dashboard .post-style .active.hands,
#dashboard .dashpost-style .active.hands {
  top: 45px;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease-out;
}

@media (max-width: 767.98px) {

  .dropdown_menu_style.active,
  .active.status-labels__container,
  #dashboard .post-style .active.hands,
  #dashboard .dashpost-style .active.hands {
    top: 50px;
    width: calc(100vw - 32*2px);
  }
}

.dropdown_menu_style:before,
.status-labels__container:before,
#dashboard .post-style .hands:before,
#dashboard .dashpost-style .hands:before {
  position: absolute;
  top: -10px;
  right: calc(50% - 5px);
  content: "";
  display: block;
  width: 0;
  height: 0;
  text-align: center;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  border-left: 5px solid transparent;
  overflow: hidden;
  z-index: 0;
}

.dropdown_menu_style h2,
.status-labels__container h2,
#dashboard .post-style .hands h2,
#dashboard .dashpost-style .hands h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  margin-bottom: 0;
}

.dropdown_menu_style .custom-file,
.status-labels__container .custom-file,
#dashboard .post-style .hands .custom-file,
#dashboard .dashpost-style .hands .custom-file {
  display: flex;
}

.dropdown_menu_style .custom-file .custom-file-label,
.status-labels__container .custom-file .custom-file-label,
#dashboard .post-style .hands .custom-file .custom-file-label,
#dashboard .dashpost-style .hands .custom-file .custom-file-label {
  border-radius: 5px;
  width: auto;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  background-color: #8bc53f;
  border-color: #8bc53f;
  margin-bottom: 0px;
  padding: 0 20px;
  cursor: pointer;
}

.dropdown_menu_style .custom-file .custom-file-input,
.status-labels__container .custom-file .custom-file-input,
#dashboard .post-style .hands .custom-file .custom-file-input,
#dashboard .dashpost-style .hands .custom-file .custom-file-input {
  display: none;
}

.dropdown_menu_style .btn,
.status-labels__container .btn,
#dashboard .post-style .hands .btn,
#dashboard .dashpost-style .hands .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 40px;
  font-size: 16px;
  border-radius: 3px;
  cursor: pointer;
}

.status-labels {
  position: relative;
}

.status-labels button {
  font-weight: 600;
}

.status-labels__container {
  display: flex;
  width: auto;
  height: 115px;
}

.status-labels__container span {
  margin: 0;
  padding: 0;
}

#myHeader,
#myMainHeader {
  position: relative;
  height: 100px;
  z-index: 999;
}

@media (max-width: 767.98px) {

  #myHeader,
  #myMainHeader {
    height: 50px;
  }
}

.drop-style {
  position: relative;
}

/* =============================================================================
   Navigation
   ========================================================================== */
.navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}

.navigation ul.links {
  display: flex !important;
  list-style-type: none;
  margin-bottom: 0;
}

.navigation ul.profile {
  display: flex !important;
  align-items: center;
  margin-bottom: 0;
  height: 100%;
}

.navigation .links li {
  display: flex;
  align-items: center;
  margin-right: 30px !important;
}

@media (max-width: 767.98px) {
  .navigation .links li {
    font-size: 12px;
    margin-right: 0 !important;
  }
}

.navigation .links a {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.navigation .links a i {
  display: flex;
  vertical-align: middle;
  font-size: 20px;
}

.navigation .links a span {
  height: 26px;
  line-height: 26px;
  margin-left: 10px;
}

.navigation .links a .icon~span {
  vertical-align: middle;
}

.navigation a .icon-downArrow {
  padding-left: 4px;
  font-size: 7px;
  position: relative;
  top: 1px;
}

.navigation a:hover {
  color: #fff;
  text-decoration: none;
}

.navigation .actions a .icon {
  position: relative;
  transition: all 0.3s ease;
  top: 0;
}

.navigation .actions a::after {
  display: none;
}

.navigation .actions a:hover .icon {
  top: -7px;
}

.navigation .profile a img {
  transition: all 0.3s ease-out;
}

.navigation .profile a::after {
  display: none;
}

.navigation .profile li:hover img {
  border: 3px solid #fff;
}

.navigation .dropdown {
  position: absolute;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(79, 83, 108, 0.2);
  top: 60px;
  width: 240px;
  right: 0;
  padding: 16px;
  display: none;
}

.navigation .dropdown .triangle-up {
  position: absolute;
  top: -6px;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5.5px 6px 5.5px;
  border-color: transparent transparent #fff transparent;
}

.navigation .dropdown a {
  color: #151b26;
  line-height: 1;
  padding: 8px 0;
  text-transform: uppercase;
  font-weight: 800;
}

.navigation .dropdown a:hover {
  color: #ff1d4d;
}

.navigation .dropdown ul {
  display: block;
}

.navigation .dropdown li {
  display: block;
}

.navigation .dropdown li:first-child a {
  padding-top: 0;
}

.navigation .dropdown li:last-child a {
  padding-bottom: 0;
}

.navigation .dropdown p {
  font-weight: 600;
  font-size: 12px;
}

.navigation .dropdown p.note {
  color: #949baf;
  font-size: 10px;
  padding: 0;
  margin-bottom: 0;
}

.navigation .dropdown p+.note {
  margin-top: -16px;
}

.navigation .dropdown .field-group .input-group.tag ul {
  width: 100%;
}

.navigation .dropdown .field-group .input-group.tag ul li {
  margin-bottom: 4px;
}

.navigation .dropdown .field-group .input-group.tag ul li.tagit-choice a.tagit-close {
  padding: 0;
  line-height: 18px;
}

.navigation .dropdown .field-group .input-group.tag .autocomplete {
  display: none;
}

.navigation .dropdown .field-group .input-group.tag .autocomplete ul {
  margin-top: -10px;
  border-top: 0;
  background: #eff0f8;
}

.navigation .dropdown .field-group .input-group.tag .autocomplete ul li {
  display: block;
  font-weight: 600;
  font-size: 13px;
}

@media screen and (max-width: 1340px) {
  .header .brand span {
    display: none;
  }
}

@media screen and (max-width: 1140px) {
  .navigation a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .navigation .profile li:last-child a {
    padding-right: 0;
  }

  .navigation .links .icon {
    padding-right: 4px;
  }
}

@media screen and (max-width: 991px) {
  .header {
    height: 50px;
  }

  .brand {
    height: 50px;
    padding: 8px;
  }

  .mobile-overlay {
    position: fixed;
    height: calc(100vh - 50px);
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease-out;
  }

  body.admin-bar .mobile-overlay {
    height: calc(100vh - 50px);
    top: 50px;
  }

  .navigation .profile {
    position: relative;
    z-index: 95;
  }

  .navigation .links {
    position: absolute;
    z-index: 90;
    top: 50px;
    left: -280px;
    width: 280px;
    height: calc(100vh - 50px);
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(79, 83, 108, 0.2);
    transition: all 0.3s ease-out;
    flex-direction: column;
  }

  .navigation .links.active {
    left: 0;
  }

  .navigation .links .icon.icon-downArrow {
    float: right;
    margin-top: 3px;
  }

  .navigation .links li {
    display: block;
  }

  .navigation .links li span {
    font-size: 10px;
  }

  .navigation .links li a {
    line-height: 1;
    color: #151b26;
    font-size: 14px;
    font-weight: 800;
    padding: 16px;
  }

  .navigation .links li a .icon {
    color: #ff1d4d;
    font-size: 26px;
    padding-right: 8px;
  }

  .navigation .profile a img {
    display: none;
  }

  .mobile-menu-trigger {
    display: block;
    width: 30px;
    margin-right: 16px;
    height: 72px;
    position: relative;
    float: left;
  }

  .mobile-menu-trigger .bar {
    height: 4px;
    background: #fff;
    width: 100%;
    position: absolute;
  }

  .mobile-menu-trigger .bar.long {
    bottom: 16px !important;
  }

  .mobile-menu-trigger .bar.medium {
    width: 85%;
    top: 17px !important;
  }

  .mobile-menu-trigger .bar.short {
    width: 55%;
    top: 52%;
    margin-top: -2px;
  }
}

@media screen and (max-width: 480px) {
  .brand {
    padding-left: 0;
    padding-right: 0;
  }

  .mobile-menu-trigger {
    margin-right: 8px;
    width: 24px;
  }
}

.marketing-header {
  padding: 20px 0;
}

.marketing-header .brand {
  width: 25%;
  display: inline-block;
  padding: 0;
}

.marketing-header .marketing-nav {
  display: inline-block;
  font-size: 0;
  margin: 12px 0 0 16px;
}

.marketing-header .marketing-nav ul {
  margin: 0;
}

.marketing-header .marketing-nav li {
  display: inline-block;
}

.marketing-header .marketing-nav li a {
  display: block;
  font-size: 15px;
  color: #4f536c;
  font-weight: 600;
  padding: 16px;
}

.marketing-header .marketing-nav li a:hover {
  color: #ff1d4d;
}

.marketing-header .login-controls {
  float: right;
  margin-top: 20px;
}

@media (max-width: 767.98px) {
  .members-header {
    height: 50px;
    padding: 0 !important;
  }

  .members-header .row {
    flex-wrap: nowrap;
    height: 100%;
  }

  .members-header .mobile-menu-trigger {
    position: absolute;
    display: block !important;
    height: 50px;
    left: 16px;
    z-index: 999;
  }

  .members-header .navigation {
    float: none;
  }

  .members-header .navigation .dropdown-trigger {
    width: 100%;
  }

  .members-header .navigation .dropdown-trigger a {
    line-height: normal;
    display: flex;
    align-items: center;
  }

  .members-header .navigation .dropdown-trigger a img {
    display: none !important;
  }

  .members-header .navigation .drop-style a {
    padding: 0;
  }

  .members-header .navigation .profile {
    width: 18%;
  }

  .members-header .navigation .profile .user-icon {
    color: #fff;
  }

  .members-header .navigation .profile .user-icon:after {
    margin-left: 10px;
  }

  .members-header .mobile-view-notification-bar {
    position: absolute;
    right: 90px;
    align-items: center;
    height: 100%;
    z-index: 999;
  }

  .members-header .mobile-view-notification-bar li {
    margin-right: 6px;
  }

  .members-header .mobile-view-notification-bar li .notification {
    width: 10px;
    height: 10px;
    top: -2px;
    right: -3px;
  }

  .members-header .mobile-view-notification-bar li .notification .notification__count {
    font-size: 6px !important;
  }

  .members-header .mobile-linkss a {
    padding-left: 0 !important;
  }

  .members-header .sub-mobile-list {
    padding-top: 20px !important;
  }

  .members-header .sub-mobile-list .sub-mobile-list-o {
    margin-bottom: 20px;
    padding: 0 !important;
  }

  .members-header .sub-mobile-list .sub-mobile-list-o:last-child {
    margin-bottom: 0;
  }

  .public-header .public-header__return,
  .public-header--no-padding .public-header__return,
  .public-header__return .public-header__return,
  .public-header .brand,
  .public-header--no-padding .brand,
  .public-header__return .brand,
  .public-header .public-header__navigation,
  .public-header--no-padding .public-header__navigation,
  .public-header__return .public-header__navigation,
  .public-header .public-header__navigation--logged-out,
  .public-header--no-padding .public-header__navigation--logged-out,
  .public-header__return .public-header__navigation--logged-out {
    padding: 5px 0 !important;
  }
}

@media (max-width: 767.98px) and (min-width: 576px) {

  .public-header .public-header__return,
  .public-header--no-padding .public-header__return,
  .public-header__return .public-header__return,
  .public-header .brand,
  .public-header--no-padding .brand,
  .public-header__return .brand,
  .public-header .public-header__navigation,
  .public-header--no-padding .public-header__navigation,
  .public-header__return .public-header__navigation,
  .public-header .public-header__navigation--logged-out,
  .public-header--no-padding .public-header__navigation--logged-out,
  .public-header__return .public-header__navigation--logged-out {
    padding: 0 !important;
  }
}

.profile li {
  height: 100%;
  display: flex;
}

.profile .user-icon {
  font-size: 12px;
}

.profile .user-icon:after {
  position: initial !important;
}

.profile .dropdown-trigger a {
  display: flex;
  align-items: center;
  position: relative;
}

.profile .dropdown li {
  position: relative;
}

.navigation .links li .tooltip {
  opacity: 1;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  nav.navigation .links li {
    margin-right: 0px !important;
  }

  nav.navigation .links li.mesage,
  nav.navigation .links li.suport,
  nav.navigation .links li.bel {
    margin-right: 20px !important;
  }

  nav.navigation .links li.mesage {
    margin-left: 0;
  }
}

@media (max-width: 767.98px) {
  .my-header.public-side {
    display: none !important;
  }

  .fixed-position {
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: 0;
  }

  .mobile-public-nav {
    position: relative;
    display: block !important;
    background-color: #fff;
    z-index: 100;
  }

  .mobile-public-nav .public-header__navigation--logged-out {
    justify-content: flex-end;
    padding-right: 10px;
  }

  .mobile-public-nav .brand .brand__logo--outline {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: unset;
    width: auto;
  }
}

@media (max-width: 767.98px) and (max-width: 767.98px) {
  .mobile-public-nav .brand .brand__logo--outline svg {
    height: 40px;
  }

  .mobile-public-nav .brand .brand__logo--outline svg path {
    fill: #ff1d4e;
  }
}

@media (max-width: 767.98px) {

  .mobile-public-nav .brand .brand__logo--outline .logo svg,
  .mobile-public-nav .brand .brand__logo--outline .logo path {
    fill: #ff1d4e;
  }

  .mobile-public-nav .public-header__agents {
    position: relative;
    margin: 0;
    padding-left: 10px;
    z-index: 999;
  }

  .mobile-public-nav .mobile-public-user {
    display: flex;
    justify-content: flex-end;
    padding-right: 24px;
  }

  .mobile-public-nav .mobile-public-user a.small {
    font-size: 12px;
    font-weight: 600;
    line-height: 50px;
    color: #4f536c;
  }

  .mobile-public-nav .mobile-public-user a img {
    width: 20px !important;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
  }

  .mobile-public-nav .mobile-public-user a span::after {
    top: 0 !important;
    right: 10px;
    font-size: 12px;
    color: #ff1d4e;
  }

  .mobile-public-nav ul.profile {
    height: 50px;
    top: 0px;
    width: 130px;
  }

  .mobile-public-nav .navigation .agent-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50px;
    left: -280px;
    width: 280px;
    height: calc(100vh - 50px);
    background: #343a4c;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(79, 83, 108, 0.2);
    z-index: 90;
  }

  .mobile-public-nav .navigation .agent-menu.active {
    left: 0;
    padding: 20px 32px 40px 32px;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.5);
  }

  .mobile-public-nav .navigation .agent-menu li {
    padding: 20px 0;
  }

  .mobile-public-nav .navigation .agent-menu li a {
    font-size: 14px;
    font-weight: #000;
    color: #fff;
    padding-left: 0;
  }

  .mobile-public-nav .navigation .agent-menu .mobile-links {
    padding: 0;
  }

  .mobile-public-nav .navigation .agent-menu .mobile-links.sub-links {
    padding-top: 20px;
  }

  .mobile-public-nav .navigation .agent-menu .mobile-links a {
    font-size: 14px !important;
    font-weight: 600;
  }

  .mobile-public-nav .navigation .agent-menu .mobile-copyright {
    font-size: 12px;
    color: #fff;
    margin-top: auto;
    padding: 40px 60px 0 0;
  }

  .mobile-public-nav .navigation .profile-menu {
    display: flex;
    flex-direction: column;
    top: 50px;
    width: 280px;
    height: calc(100vh - 50px);
    background: #fff;
    padding: 20px 32px 40px 32px;
    z-index: 90;
  }

  .mobile-public-nav .navigation .profile-menu li {
    margin: 0;
    padding: 20px 0;
    margin-right: 30px;
  }
}

@media (max-width: 767.98px) and (max-width: 767.98px) {
  .mobile-public-nav .navigation .profile-menu li {
    margin-right: 0;
  }
}

@media (max-width: 767.98px) {
  .mobile-public-nav .navigation .profile-menu li a:hover {
    color: #131a25 !important;
  }

  .mobile-public-nav .navigation .profile-menu li a .icon {
    color: #ff1d4d;
    font-size: 26px;
    padding-right: 8px;
  }

  .mobile-public-nav .slide-out {
    position: fixed;
    right: -280px;
    top: 50px;
    width: 280px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px rgba(79, 83, 108, 0.2);
    transition: all 0.3s ease-out;
  }

  .mobile-public-nav .slide-out.active {
    right: 0;
    box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.5);
    right: 0;
  }

  .mobile-public-nav a:not(.logo).public-header__sign-in {
    font-size: 12px;
    color: #4f536c;
    border-color: #ced2dc;
    padding: 0 8px;
  }

  .mobile-public-nav a:not(.logo).public-header__sign-in:hover {
    color: #ff1d4e;
    background-color: #fff;
  }

  .mobile-public-nav a:not(.logo).public-header__join-free {
    font-size: 12px;
    color: #fff;
    border-color: #fff;
    padding: 0 8px;
  }

  .mobile-public-nav .agents__icon--closed {
    left: unset;
    pointer-events: all;
  }

  .mobile-public-nav .agents__icon--closed:after {
    top: -3px;
    color: #4f536c;
    font-size: 12px;
    font-weight: 600;
    margin-left: 25px;
  }

  .mobile-public-nav .agents__icon--closed.mobile svg,
  .mobile-public-nav .agents__icon--closed.mobile path {
    height: 30px;
    fill: #4f536c;
  }
}

@media (max-width: 767.98px) {
  #wp-admin-bar-top-secondary {
    display: none;
  }
}

.listing-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: -16px;
  padding: 16px;
}

.listing-row h3,
.listing-row p {
  margin: 0;
}

.listing-row .label {
  width: 20%;
}

.listing-row .graph {
  width: 70%;
  padding: 0 16px;
  position: relative;
}

.listing-row .amount {
  width: 10%;
}

.listing-row .fill {
  flex-grow: 1;
  position: relative;
}

.listing-row.eq .listing-col {
  flex: 1;
}

.listing-row .meta {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
}

.listing-row .meta .icon {
  font-size: 12px;
  position: relative;
  top: -1px;
  padding-right: 4px;
}

.listing-row .actions .action .icon {
  position: relative;
  top: -4px;
  transition: all 0.3s ease;
}

.listing-row .actions .action a {
  display: block;
}

.listing-row .actions .action a:hover {
  text-decoration: none;
}

.page .sidebar {
  padding-top: unset;
}

.sidebar {
  background: rgba(255, 255, 255, 0.9);
  padding-top: 20px;
}

.sidebar .listing-row .listing-col p {
  font-size: 13px;
  line-height: 16px;
}

.sidebar .listing-row .listing-col p.meta {
  font-size: 11px;
  line-height: 1;
}

.sidebar .listing-row .listing-col p .time-since {
  font-size: 12px;
  line-height: 15px;
}

.sidebar h3 {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #131a25;
  line-height: 1;
  position: relative;
  transition: all 0.15s ease-out;
}

.sidebar h3:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1d4d;
  opacity: 0;
  transition: all 0.15s ease-out;
}

.sidebar h3:hover:after {
  opacity: 1;
  transition: all 0.15s ease-out;
}

.sidebar .active-dot {
  position: relative;
  padding-left: 1.3em;
}

.sidebar .active-dot::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1d4e;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.35em;
  transition: all 0.15s ease-out;
}

.sidebar ul {
  list-style: none;
}

.sidebar ul li {
  margin-bottom: 16px;
}

.sidebar ul li.page {
  margin-bottom: 32px;
}

.sidebar ul .dropdown {
  display: none;
  padding-left: 24px;
}

.sidebar ul .dropdown a,
.sidebar ul .dropdown li {
  font-weight: 600;
  color: #131a25;
  text-transform: uppercase;
  font-size: 16px;
}

.sidebar ul .dropdown a:hover:before,
.sidebar ul .dropdown li:hover:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1d4e;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.35em;
  transition: all 0.3s ease-out;
}

.sidebar ul .dropdown.open {
  display: block;
}

.sidebar.collapsible {
  padding-left: 16px;
  position: sticky;
  top: 0;
  height: 100vh;
  width: 25%;
  transition: width 200ms linear;
  box-shadow: 0 -2px 5px rgba(79, 83, 108, 0.2);
  overflow: hidden;
}

.sidebar.collapsible .collapse {
  width: 16px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-right: 1px solid #CED2DC;
}

.sidebar.collapsible .collapse .icon {
  color: #949BAF;
  font-size: 10px;
}

.sidebar.collapsible .content {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 1;
  transition: opacity 100ms linear;
  transition-delay: 100ms;
}

.sidebar.collapsible .content .sidebar-section {
  padding: 0 20px;
}

.sidebar.collapsible .content .sidebar__heading {
  display: none;
}

.sidebar.collapsible .content h4 {
  display: flex;
  align-items: center;
  height: 40px;
  background: #CED2DC;
  color: #4F536C;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  padding-left: 20px;
}

.sidebar.collapsible .content form {
  padding: 0 0 24px;
}

.sidebar.collapsible .content form .button .icon {
  font-size: 7px;
  padding-left: 8px;
  margin-right: 0;
}

.sidebar.collapsible .content label {
  font-weight: 600;
  color: #4F536C;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 12px;
}

.sidebar.collapsible .content .post-type {
  text-align: right;
  position: relative;
}

.sidebar.collapsible .content .post-type select {
  background: #eff0f8;
  color: #4F536C;
  font-weight: 400;
  font-size: 14px;
  padding: 9px 16px;
}

.sidebar.collapsible .scrollable {
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  padding: 0 0 0 0;
}

.sidebar.collapsible .scrollable::-webkit-scrollbar {
  /* WebKit */
  width: 0;
  height: 0;
}

.sidebar.collapsible .scrollable .listing-select {
  margin-bottom: 12px;
  border-bottom: 1px solid #CED2DC;
  display: none;
}

.sidebar.collapsible .scrollable .listing-select .fancy-box {
  padding: 5px;
}

.sidebar.collapsible .scrollable .listing-select .fancy-box label {
  margin: 0;
}

.sidebar.collapsible .scrollable .listing-select .fancy-box label span {
  top: -2px;
}

.sidebar.collapsible .scrollable .listing-select h4 {
  display: flex;
  align-items: center;
  height: 40px;
  background: #CED2DC;
  color: #4F536C;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  padding-left: 20px;
}

.sidebar.collapsible .scrollable .listing-select p {
  padding: 25px 20px;
  margin: 0;
}

.sidebar.collapsible .scrollable .listing-select .property.excerpt {
  padding: 25px 20px !important;
}

.sidebar.collapsible .scrollable .listing-select .property.excerpt>div {
  padding: 0;
}

.sidebar.collapsible .scrollable .listing-select .property.excerpt:nth-child(even) {
  background: #eff0f8 !important;
  margin-left: 0;
  margin-right: 0;
  padding: 25px 20px !important;
}

.sidebar.collapsible .scrollable .listing-select .property .property-select {
  width: 24% !important;
  flex: 0 0 25%;
  max-width: 25%;
}

.sidebar.collapsible .scrollable .listing-select .property .property-select .fancy-box {
  padding: 8px 8px 8px 8px !important;
}

.sidebar.collapsible .scrollable .listing-select .property .property-image {
  width: calc(50% - 16px) !important;
  flex: 0 0 25%;
  max-width: 50%;
  margin-right: 16px;
}

.sidebar.collapsible .scrollable .listing-select .property div.property-address {
  width: 50% !important;
  flex: 0 0 50%;
  max-width: 100%;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}

.sidebar.collapsible .scrollable .listing-select .property div.property-address span {
  width: 100%;
  font-size: 14px;
}

.sidebar.collapsible .scrollable .listing-select .property div.property-address a {
  font-size: 14px;
  font-weight: 600 !important;
}

.sidebar.collapsible .scrollable .listing-select .want div.property-address {
  width: 75% !important;
  flex: 0 0 75%;
}

.sidebar.collapsible.collapsed {
  width: 0;
}

.sidebar.collapsible.collapsed .content {
  opacity: 0;
  transition-delay: 0ms;
}

.sidebar .profile {
  width: 64px;
  margin-right: 12px;
}

.show-panel {
  display: block !important;
}

.filters {
  padding: 4px 20px;
  margin: 0px -20px;
  border-top: 1px solid #CED2DC;
  border-bottom: 1px solid #CED2DC;
  display: flex;
  justify-content: space-between;
  /** They won't vertically center for some reason **/
}

.filters label {
  margin: 0;
}

.filters label,
.filters .select,
.filters select {
  position: relative;
  top: -1px;
}

.filters .select,
.filters select {
  font-size: 12px;
  line-height: 1;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 0;
  font-weight: 600;
  padding-right: 0;
}

.filters .icon {
  font-size: 18px;
}

@media screen and (max-width: 1340px) {
  .sidebar.collapsible .content h3 {
    margin-bottom: 0;
  }

  .sidebar.collapsible .content textarea {
    margin-bottom: 0;
  }

  .sidebar.collapsible .content .post-type select {
    display: block;
    width: 100%;
    margin-bottom: 4px;
  }

  .sidebar.collapsible .content .post-type a.button {
    display: block;
    width: 100%;
    text-align: center;
  }

  .sidebar .profile {
    width: 40px;
    height: 40px;
    margin-right: 8px;
  }

  .sidebar .profile.large img {
    width: 40px;
    height: 40px;
  }

  .sidebar .listing-row .listing-col p,
  .sidebar .listing-row .listing-col a {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {
  .sidebar.collapsible {
    width: 33%;
  }

  .sidebar .listing-row .listing-col p,
  .sidebar .listing-row .listing-col a {
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .sidebar.collapsible {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-bottom: 16px;
    padding: 16px 0;
    position: static;
    overflow: auto;
    border-radius: 8px;
  }

  .sidebar.collapsible .collapse {
    display: none;
  }
}

@media (max-width: 575.98px) {
  #dashboard .sidebar.collapsible {
    padding: 40px 20px !important;
  }

  #dashboard .sidebar.collapsible .content {
    opacity: 1 !important;
    padding-bottom: 0;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section h3 {
    padding: 0;
    margin-bottom: 30px;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section form>label {
    padding: 0;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section form #activity-title {
    height: 60px;
    padding: 20px 13px 12px;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section form .post-type {
    justify-content: space-between;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section form .post-type a {
    justify-content: center;
    font-size: 16px;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section form .post-type #chose-post {
    padding: 7px 20px 8px 20px !important;
    margin: 0;
    background: #eff0f8;
  }

  #dashboard .sidebar.collapsible .content .scrollable .listing-row {
    padding-left: 0 !important;
  }

  #dashboard .sidebar.collapsible .content .scrollable .listing-row .profile {
    width: 64px;
    height: 64px;
    margin-right: 12px;
  }

  #dashboard .sidebar.collapsible .content .scrollable .listing-row .profile img {
    width: 64px !important;
    height: 64px !important;
  }

  #dashboard .sidebar.collapsible .content .scrollable .listing-row .listing-col p {
    font-size: 14px !important;
    padding-bottom: 10px;
  }

  #dashboard .sidebar.collapsible .content .scrollable .listing-row .listing-col p a {
    font-size: 14px !important;
  }

  #dashboard .sidebar.collapsible .content .scrollable .listing-row .listing-col .actions i {
    padding: 0;
  }
}

@media (max-width: 575.98px) {

  #edit-profile .page-content .left-col,
  #profile-listings .page-content .left-col {
    display: none;
  }
}

@media (max-width: 767.98px) {

  #edit-profile .page-header__wrap,
  #profile-listings .page-header__wrap {
    height: auto;
  }

  #edit-profile .page-header__wrap .page-controls,
  #profile-listings .page-header__wrap .page-controls {
    display: none;
  }

  #edit-profile .page-content .left-col .col-content,
  #edit-profile .page-content .left-col .middle-col .col-content--large,
  #edit-profile .page-content .middle-col .left-col .col-content--large,
  #profile-listings .page-content .left-col .col-content,
  #profile-listings .page-content .left-col .middle-col .col-content--large,
  #profile-listings .page-content .middle-col .left-col .col-content--large {
    padding: 0 !important;
  }

  #edit-profile .page-content .left-col .col-content ul.dropdown,
  #edit-profile .page-content .left-col .middle-col .col-content--large ul.dropdown,
  #edit-profile .page-content .middle-col .left-col .col-content--large ul.dropdown,
  #profile-listings .page-content .left-col .col-content ul.dropdown,
  #profile-listings .page-content .left-col .middle-col .col-content--large ul.dropdown,
  #profile-listings .page-content .middle-col .left-col .col-content--large ul.dropdown {
    border: 0 !important;
  }

  #edit-profile #edit-sidebar>ul {
    display: flex;
    overflow: hidden;
  }

  #edit-profile #edit-sidebar .page {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  #edit-profile #edit-sidebar .page>a {
    visibility: hidden;
  }

  #edit-profile #edit-sidebar .page #sidebar_dropdown_1 {
    display: flex !important;
    overflow-x: scroll;
    padding: 0;
    border-bottom: 1px solid #ced2dc;
  }

  #edit-profile #edit-sidebar .page #sidebar_dropdown_1 li {
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    margin-right: 15px;
    margin-bottom: 0;
  }

  #edit-profile #edit-sidebar .page #sidebar_dropdown_1 li.active-dot {
    padding: 0;
    padding-bottom: 20px;
  }

  #edit-profile #edit-sidebar .page #sidebar_dropdown_1 li.active-dot a {
    color: #eb2227;
  }

  #edit-profile #edit-sidebar .page #sidebar_dropdown_1 li.active-dot:before {
    display: block;
    position: absolute;
    border-radius: 0;
    width: 100%;
    height: 3px;
    bottom: 0;
    top: auto;
    margin: 0;
  }

  #profile-listings #edit-sidebar>ul {
    display: flex;
  }

  #profile-listings #edit-sidebar .page {
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  #profile-listings #edit-sidebar .page>a {
    visibility: hidden;
  }

  #profile-listings #edit-sidebar .page:not(:nth-child(6)) {
    display: none;
  }

  #profile-listings #edit-sidebar .page #sidebar_dropdown_2 {
    display: flex !important;
    overflow-x: scroll;
    padding: 0;
    border-bottom: 1px solid #ced2dc;
  }

  #profile-listings #edit-sidebar .page #sidebar_dropdown_2 li {
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    margin-right: 15px;
    margin-bottom: 0;
  }

  #profile-listings #edit-sidebar .page #sidebar_dropdown_2 li.active-dot {
    padding: 0;
    padding-bottom: 20px;
  }

  #profile-listings #edit-sidebar .page #sidebar_dropdown_2 li.active-dot a {
    color: #eb2227;
  }

  #profile-listings #edit-sidebar .page #sidebar_dropdown_2 li.active-dot:before {
    display: block;
    position: absolute;
    border-radius: 0;
    width: 100%;
    height: 3px;
    bottom: 0;
    top: auto;
    margin: 0;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {

  #edit-profile .page-header__wrap .page-controls,
  #profile-listings .page-header__wrap .page-controls {
    display: block;
  }
}

.listing-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  margin: 0 auto;
  border-bottom: 1px solid #CED2DC !important;
  padding: 50px 24px 20px;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .listing-header {
    white-space: normal;
    padding: 10px 20px 30px;
  }
}

.listing-header .row {
  align-items: center;
}

.listing-header a.button.gray.ghost.has-icon {
  font-size: 18px;
  padding: 10px 10px;
}

@media (max-width: 767.98px) {
  .listing-header a.button.gray.ghost.has-icon {
    width: 66px;
    padding: 5px 8px !important;
    margin-top: 15px;
  }

  .listing-header a.button.gray.ghost.has-icon span {
    font-size: 11px !important;
  }
}

.listing-header__inline-buttons {
  display: flex;
}

.listing-header__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 32px;
  width: 160px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  color: #4f536c;
  transition: all 0.3s ease-in-out;
}

.listing-header__button--small {
  width: 60px;
  margin-right: 10px;
}

.listing-header__button:hover {
  text-decoration: none;
  color: #fff;
  background: #4f536c;
  border-color: #4f536c;
}

.listing-header__button:hover svg {
  fill: #fff;
}

.listing-header .label-text {
  font-size: 16px;
  font-weight: 600;
}

.listing-header .select2,
.listing-header .select2--public,
.listing-header .select2--public2 {
  height: 50px;
  width: 190px;
}

.listing-header .select2 .select2-selection,
.listing-header .select2--public .select2-selection,
.listing-header .select2--public2 .select2-selection {
  font-size: 18px;
}

.listing-header h1 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0px;
  font-weight: 800;
  font-size: 24px;
  line-height: 50px;
}

@media (max-width: 767.98px) {
  .listing-header h1 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}

.listing-header .details {
  margin-top: 8px;
  display: flex;
  width: 100%;
  padding: 0.5em 0 0.8em;
  align-items: center;
  flex-wrap: wrap;
}

.listing-header .details .checkbox-group {
  margin-right: 20px;
}

.listing-header .details .checkbox-group label {
  margin: 0;
  padding: 0;
}

.listing-header .reports {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.listing-header .reports .select,
.listing-header .reports select {
  width: 190px;
  height: 50px;
  font-size: 14px;
  border-radius: 3px;
  border-color: #CED2DC;
  padding: 8px 16px;
}

.listing-header .reports .select span,
.listing-header .reports select span {
  position: relative;
  top: -1px;
}

.listing-header .reports .select .icon,
.listing-header .reports select .icon {
  position: relative;
  top: -1px;
  font-size: 7px;
  margin-left: 8px;
}

@media (max-width: 575.98px) {

  .listing-header .reports .select2,
  .listing-header .reports .select2--public,
  .listing-header .reports .select2--public2 {
    height: 35px;
  }

  .listing-header .reports .select2 .select2-selection__rendered,
  .listing-header .reports .select2--public .select2-selection__rendered,
  .listing-header .reports .select2--public2 .select2-selection__rendered {
    font-size: 12px !important;
  }
}

.listing-header .reports .select2 .selection,
.listing-header .reports .select2--public .selection,
.listing-header .reports .select2--public2 .selection {
  padding: 0 10px;
}

.listing-header .reports label {
  margin-right: 8px;
  font-size: 26px;
  margin-bottom: 0px;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  .listing-header .reports label {
    font-size: 14px !important;
  }
}

.listing-header .found-listings {
  display: inline-block;
  margin-right: 12px;
  font-weight: 600;
  margin-right: 20px;
}

.listing-header .found-listings .list-count {
  font-weight: 800;
}

.listing-header .listing-count {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  float: right;
}

.listing-header .listing-count .listing-text,
.listing-header .listing-count span {
  font-weight: 600;
  line-height: 30px;
}

.listing-header .listing-count .listing-countt {
  display: flex;
}

.listing-header .listing-count label {
  font-weight: 600;
  line-height: 30px;
  margin: 0 10px 0 30px;
}

.listing-header .listing-count .select2,
.listing-header .listing-count .select2--public,
.listing-header .listing-count .select2--public2 {
  width: 70px !important;
  height: 30px;
  border: 1px solid #ced2dc;
  border-radius: 3px;
}

.listing-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.listing-nav ul {
  display: inline-block;
  font-size: 0;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  list-style: none;
  margin: 0;
}

@media (max-width: 767.98px) {
  .listing-nav ul {
    height: 51px;
  }
}

.listing-nav ul li {
  display: inline-block;
  text-align: center;
}

.listing-nav ul li:hover {
  background-color: #ced2dc;
  border-color: #ced2dc;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.listing-nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 48px;
  color: #4F536C;
  box-sizing: border-box;
  border-right: 1px solid #ced2dc;
}

@media (max-width: 575.98px) {
  .listing-nav ul li a {
    border: 0 !important;
    border-right: 1px solid #ced2dc !important;
  }
}

.listing-nav ul li a .icon {
  font-size: 10px;
}

.listing-nav ul li.current span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 48px;
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
  border-right: 1px solid #ced2dc;
}

@media (max-width: 575.98px) {
  .listing-nav ul li.current span {
    border: 0 !important;
    border-right: 1px solid #ced2dc !important;
  }
}

.listing-nav ul li:last-child a {
  border-right: 0;
}

@media (max-width: 575.98px) {
  .listing-nav ul li:last-child a {
    border: 0 !important;
  }
}

.listing-tags {
  display: flex;
  list-style: none;
  position: relative;
  top: 0px;
  margin: 0;
}

.listing-tags a {
  margin-right: 10px;
}

.listing-tags a:last-child {
  margin-right: 0;
}

.listing-tags li {
  /* display: inline-block; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 60px;
  height: 30px;
  position: relative;
  /* line-height: 1; */
  font-weight: 400;
  /* margin: 5px 0; */
  color: #fff;
  background: #8BC53F;
  border-radius: 3px;
  font-size: 0;
  padding: 2px;
}

.listing-tags li.green {
  background: #8BC53F;
}

.listing-tags li.blue {
  background: #29ABE2;
}

.listing-tags li.pink {
  background: #FF1D4E;
}

.listing-tags li.red {
  background: #eb2227;
}

.listing-tags li.orange {
  background: #FFD115;
}

.listing-tags li.light-blue {
  background: #25a9e0;
}

.listing-tags li.purple {
  background: #662D91;
}

.listing-tags li.expired {
  background: #949BAF !important;
}

.listing-tags li.all {
  background: #fff;
  color: #131a25;
  border: 1px solid #ced2dc;
}

.listing-tags li.grey {
  background: #eff0f8 !important !important;
}

.listing-tags li.exclusive-gradient {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
  color: #fff;
  border: none;
}

.listing-tags li span {
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative;
            top: 1px;
            display: inline-block;
            font-size: 13px;
			width: 25px; */
  font-size: 16px;
  line-height: 30px;
}

.listing-tags li:last-child {
  margin-right: 0;
}

.listing-tags li::after {
  content: "";
  position: absolute;
  /* top: $spacing-xxs;
			bottom: $spacing-xxs;		
            right: calc(50% - 2px);
            margin-right: -1px;
            width: 1px; */
  background: #fff;
}

.arch-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.arch-right .listing-show {
  display: flex;
  align-items: center;
}

.arch-right .listing-show label {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  margin-right: 8px;
}

.arch-right .listing-show .select2,
.arch-right .listing-show .select2--public,
.arch-right .listing-show .select2--public2 {
  width: 70px !important;
  min-width: 70px;
  max-width: 70px !important;
  height: 30px;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  text-align: center;
  padding: 0;
}

.arch-right .listing-show .selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.arch-right .listing-show .selection::after {
  margin-left: 15px;
}

#select2-show-num-results {
  width: 70px;
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .listing-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .listing-header a.button.gray.ghost.has-icon {
    padding: 10px 16px !important;
  }

  .listing-header .row {
    align-items: center;
  }

  .listing-nav {
    width: 100%;
  }

  .listing-nav ul li span {
    font-size: 15px !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .listing-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .listing-header a.button.gray.ghost.has-icon {
    padding: 10px 16px !important;
  }

  .listing-header .row {
    align-items: center;
  }

  .arch-second-row .col-5,
  .arch-second-row .col-2 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }

  .listing-header a.button.gray.ghost.has-icon {
    width: 108px;
  }

  .button-group.inline-buttons .button {
    margin-right: 10px !important;
  }

  .listing-header .details .checkbox-group {
    max-width: 40%;
    flex: 0 0 40%;
  }

  .listing-header .found-listings {
    max-width: 50%;
    flex: 0 0 50%;
  }

  .listing-tags {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 20px;
  }

  .listing-nav {
    width: 100%;
  }

  .listing-nav ul li a {
    width: 42px !important;
    line-height: 42px !important;
  }

  .listing-nav ul li span {
    font-size: 15px !important;
  }
}

@media (max-width: 575.98px) {
  .page-id-76048.page-template-single-watchlist-php header.listing-header {
    padding: 20px 0 !important;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row {
    flex-direction: column;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row:last-child {
    border-top: 1px solid #ced2dc;
    margin-top: 20px !important;
    padding-top: 20px;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .button-group {
    justify-content: center;
    margin: 20px 0;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .button-group a.button.gray.ghost.has-icon {
    width: 66px;
    padding: 10px !important;
    margin-right: 10px;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .button-group a.button.gray.ghost.has-icon span {
    font-size: 10px !important;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .button-group a.button.gray.ghost.has-icon:last-child {
    margin-right: 0;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports {
    justify-content: center;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports label {
    font-size: 14px !important;
    margin-right: 10px;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports .select2,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports .select2--public,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports .select2--public2 {
    height: 35px;
    width: 200px !important;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports .select2 .select2-selection__rendered,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports .select2--public .select2-selection__rendered,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4 .reports .select2--public2 .select2-selection__rendered {
    font-size: 12px !important;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4:first-child {
    order: 2;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4:nth-child(2) {
    order: 1;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-4:last-child {
    order: 3;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: flex-end;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .listing-count,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .listing-count {
    padding: 0;
    display: flex;
    align-items: flex-end;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .listing-count .listing-count,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .listing-count .listing-count {
    display: flex;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .listing-count .listing-count label,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .listing-count .listing-count label {
    font-size: 12px !important;
    margin-bottom: 0;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .listing-count>span:first-child,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .listing-count>span:first-child {
    font-size: 12px !important;
    margin-bottom: 30px;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .form-checkk label,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .form-checkk label {
    margin-bottom: 0;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .form-checkk label:first-child,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .form-checkk label:first-child {
    margin-right: 10px;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .form-checkk .label-text,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .form-checkk .label-text {
    font-size: 12px !important;
    margin: 0;
    float: none;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .form-checkk input,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .form-checkk input {
    width: 0;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .details,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .details {
    margin: 0;
    padding: 0;
    justify-content: center;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .details .listing-tags,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .details .checkbox-group,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .details .listing-tags,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .details .checkbox-group {
    display: none;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .details .found-listings,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .details .found-listings {
    margin: 0;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-5 .details .found-listings span,
  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 .details .found-listings span {
    font-size: 16px !important;
  }

  .page-id-76048.page-template-single-watchlist-php header.listing-header .row .col-2 {
    margin: 20px 0;
  }

  .page-id-76048.page-template-single-watchlist-php .my-listing-result-main .container-fluid.listing-watchlist,
  .page-id-76048.page-template-single-watchlist-php .my-listing-result-main .listing-watchlist.container-sm,
  .page-id-76048.page-template-single-watchlist-php .my-listing-result-main .listing-watchlist.container-md,
  .page-id-76048.page-template-single-watchlist-php .my-listing-result-main .listing-watchlist.container-lg,
  .page-id-76048.page-template-single-watchlist-php .my-listing-result-main .listing-watchlist.container-xl {
    padding: 0;
  }

  .page-id-3537.page-template-single-my-listing-result .listing-result-report .reports,
  .page-id-2270.page-template-single-search-result .listing-result-report .reports,
  .page-id-83354.page-template-single-want-result .listing-result-report .reports {
    justify-content: center;
  }

  .page-id-3537.page-template-single-my-listing-result .listing-result-report .reports label,
  .page-id-2270.page-template-single-search-result .listing-result-report .reports label,
  .page-id-83354.page-template-single-want-result .listing-result-report .reports label {
    font-size: 12px !important;
  }

  .listing-result-btn .button-group.inline-buttons {
    text-align: center;
  }

  .page-id-83354.page-template-single-want-result .listing-header {
    padding-left: 0;
    padding-right: 0;
  }

  .page-id-83354.page-template-single-want-result .listing-tags {
    display: none;
  }

  .page-id-83354.page-template-single-want-result .found-listings {
    margin: 0;
    text-align: center;
    width: 100%;
  }

  .page-id-83354.page-template-single-want-result .details {
    text-align: center;
  }

  .page-id-83354.page-template-single-want-result .details .checkbox-group.inline-block {
    position: absolute;
    top: 146px;
    z-index: 9;
  }

  .page-id-83354.page-template-single-want-result .details .checkbox-group.inline-block .label-text {
    font-size: 12px !important;
  }

  .page-id-83354.page-template-single-want-result .listing-result-detail,
  .page-id-83354.page-template-single-want-result .listing-result-count {
    padding: 0;
  }

  .page-id-83354.page-template-single-want-result .listing-result-detail .listing-count,
  .page-id-83354.page-template-single-want-result .listing-result-count .listing-count {
    align-items: flex-end;
  }

  .page-id-83354.page-template-single-want-result .listing-result-detail .listing-count .listing-text,
  .page-id-83354.page-template-single-want-result .listing-result-count .listing-count .listing-text {
    position: initial !important;
    margin-bottom: 35px;
  }

  .page-id-83354.page-template-single-want-result .listing-header {
    padding-bottom: 10px;
  }

  .page-id-83354.page-template-single-want-result .oneLineHeader .sort .header-label-want-type,
  .page-id-83354.page-template-single-want-result .oneLineHeader .sort .header-label-bedroom,
  .page-id-83354.page-template-single-want-result .oneLineHeader .sort .header-label-bath,
  .page-id-83354.page-template-single-want-result .oneLineHeader .sort .header-label-sqft,
  .page-id-83354.page-template-single-want-result .oneLineHeader .sort .header-label-days,
  .page-id-83354.page-template-single-want-result .oneLineHeader .sort .header-label-pool {
    display: none;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt {
    min-height: 120px;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt:nth-child(even) {
    background: #eff0f8;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-type,
  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-bedroom,
  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-bath,
  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-sqft,
  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-days,
  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-pool {
    display: none;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-row-col {
    padding: 0 10px;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .label-text {
    border: 0;
    background: transparent;
    flex-direction: column;
    display: flex;
    align-items: center;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .label-text:before {
    width: auto;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-number {
    max-width: 14%;
    flex: 0 0 14%;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-status {
    max-width: 14%;
    flex: 0 0 14%;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-status span {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-price {
    max-width: 25%;
    flex: 0 0 25%;
    justify-content: flex-end;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-price a {
    font-size: 12px;
  }

  .page-id-83354.page-template-single-want-result .oneLine .excerpt .want-address a {
    font-size: 12px;
  }
}

li.gray-star svg {
  fill: #ced2dc;
  position: relative;
}

li.half-star svg {
  fill: url(#star-gradient);
}

#listing-post {
  width: 100%;
}

.single-listing {
  width: 100%;
}

.single-listing p {
  font-size: 18px;
  font-weight: 600;
}

.single-listing .listing-price {
  font-size: 32px;
  font-weight: 600;
}

.single-listing .card .card-section,
.single-listing #dashboard .card .card-section--header,
#dashboard .single-listing .card .card-section--header {
  /* padding: 40px 39px 50px; */
  padding: 70px 40px;
  border: 1px solid #ced2dc;
  box-shadow: none;
}

.single-listing .card .cell p {
  font-size: 16px;
  font-weight: 600;
}

.single-listing .card .card-meta h3 {
  font-size: 24px;
}

.single-listing .card .card-content,
.single-listing .card .card-content--top {
  padding-top: 28px;
}

.single-listing .card.dark p {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 100 !important;
}

.single-listing.draft-listing.single-listing.draft-listing {
  background-color: #eff0f8;
  padding-bottom: 40px;
}

.single-listing.draft-listing.single-listing.draft-listing .card .card-section,
.single-listing.draft-listing.single-listing.draft-listing #dashboard .card .card-section--header,
#dashboard .single-listing.draft-listing.single-listing.draft-listing .card .card-section--header,
.single-listing.draft-listing.single-listing.draft-listing #dashboard .card .card-section--header {
  background-color: #eff0f8;
  border-color: #CED2DC;
}

.single-listing.private-listing.single-listing.private-listing {
  background-color: #131a25;
  color: #eff0f8 !important;
  padding-bottom: 40px;
}

.single-listing.private-listing.single-listing.private-listing .fancy-box {
  border-color: #343a4c;
}

.single-listing.private-listing.single-listing.private-listing .fancy-box input[type="checkbox"]+label::before {
  border-color: #343a4c;
}

.single-listing.private-listing.single-listing.private-listing .fancy-box input[type="checkbox"]+label span {
  color: #eff0f8;
}

.single-listing.private-listing.single-listing.private-listing .fancy-box input[type="checkbox"]:checked+label:before {
  color: #eff0f8;
}

.single-listing.private-listing.single-listing.private-listing .private-listing-label {
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
}

.single-listing.private-listing.single-listing.private-listing .listing_name {
  color: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .blob {
  border-color: #343a4c !important;
}

.single-listing.private-listing.single-listing.private-listing .blob .icon {
  color: #eff0f8;
}

.single-listing.private-listing.single-listing.private-listing .card .card-section,
.single-listing.private-listing.single-listing.private-listing #dashboard .card .card-section--header,
#dashboard .single-listing.private-listing.single-listing.private-listing .card .card-section--header,
.single-listing.private-listing.single-listing.private-listing #dashboard .card .card-section--header {
  background: #131a25;
  border-color: #343a4c;
}

.single-listing.private-listing.single-listing.private-listing .card .card-content .card-row .cell,
.single-listing.private-listing.single-listing.private-listing .card .card-content--top .card-row .cell,
.single-listing.private-listing.single-listing.private-listing .card .card-content--top .card-row .cell {
  border-color: #343a4c !important;
}

.single-listing.private-listing.single-listing.private-listing .map .map-wrapper {
  border-color: #343a4c !important;
}

.single-listing.private-listing.single-listing.private-listing .remark-details__content {
  border-color: #343a4c;
}

.single-listing.private-listing.single-listing.private-listing .inline-b.with-spacing.cf span {
  color: #eff0f8;
}

.single-listing.private-listing.single-listing.private-listing .inline-b.with-spacing.cf:hover span:not(.alert) {
  color: #131a25;
}

.single-listing.private-listing.single-listing.private-listing b {
  color: #eff0f8;
}

.single-listing.private-listing.single-listing.private-listing svg {
  fill: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .agent-wrap .agent-contacts a,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-contacts a,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-contacts a,
.single-listing.private-listing.single-listing.private-listing .agent-wrap .agent-contacts span,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-contacts span,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-contacts span {
  color: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .agent-wrap .agent-info_name span,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-info_name span,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-info_name span {
  color: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .agent-wrap .agent-contacts svg,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-contacts svg,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-contacts svg {
  fill: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .agent-wrap .agent-info_name p,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-info_name p,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-info_name p {
  color: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .agent-wrap .agent-info_reviews a,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-info_reviews a,
.single-listing.private-listing.single-listing.private-listing .agent-wrap--single .agent-info_reviews a {
  color: #eff0f8 !important;
}

.single-listing.private-listing.single-listing.private-listing .agent-reviews_icon svg polygon {
  stroke: #eff0f8;
}

.listing-image__container {
  position: relative;
  min-height: 600px;
  background-position: center center !important;
  background-size: cover !important;
  border-radius: 5px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .listing-image__container {
    min-height: 400px;
  }
}

.listing_name {
  color: #4f536c !important;
  font-size: 18px;
  font-weight: 600;
}

.pls-pipe {
  font-weight: 800;
  font-size: 18px;
}

.listing-price-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.listing-price-wrap .listing-price_text {
  text-align: right;
  margin-right: 20px;
}

.listing-price-wrap .color-block {
  padding: 18px;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-title-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
  align-items: center;
}

.post-title-header .prop-addrs {
  max-width: 60vw;
  font-size: 32px;
}

.post-title-header svg {
  width: 38px;
  height: auto;
}

.listing-services-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  height: 100%;
}

.listing-services-wrap .blob {
  flex: 0 0 32%;
  max-width: 32%;
  height: 48%;
  line-height: 1.5;
}

.listing-services-wrap .blob__unit {
  font-size: 14px;
}

.listing-services-wrap .blob p {
  text-align: center;
}

.post-actions a {
  margin-right: 10px;
}

.post-actions a .icon {
  position: relative;
  top: -4px;
  color: #949baf;
  margin-right: 9px;
}

.post-actions span {
  font-size: 18px;
  text-transform: none;
  font-weight: 600;
}

.post-actions .small .icon {
  font-size: 26px;
}

.post-actions .alert {
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  top: 0px !important;
}

.listing-text .listing-remarks,
.listing-text .agent-remarks {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 30px;
}

.area-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ced2dc;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.area-wrapper span {
  font-size: 18px;
  line-height: 28px;
  color: #131a25;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.area-wrapper a {
  font-size: 24px;
  line-height: 40px;
  color: #131a25;
  font-weight: 800;
  text-transform: uppercase;
}

.area-wrapper svg {
  width: 64px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.area-wrapper .area-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.area-wrapper .most-area {
  margin-bottom: 50px;
}

.agent-view {
  /*
	.pls-pipe {
		border: none;
		padding-left: 0px;
		margin-left: 0px;
	}
	*/
}

.agent-view .agent-hidden {
  display: none !important;
}

.agent-view .agent-visible {
  display: block !important;
}

.agent-view .agent-visible-fix {
  flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.agent-view .agent-hidden.btn-style-list {
  margin-top: 30px;
}

.agent-view .kelcey-row-agent .info-listing svg {
  height: 60px;
  width: auto;
}

.agent-view .kelcey-row-agent .info-listing .blob {
  justify-content: space-between !important;
  padding: 30px 8px !important;
}

.agent-view .kelcey-row-agent .info-listing p {
  margin-bottom: 0px !important;
}

.agent-view .area-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agent-wrap,
.agent-wrap--single {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #1a2330;
  min-height: 300px;
  border-radius: 10px;
  margin: 60px 0 0;
  padding: 40px;
}

.agent-wrap--single {
  margin: 60px 0 0;
}

.agent-wrap li,
.agent-wrap--single li {
  list-style-type: none;
}

.agent-wrap .agent-info,
.agent-wrap--single .agent-info {
  display: flex;
  align-items: center;
  flex: 0 0 50%;
  max-width: 50%;
}

.agent-wrap .agent-info ul,
.agent-wrap--single .agent-info ul {
  display: flex;
  margin-bottom: 0px;
}

.agent-wrap .agent-info ul li.gray-star svg,
.agent-wrap--single .agent-info ul li.gray-star svg {
  fill: #ced2dc;
}

.agent-wrap .agent-info_name span,
.agent-wrap--single .agent-info_name span {
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.agent-wrap .agent-info_name span:hover,
.agent-wrap--single .agent-info_name span:hover {
  color: #25a9e0;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.agent-wrap .agent-info_name p,
.agent-wrap--single .agent-info_name p {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff !important;
  margin-top: 14px;
}

.agent-wrap .agent-info_rate,
.agent-wrap--single .agent-info_rate {
  margin: 20px 0px;
}

.agent-wrap .agent-info_rate svg,
.agent-wrap--single .agent-info_rate svg {
  width: 27px;
  height: 27px;
  fill: #ff1d4e;
}

.agent-wrap .agent-info_rate li,
.agent-wrap--single .agent-info_rate li {
  margin-right: 5px;
}

.agent-wrap .agent-info_image,
.agent-wrap--single .agent-info_image {
  flex: 0 0 220px;
  max-width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 40px;
}

.agent-wrap .agent-info_image img,
.agent-wrap--single .agent-info_image img {
  width: 100%;
  height: 100%;
}

.agent-wrap .agent-info_reviews a,
.agent-wrap--single .agent-info_reviews a {
  font-size: 18px;
  color: #fff !important;
  font-weight: 600;
  order: 2;
}

.agent-wrap .agent-info_reviews a i,
.agent-wrap--single .agent-info_reviews a i {
  font-style: normal;
  font-weight: 800;
}

.agent-wrap .agent-info_reviews polygon,
.agent-wrap--single .agent-info_reviews polygon {
  fill: transparent;
}

.agent-wrap .agent-info_reviews polygon:nth-child(2),
.agent-wrap--single .agent-info_reviews polygon:nth-child(2) {
  fill: transparent;
}

.agent-wrap .agent-info_reviews polygon:nth-child(2),
.agent-wrap--single .agent-info_reviews polygon:nth-child(2) {
  stroke: #fff;
}

.agent-wrap .agent-info_reviews a:hover+.agent-reviews_icon polygon,
.agent-wrap--single .agent-info_reviews a:hover+.agent-reviews_icon polygon {
  fill: #fff;
}

.agent-wrap .agent-info_reviews a:hover+.agent-reviews_icon polygon:nth-child(2),
.agent-wrap--single .agent-info_reviews a:hover+.agent-reviews_icon polygon:nth-child(2) {
  fill: #ff1d4e;
}

.agent-wrap .agent-info_reviews a:hover+.agent-reviews_icon polygon:nth-child(2),
.agent-wrap--single .agent-info_reviews a:hover+.agent-reviews_icon polygon:nth-child(2) {
  stroke: #ff1d4e;
}

.agent-wrap .agent-info_reviews-number,
.agent-wrap--single .agent-info_reviews-number {
  display: flex;
}

.agent-wrap .agent-info_reviews-number .agent-reviews_icon,
.agent-wrap--single .agent-info_reviews-number .agent-reviews_icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  order: 1;
}

.agent-wrap .agent-info_reviews-number .agent-reviews_icon svg,
.agent-wrap--single .agent-info_reviews-number .agent-reviews_icon svg,
.agent-wrap .agent-info_reviews-number .agent-reviews_icon polygon,
.agent-wrap--single .agent-info_reviews-number .agent-reviews_icon polygon {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-out;
}

.agent-wrap .agent-contacts,
.agent-wrap--single .agent-contacts {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 55px;
}

.agent-wrap .agent-contacts a,
.agent-wrap--single .agent-contacts a,
.agent-wrap .agent-contacts span,
.agent-wrap--single .agent-contacts span {
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
}

.agent-wrap .agent-contacts a i,
.agent-wrap--single .agent-contacts a i,
.agent-wrap .agent-contacts span i,
.agent-wrap--single .agent-contacts span i {
  font-style: normal;
}

.agent-wrap .agent-contacts ul,
.agent-wrap--single .agent-contacts ul {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 0px;
}

.agent-wrap .agent-contacts ul li,
.agent-wrap--single .agent-contacts ul li {
  flex: 0 0 48%;
  max-width: 48%;
  display: flex;
  align-items: center;
  padding: 10px 0px;
}

.agent-wrap .agent-contacts svg,
.agent-wrap--single .agent-contacts svg {
  fill: #fff;
  height: 26px;
  width: auto;
}

.agent-wrap .agent-contacts .agent-contacts_image,
.agent-wrap--single .agent-contacts .agent-contacts_image {
  flex: 0 0 26px;
  max-width: 26px;
  height: 26px;
  text-align: center;
  margin-right: 26px;
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .post-content .kelcey-row .left-col {
    order: 1;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .post-content .kelcey-row .info-listing {
    order: 2;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .post-content .kelcey-row .map,
  .post-content .kelcey-row .area-col {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    height: 400px;
    margin-top: 30px;
  }

  .listing-price-wrap {
    margin-top: 0px;
  }

  .agent-wrap .agent-contacts a,
  .agent-wrap--single .agent-contacts a,
  .agent-wrap .agent-contacts span,
  .agent-wrap--single .agent-contacts span {
    font-size: 15px;
  }

  .agent-wrap .agent-contacts,
  .agent-wrap--single .agent-contacts {
    padding-left: 0px;
  }

  .agent-wrap .agent-info_image,
  .agent-wrap--single .agent-info_image {
    flex: 0 0 180px;
    max-width: 180px;
    height: 180px;
  }

  .agent-wrap .agent-info_name span,
  .agent-wrap--single .agent-info_name span {
    font-size: 26px;
  }

  .agent-wrap .agent-info_name p,
  .agent-wrap--single .agent-info_name p {
    font-size: 14px;
    margin-top: 10px;
  }

  .area-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }

  .area-wrapper .most-area {
    margin-bottom: 0px;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .agent-view .area-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .other-areas {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .other-areas a {
    margin: 0 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
  .uppercase.heavy.prop-addrs {
    font-size: 24px !important;
  }

  .listing_name {
    font-size: 15px !important;
  }

  .single-listing p,
  .pls-pipe {
    font-size: 15px !important;
  }

  .single-listing .listing-price {
    font-size: 26px !important;
  }

  .listing-price-wrap .color-block {
    padding: 12px !important;
  }

  .post-content .kelcey-row .left-col {
    order: 1;
    flex: 0 0 60%;
    max-width: 60%;
  }

  .post-content .kelcey-row .info-listing {
    order: 2;
    flex: 0 0 40%;
    max-width: 40%;
  }

  .post-content .kelcey-row .map,
  .post-content .kelcey-row .area-col {
    order: 3;
    flex: 0 0 100%;
    max-width: 100%;
    height: 400px;
    margin-top: 30px;
  }

  .listing-price-wrap {
    margin-top: 0px;
  }

  .blob h4 {
    font-size: 18px !important;
  }

  .listing-text .btn-style-list p {
    padding: 15px !important;
  }

  .single-listing .card .card-meta h3 {
    font-size: 17px !important;
  }

  .single-listing .card-section p,
  .single-listing #dashboard .card .card-section--header p,
  #dashboard .card .single-listing .card-section--header p {
    font-size: 13px !important;
  }

  .agent-wrap,
  .agent-wrap--single {
    min-height: auto;
  }

  .agent-wrap .agent-contacts a,
  .agent-wrap--single .agent-contacts a,
  .agent-wrap .agent-contacts span,
  .agent-wrap--single .agent-contacts span {
    font-size: 13px;
  }

  .agent-wrap .agent-contacts,
  .agent-wrap--single .agent-contacts {
    padding-left: 20px;
  }

  .agent-wrap .agent-contacts .agent-contacts_image,
  .agent-wrap--single .agent-contacts .agent-contacts_image {
    margin-right: 10px;
  }

  .agent-wrap .agent-info_image,
  .agent-wrap--single .agent-info_image {
    flex: 0 0 140px;
    max-width: 140px;
    height: 140px;
  }

  .agent-wrap .agent-info_name span,
  .agent-wrap--single .agent-info_name span {
    font-size: 22px;
  }

  .agent-wrap .agent-info_name p,
  .agent-wrap--single .agent-info_name p {
    font-size: 13px !important;
    margin-top: 0px;
  }

  .agent-wrap .agent-info_rate,
  .agent-wrap--single .agent-info_rate {
    margin: 15px 0px;
  }

  .agent-wrap .agent-info_reviews a,
  .agent-wrap--single .agent-info_reviews a {
    font-size: 15px;
  }

  .agent-wrap .agent-info_reviews-number .agent-reviews_icon,
  .agent-wrap--single .agent-info_reviews-number .agent-reviews_icon {
    width: 25px;
    height: 25px;
  }

  #reviewsModal .modal-content {
    height: 550px;
    padding: 20px 30px;
  }

  #reviewsModal .reviews-info {
    margin: 10px 0px;
  }

  #reviewsModal .modal-reviews-back ul {
    margin: 20px 0px;
  }

  #reviewsModal .modal-dialog-centered {
    height: 100vh;
  }

  .area-wrapper {
    flex-direction: row;
    justify-content: flex-start;
  }

  .area-wrapper .most-area {
    margin-bottom: 0px;
    flex: 0 0 30%;
    max-width: 30%;
  }

  .agent-view .area-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .other-areas {
    flex: 0 0 70%;
    max-width: 70%;
  }

  .other-areas a {
    margin: 0 10px;
  }

  .area-wrapper svg {
    margin-bottom: 15px;
  }

  .area-wrapper span {
    margin-bottom: 0px;
  }
}

.container-excertps {
  width: 100%;
}

.sort {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  background: #CED2DC;
  justify-content: space-between;
}

.sort>div {
  padding-right: 16px;
  padding-left: 16px;
}

.sort span {
  font-weight: 700;
  color: #4f536c;
}

.sort a {
  font-size: 16px;
}

.sort .sort-arrows {
  display: inline-block;
  width: 10px;
  line-height: 0.9;
  position: relative;
  top: 3px;
}

.sort .sort-arrows span {
  display: block;
  font-size: 12px;
  cursor: pointer;
}

.sort .sort-arrows span+span {
  margin-top: -3px;
}

.sort .number-label {
  display: flex;
  justify-content: center;
  flex: 0 0 6%;
  max-width: 6%;
}

@media (max-width: 767.98px) {
  .sort .number-label {
    justify-content: flex-start;
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.sort .status-label {
  flex: 0 0 4%;
  max-width: 4%;
}

.sort .baths-label,
.sort .sqft-label,
.sort .year-label,
.sort .pool-label {
  flex: 0 0 6%;
  max-width: 6%;
}

.sort .lot-label {
  flex: 0 0 6.3%;
  max-width: 6.3%;
}

.sort .bedroom-label {
  flex: 0 0 5%;
  max-width: 5%;
}

.sort .price-sqft-label {
  flex: 0 0 7%;
  max-width: 7%;
}

.sort .price-label {
  flex: 0 0 7.6%;
  max-width: 7.6%;
}

@media (max-width: 767.98px) {
  .sort .price-label {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.sort .photo-label {
  flex: 0 0 13%;
  max-width: 13%;
}

.sort .address-label {
  flex: 0 0 12%;
  max-width: 12%;
}

@media (max-width: 767.98px) {
  .sort .address-label {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

.sort .city-label {
  flex: 0 0 15%;
  max-width: 15%;
}

.sort.user-sort {
  justify-content: space-between;
}

.sort.user-sort span {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .sort.user-sort span {
    font-weight: 800;
  }
}

.sort.user-sort .photo-label {
  max-width: 6.9%;
  flex: 0 0 6.9%;
}

.sort.user-sort .name-label {
  max-width: 17.5%;
  flex: 0 0 17.5%;
}

@media (max-width: 767.98px) {
  .sort.user-sort .name-label {
    max-width: 60% !important;
    flex: 0 0 60% !important;
    padding-left: 0;
  }
}

.sort.user-sort .agency-label {
  max-width: 25.3%;
  flex: 0 0 25.3%;
}

.sort.user-sort .state-label,
.sort.user-sort .date-label,
.sort.user-sort .listings-label,
.sort.user-sort #price {
  max-width: 12%;
  flex: 0 0 12%;
}

@media (max-width: 767.98px) {

  .sort.user-sort .state-label,
  .sort.user-sort .date-label,
  .sort.user-sort .listings-label,
  .sort.user-sort #price {
    max-width: 40% !important;
    flex: 0 0 40% !important;
    padding-right: 0;
  }
}

.user .sort {
  top: 116px;
}

.sort.new .edit-label {
  flex: 0 0 5%;
  max-width: 5%;
}

.sort.new .city-label {
  flex: 0 0 13%;
  max-width: 13%;
}

.container-excertps__user .property .property-city {
  flex: 0 0 13%;
  max-width: 13%;
}

.property {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .property {
    min-height: 120px !important;
  }
}

.property.excerpt {
  padding: 20px 16px;
}

.property.excerpt:nth-child(even) {
  background: #EFF0F8;
}

.property.excerpt:last-child {
  margin-bottom: 0;
}

.property.excerpt>div {
  padding-right: 16px;
  padding-left: 16px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.property.excerpt>div a {
  color: #25a9e0;
  text-decoration: none;
}

.property.excerpt>div a:hover,
.property.excerpt>div a:visited {
  color: #25a9e0 !important;
}

.property.excerpt>div.property-edit a {
  color: #343A4C;
}

.property.excerpt>div.property-edit a:hover {
  color: #713895;
}

.property.private-listing.property.private-listing {
  background-color: #131a25;
  border-bottom: 1px solid #343a4c;
}

.property.private-listing.property.private-listing .property-city,
.property.private-listing.property.private-listing .property-bedrooms,
.property.private-listing.property.private-listing .property-baths,
.property.private-listing.property.private-listing .property-size,
.property.private-listing.property.private-listing .property-size-cost,
.property.private-listing.property.private-listing .property-lot,
.property.private-listing.property.private-listing .property-year,
.property.private-listing.property.private-listing .property-pool {
  color: #eff0f8;
}

.property.private-listing.property.private-listing .property-select .label-text {
  color: #eff0f8;
}

.property.private-listing.property.private-listing .property-select .checked span {
  background-color: #fff;
}

.property.private-listing.property.private-listing .property-select .checked span::before {
  border-color: #343a4c;
}

.property.private-listing.property.private-listing .property-select label {
  background-color: #131a25;
  border-color: #343a4c;
  color: #eff0f8;
}

.property.private-listing.property.private-listing input[type="checkbox"] {
  background-color: #131a25;
  border-color: #343a4c;
}

.property span,
.property a {
  font-size: 18px;
  font-weight: 600;
}

.property .property-select {
  flex: 0 0 6%;
  max-width: 6%;
}

@media (max-width: 767.98px) {
  .property .property-select {
    flex: 0 0 8%;
    max-width: 8%;
  }
}

.property .property-image {
  position: relative;
  flex: 0 0 13%;
  max-width: 13%;
  height: 120px;
}

@media (max-width: 767.98px) {
  .property .property-image {
    flex: 0 0 22%;
    max-width: 22%;
    padding: 0 !important;
  }
}

.property .property-image img {
  display: block;
  height: 120px !important;
  width: 180px !important;
}

@media (max-width: 767.98px) {
  .property .property-image img {
    height: 60px !important;
  }
}

.property .property-image-small {
  max-width: 20px;
  max-height: 20px;
}

.property .property-image-text {
  color: white;
  font-size: 12px !important;
  margin-left: 10px;
}

.property .property-private-listing svg {
  margin-right: 10px;
}

.property .property-private-listing svg path {
  fill: #25a9e0;
}

.property .property-tag {
  flex: 0 0 4%;
  max-width: 4%;
}

.property .property-tag span {
  display: block;
  background: #8cc63f;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
}

.property .property-tag span.exclusive-gradient {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
  color: #fff;
  border: none;
}

.property .property-tag span.expired {
  background: #949BAF !important !important;
}

.property .property-tag span.orange {
  background: #FFD115;
}

.property .property-tag span.green {
  background: #8BC53F;
}

.property .property-tag span.blue {
  background: #29ABE2;
}

.property .property-tag span.red {
  background: #FF1D4E !important;
}

.property .property-address {
  flex: 0 0 12%;
  max-width: 12%;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .property .property-address {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.property .property-city {
  flex: 0 0 15%;
  max-width: 15%;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .property .property-city {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.property .property-cost {
  flex: 0 0 7.6%;
  max-width: 7.6%;
}

@media (max-width: 767.98px) {
  .property .property-cost {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.property .property-baths,
.property .property-size,
.property .property-pool,
.property .property-year {
  flex: 0 0 6%;
  max-width: 6%;
}

.property .property-lot {
  flex: 0 0 6.3%;
  max-width: 6.3%;
}

.property .property-bedrooms,
.property .property-edit {
  flex: 0 0 5%;
  max-width: 5%;
}

.property .property-size-cost {
  flex: 0 0 7%;
  max-width: 7%;
}

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

@media (max-width: 767.98px) {
  .name-agency-list {
    max-width: 137px;
    overflow: hidden;
  }

  .name-agency-list p {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .user-list.ulist .user-mobile-view .photo {
    margin-right: 23px;
    width: 52px;
  }

  .user-list.ulist .user-mobile-view .total-value {
    margin-left: auto;
  }

  .user-list.ulist .user-mobile-view.even {
    background: #131a25;
  }

  .listing-watchlist {
    padding: 0;
  }

  .listing-watchlist.oneLineHeader .sort {
    padding: 10px 16px !important;
  }

  .listing-watchlist.oneLineHeader .sort .price-label {
    flex: 0 0 16%;
    max-width: 16%;
  }

  .listing-watchlist.oneLineHeader .sort .address-label {
    flex: 0 0 32%;
    max-width: 32%;
  }

  .listing-watchlist .property.excerpt {
    padding: 30px 20px;
  }

  .listing-watchlist .property.excerpt .property-select label {
    border: 0;
    background: transparent;
    width: auto;
    color: #131a25;
  }

  .listing-watchlist .property.excerpt .property-select label .label-text {
    flex-direction: column-reverse;
    align-items: center;
  }

  .listing-watchlist .property.excerpt .property-address,
  .listing-watchlist .property.excerpt .property-city {
    width: 100% !important;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .listing-watchlist .property.excerpt .property-cost {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .listing-watchlist .property.excerpt .property-image {
    flex: 0 0 16%;
    max-width: 16%;
  }

  .listing-watchlist .property.excerpt .property-image img {
    height: 50px !important;
  }
}

/*
@media only screen and (min-width : 1440px) and (max-width : 1919px) {

    .sort span{
        font-size: 14px;
    }

    .sort .sort-arrows {
        top: 5px;
    }

    .property span, .property a {
        font-size: 16px;
    }

    .sort .city-label, .property .property-city{
        flex: 0 0 8%;
        max-width: 8%;
    }

    .property .property-image, .sort .photo-label{
        flex: 0 0 15%;
        max-width: 15%;
    }

    .sort{
        padding: 8px 15px;
    }

   .property.excerpt{
        padding: 20px 16px;
    }

    .property .property-cost, .sort .price-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .property .property-tag span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .sort.new .city-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .container-excertps__user .property .property-city {
        flex: 0 0 9%;
        max-width: 9%;
    }

}

@media only screen and (min-width : 1200px) and (max-width : 1439px) {

    .sort span{
        font-size: 12px;
    }

    .sort .sort-arrows {
        top: 5px;
    }

    .property span, .property a {
        font-size: 14px;
    }

    .sort .city-label, .property .property-city{
        flex: 0 0 8%;
        max-width: 8%;
    }

    .property .property-image, .sort .photo-label{
        flex: 0 0 15%;
        max-width: 15%;
    }

    .sort{
        padding: 8px 15px;
    }

    .property.excerpt{
        padding: 20px 16px;
    }

    .property .property-cost, .sort .price-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .property .property-tag span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .sort.new .city-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .container-excertps__user .property .property-city {
        flex: 0 0 9%;
        max-width: 9%;
    }

}

*/
.sub-nav {
  background: #131a25;
  border-bottom: 1px solid #343a4c;
  color: #fff;
}

.sub-nav__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 120px;
}

@media (max-width: 767.98px) {
  .sub-nav__container {
    height: auto;
    padding: 20px 0;
  }

  .sub-nav__container>.row {
    justify-content: center;
  }

  .sub-nav__container .sub-nav__save {
    max-width: 100%;
    display: none;
  }

  .sub-nav__container .sub-nav__location {
    max-width: 100%;
    flex: 0 0 100%;
    justify-content: center;
    padding: 0;
  }

  .sub-nav__container .sub-nav__location .sub-nav__area {
    display: flex;
  }

  .sub-nav__container .sub-nav__search--center {
    margin: 20px 0;
  }

  .sub-nav__container .sub-nav__search--center form {
    padding: 0;
  }

  .sub-nav__container .sub-nav__search--center form label {
    display: none;
  }

  .sub-nav__container form {
    margin: 0;
  }

  .sub-nav__container form #search-agent-container {
    width: 100%;
    justify-content: center;
  }

  .sub-nav__container form #search-agent-container label {
    font-size: 14px;
    margin-right: 10px;
  }

  .sub-nav__container form #search-agent-container input {
    width: 200px;
    height: 35px;
  }
}

.sub-nav__location {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.sub-nav__search-icon {
  width: 40px;
  height: 40px;
}

.sub-nav__area {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 0 20px;
}

.sub-nav__search,
.sub-nav__search--center {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-inline-start: 40px;
  padding: 0;
}

.sub-nav__search--center {
  justify-content: center;
}

@media (max-width: 767.98px) {

  .sub-nav__search,
  .sub-nav__search--center {
    justify-content: center;
    padding-inline-start: 0;
  }
}

.sub-nav__search__form {
  display: flex;
  align-items: center;
  margin-right: 50px;
  padding-bottom: 0;
}

.sub-nav__search__form #search-agent-container {
  display: flex;
  align-items: center;
  position: relative;
}

.sub-nav__search__label {
  font-size: 18px;
  font-weight: 600;
  margin: 0 20px 0 0;
  color: #fff;
}

.sub-nav__search__input {
  width: 280px;
  height: 50px;
  border: none !important;
  margin: 0;
  padding: 0 20px !important;
}

.sub-nav__search__input::-moz-placeholder {
  font-size: 15px;
  font-weight: 600;
  line-height: auto;
  color: #949baf;
}

.sub-nav__search__input::placeholder {
  font-size: 15px;
  font-weight: 600;
  line-height: auto;
  color: #949baf;
}

.sub-nav__search__button {
  background: #8bc53f;
  width: 160px;
  height: 50px;
  border: none;
  border-radius: 3px;
}

.sub-nav__search__button:hover {
  background: #37b34a;
}

@media (max-width: 767.98px) {

  .sub-nav__search form,
  .sub-nav__search--center form,
  .sub-nav__search__input {
    width: 100%;
    padding: 0 20px;
  }
}

.sub-nav__agent {
  display: flex;
  align-items: center;
}

.sub-nav__agent__icon {
  width: 40px;
  height: 40px;
  margin: 0 20px 0 50px;
}

.sub-nav__agent__icon path {
  fill: #fff;
}

.sub-nav__agent__count {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0;
}

@media (max-width: 767.98px) {
  .sub-nav__agent {
    display: none;
  }
}

.sub-nav__title,
.sub-nav__title--center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 34px;
  padding: 0;
}

.sub-nav__title--center {
  justify-content: center;
}

.sub-nav__navigation {
  border-bottom: 1px solid #ced2dc;
  height: 50px;
  font-weight: 600;
  box-sizing: content-box;
}

.sub-nav__settings {
  display: flex;
  align-items: center;
  height: 50px;
}

.sub-nav__settings .settings__label {
  display: flex;
  font-size: 15px;
  font-weight: 600;
  color: #4f536c;
}

.sub-nav__settings .settings__label svg,
.sub-nav__settings .settings__label img {
  width: 20px;
  height: 20px;
}

.sub-nav__settings .settings__label svg path,
.sub-nav__settings .settings__label img path {
  fill: #4f536c;
}

.sub-nav__settings .settings__icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

@media (max-width: 767.98px) {
  .sub-nav__filter {
    width: 100%;
    overflow: hidden;
  }
}

.sub-nav__filter .filter {
  display: flex;
  justify-content: flex-end;
  height: 50px;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .sub-nav__filter .filter {
    justify-content: center;
    width: 100%;
  }
}

.sub-nav__filter .filter__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  border-left: 1px solid #ced2dc;
}

@media (max-width: 767.98px) {
  .sub-nav__filter .filter__item {
    width: unset;
    padding: 0 20px;
  }
}

.sub-nav__filter .filter__item:last-child {
  border-right: 1px solid #ced2dc;
}

.sub-nav__filter .filter__item__label {
  font-size: 15px;
  font-weight: 600;
}

.sub-nav__filter .filter__item.active .filter__carat svg {
  transform: rotate(180deg);
}

.sub-nav__filter .filter__item a {
  color: #4f536c;
  font-weight: 600;
  text-decoration: none;
}

.sub-nav__filter .filter .filter__carat svg {
  height: auto;
  fill: #4f536c;
  margin-left: 6px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: all 0.1s ease-in-out;
}

.sub-nav__filter .filter__secondary .property-type__label {
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 0;
  color: #4f536c;
}

.sub-nav__breadcrumbs {
  /* border-top: 1px solid $mischka; */
  border-bottom: 1px solid #ced2dc;
  height: 50px;
  box-sizing: content-box;
}

.sub-nav__pagination {
  color: #4f536c;
}

.sub-nav__pagination__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
}

.sub-nav__pagination__control,
.sub-nav__pagination__control--disabled {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-color: #ced2dc;
  border-style: solid;
  border-width: 0 1px 0 1px;
  transition: all 0.2s ease-in-out;
}

.sub-nav__pagination__control:last-of-type,
.sub-nav__pagination__control--disabled:last-of-type {
  border-bottom: 0;
}

.sub-nav__pagination__control--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.sub-nav__pagination__control--disabled svg {
  fill: #ced2dc;
  transition: all 0.1s ease-in-out;
}

.sub-nav__pagination__control:not(.sub-nav__pagination__control--disabled):hover,
.sub-nav__pagination__control--disabled:not(.sub-nav__pagination__control--disabled):hover {
  background-color: #ced2dc;
  border-color: #ced2dc;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.sub-nav__pagination__control:not(.sub-nav__pagination__control--disabled):hover svg,
.sub-nav__pagination__control--disabled:not(.sub-nav__pagination__control--disabled):hover svg,
.sub-nav__pagination__control:not(.sub-nav__pagination__control--disabled):hover rect,
.sub-nav__pagination__control--disabled:not(.sub-nav__pagination__control--disabled):hover rect,
.sub-nav__pagination__control:not(.sub-nav__pagination__control--disabled):hover polygon,
.sub-nav__pagination__control--disabled:not(.sub-nav__pagination__control--disabled):hover polygon {
  fill: #fff;
  transition: all 0.1s ease-in-out;
}

.sub-nav__pagination__page,
.sub-nav__pagination__page--single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  border-color: #ced2dc;
  border-style: solid;
  border-width: 0;
}

.sub-nav__pagination__page--single {
  border-width: 0 1px 0 1px;
}

.sub-nav__save {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.user-info-container .sub-nav__agent__count {
  font-size: 18px;
  font-weight: 800;
}

.user-info-container .sub-nav .sub-nav__search__label {
  font-size: 18px;
}

.user-info-container .sub-nav__search__form input:not([type=range]) {
  font-size: 16px;
}

.user-info-container .sub-nav__search__input::-moz-placeholder {
  font-weight: 600;
  color: #949baf;
  font-size: 16px;
}

.user-info-container .sub-nav__search__input::placeholder {
  font-weight: 600;
  color: #949baf;
  font-size: 16px;
}

/*
@media only screen and (min-width : 1440px) and (max-width : 1919px) {

    .sub-nav__agent__icon{
        margin-left: 30px;
    }

    .sub-nav__search__input{
        margin-right: 30px;
    }
}

@media only screen and (min-width : 1200px) and (max-width : 1439px) {


    .sub-nav__agent__icon{
        margin-left: 30px;
    }

    .sub-nav__search__input{
        margin-right: 30px;
    }
}
*/
.user-info {
  position: relative;
  z-index: 20;
  background: #131a25;
  color: #fff;
}

.user-info .constrained {
  max-width: 1400px;
  margin: 0 auto;
}

.user-info .profile-info {
  padding: 64px 0;
}

.user-info .profile-info img {
  border-radius: 50%;
  height: 600px;
  width: 600px !important;
}

.user-info .profile-info .icon {
  margin-right: 12px;
}

.user-info .profile-info .basic-info h3 {
  text-transform: uppercase;
}

.user-info .profile-info .basic-info p {
  margin-bottom: 8px;
}

.user-info .profile-info .basic-info .state {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 32px;
  border: #949BAF 1px solid;
  border-radius: 5px;
  font-size: 21px;
}

.user-info .profile-info .user-contact {
  margin: 20px 0 32px;
}

.user-info .profile-info .user-contact h3 {
  font-size: 24px;
  margin: 0 0 12px;
}

.user-info .profile-info .user-contact p a {
  font-weight: 400;
  color: #fff;
}

.user-info .profile-info .user-contact p a:hover {
  color: #8cc63f;
}

.user-info .profile-info .social {
  font-size: 0;
  margin-bottom: 8px;
}

.user-info .profile-info .social .social-icon {
  color: #CED2DC;
  display: inline-block;
  margin: 0 20px 20px 0;
}

.user-info .profile-info .social .social-icon .icon {
  font-size: 42px;
}

.user-info .profile-info .social .social-icon.inactive {
  opacity: .08;
}

.user-info .profile-info .member-data p {
  margin-bottom: 8px;
}

.profile-bar {
  z-index: 10;
  position: sticky;
  top: 0;
  margin-top: -116px;
  background: #131a25;
  color: #fff;
  padding: 20px 0;
}

.profile-bar .constrained {
  max-width: 1400px;
  margin: 0 auto;
}

.profile-bar .bar-profile-basic {
  float: left;
}

.profile-bar .bar-profile-basic img {
  max-width: 76px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 24px;
}

.profile-bar .bar-profile-basic h3 {
  display: inline-block;
  margin-right: 24px;
}

.profile-bar .member-data {
  float: right;
  margin-top: 21px;
}

.profile-bar .member-data p {
  display: inline-block;
  margin-bottom: 0;
  margin-left: 20px;
}

.profile-search {
  background: #131a25;
  color: #fff;
  padding: 16px 0;
  border-bottom: 1px solid #343A4C;
}

.profile-search .agent-count {
  float: left;
  padding: 16px 0;
}

.profile-search .agent-count span {
  padding-left: 12px;
  font-size: 21px;
}

.profile-search .agent-search {
  float: right;
}

.profile-search .agent-search label {
  font-size: 21px;
  font-weight: 400;
  padding: 16px 0;
  margin: 0 12px 0 0;
}

.profile-search .agent-search input[type="text"] {
  border-radius: 3px;
  background: #fff;
  padding: 8px 12px;
}

.user-list {
  background: #1a2330;
  color: #fff;
}

.user-list .user-excerpt {
  display: flex;
  align-items: center;
  padding: 20px 32px;
  justify-content: space-between;
}

.user-list .user-excerpt>div {
  padding-right: 16px;
  padding-left: 16px;
}

.user-list .user-excerpt>div:first-child {
  padding-left: 0;
}

.user-list .user-excerpt a {
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #25a9e0;
}

.user-list .user-excerpt a:hover {
  text-decoration: underline;
}

.user-list .user-excerpt:nth-child(even) {
  background: #131a25;
}

.user-list .user-excerpt p {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}

.user-list .user-excerpt .photo {
  max-width: calc(6.9% - 16px);
  flex: 0 0 6.9%;
}

.user-list .user-excerpt .photo img {
  width: 100%;
  max-width: 100px;
  border-radius: 50%;
}

.user-list .user-excerpt .name {
  max-width: 17.5%;
  flex: 0 0 17.5%;
}

.user-list .user-excerpt .name a {
  text-transform: uppercase;
}

.user-list .user-excerpt .agency {
  max-width: 25.3%;
  flex: 0 0 25.3%;
}

.user-list .user-excerpt .agency p {
  text-transform: uppercase;
}

.user-list .user-excerpt .state,
.user-list .user-excerpt .date-joined,
.user-list .user-excerpt .listings,
.user-list .user-excerpt .total-value {
  max-width: 12%;
  flex: 0 0 12%;
}

/*
@media only screen and (min-width : 1440px) and (max-width : 1919px) { 

    .sort.user-sort .photo-label, .user-list .user-excerpt .photo{
        flex: 0 0 6.9%;
        max-width: 6.9%;
    }

    .sort.user-sort .agency-label, .user-list .user-excerpt .agency {
        max-width: 20%;
        flex: 0 0 20%;
    }

    .user-list .user-excerpt{
        padding: 20px 15px;
    }

}

@media only screen and (min-width : 1200px) and (max-width : 1439px) {    
    
    .sort.user-sort .photo-label, .user-list .user-excerpt .photo{
        flex: 0 0 6.9%;
        max-width: 6.9%;
    }

    .sort.user-sort .agency-label, .user-list .user-excerpt .agency {
        max-width: 17%;
        flex: 0 0 17%;
    }

    .sort.user-sort .name-label, .user-list .user-excerpt .name{
        max-width: 20%;
        flex: 0 0 20%;
    }

    .user-list .user-excerpt p, .user-list .user-excerpt a{
        font-size: 16px;
    }

    .user-list .user-excerpt .photo img{
        max-width: 70px;
    }

    .user-list .user-excerpt{
        padding: 20px 15px;
    }    
}
*/
.woocommerce-account .woocommerce .account-navigation {
  padding: 40px 0;
  border-right: 1px solid #CED2DC;
}

.woocommerce-account .woocommerce .account-navigation ul {
  margin: 0;
}

.woocommerce-account .woocommerce .account-navigation ul li {
  padding: 12px 0;
}

.woocommerce-account .woocommerce .account-navigation ul li:first-child {
  padding-top: 0;
}

.woocommerce-account .woocommerce .account-navigation ul li:last-child {
  padding-bottom: 0;
}

.woocommerce-account .woocommerce .account-navigation ul li.is-active a {
  padding-left: 20px;
}

.woocommerce-account .woocommerce .account-navigation ul li.is-active a::after {
  opacity: 1;
}

.woocommerce-account .woocommerce .account-navigation ul li a {
  display: block;
  text-transform: uppercase;
  color: #131a25;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.woocommerce-account .woocommerce .account-navigation ul li a::after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1d4d;
  left: 0;
  top: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.woocommerce-account .woocommerce .account-navigation ul li a:hover {
  color: #ff1d4d;
  padding-left: 20px;
}

.woocommerce-account .woocommerce .account-navigation ul li a:hover::after {
  opacity: 1;
}

iframe.affiliate {
  min-height: 800px;
  width: 100%;
}

.footer-public {
  background: #131a25;
  padding: 100px 0 0;
}

@media (max-width: 575.98px) {
  .footer-public {
    padding-top: 40px;
  }
}

.footer-public__background {
  max-width: 1400px;
  background: #131a25 url("/wp-content/themes/premise/assets/public/images/SVG/footer-skyline.svg") no-repeat;
  background-size: contain;
  background-position: center bottom;
  background-blend-mode: multiply;
  margin: 0 auto 2px;
}

@media (max-width: 767.98px) {
  .footer-public__background {
    background-size: 600%;
  }
}

.footer-public__container {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  grid-template-rows: auto;
  grid-template-areas: "footer__logo footer__column--2 footer__column--3 footer__column--4 footer__column--social-icons";
}

@media (max-width: 1199.98px) {
  .footer-public__container {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .footer-public__container {
    display: flex;
    flex-wrap: wrap;
  }
}

.footer-public__column,
.footer-public__column--2,
.footer-public__column--3,
.footer-public__column--4,
.footer-public__column--social-icons {
  color: #4f536c;
  padding-bottom: 120px;
}

@media (max-width: 1199.98px) {

  .footer-public__column,
  .footer-public__column--2,
  .footer-public__column--3,
  .footer-public__column--4,
  .footer-public__column--social-icons {
    width: 25%;
    padding-bottom: 70px;
  }
}

@media (max-width: 575.98px) {

  .footer-public__column,
  .footer-public__column--2,
  .footer-public__column--3,
  .footer-public__column--4,
  .footer-public__column--social-icons {
    padding-bottom: 40px;
  }
}

.footer-public__column--2 {
  grid-area: footer__column--2;
}

@media (max-width: 575.98px) {
  .footer-public__column--2 {
    width: 50%;
  }
}

.footer-public__column--3 {
  grid-area: footer__column--3;
}

@media (max-width: 575.98px) {
  .footer-public__column--3 {
    width: 50%;
  }
}

.footer-public__column--4 {
  grid-area: footer__column--4;
}

@media (max-width: 575.98px) {
  .footer-public__column--4 {
    width: 50%;
  }
}

.footer-public__column--social-icons {
  grid-area: footer__column--social-icons;
}

@media (max-width: 1199.98px) {
  .footer-public__column--social-icons {
    width: 100%;
    padding-bottom: 0;
  }

  .footer-public__column--social-icons .textwidget {
    display: flex;
  }
}

@media (max-width: 575.98px) {
  .footer-public__column--social-icons {
    width: 50%;
  }

  .footer-public__column--social-icons .textwidget {
    display: block;
  }
}

.footer-public__column--social-icons ul {
  display: flex;
}

.footer-public__column--social-icons ul li {
  width: 50px;
  margin-right: 10px;
  list-style-type: none;
}

.footer-public__column .widget-title,
.footer-public__column--2 .widget-title,
.footer-public__column--3 .widget-title,
.footer-public__column--4 .widget-title,
.footer-public__column--social-icons .widget-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media (max-width: 575.98px) {

  .footer-public__column .widget-title,
  .footer-public__column--2 .widget-title,
  .footer-public__column--3 .widget-title,
  .footer-public__column--4 .widget-title,
  .footer-public__column--social-icons .widget-title {
    margin-bottom: 20px;
  }
}

.footer-public__column ul,
.footer-public__column--2 ul,
.footer-public__column--3 ul,
.footer-public__column--4 ul,
.footer-public__column--social-icons ul {
  margin-bottom: 0;
}

.footer-public__column ul li,
.footer-public__column--2 ul li,
.footer-public__column--3 ul li,
.footer-public__column--4 ul li,
.footer-public__column--social-icons ul li {
  list-style-type: none;
  margin-bottom: 10px;
}

.footer-public__column ul li a,
.footer-public__column--2 ul li a,
.footer-public__column--3 ul li a,
.footer-public__column--4 ul li a,
.footer-public__column--social-icons ul li a {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  color: #4f536c;
}

@media (max-width: 575.98px) {

  .footer-public__column ul li a,
  .footer-public__column--2 ul li a,
  .footer-public__column--3 ul li a,
  .footer-public__column--4 ul li a,
  .footer-public__column--social-icons ul li a {
    font-size: 16px;
  }
}

.footer-public__column ul li a:hover,
.footer-public__column--2 ul li a:hover,
.footer-public__column--3 ul li a:hover,
.footer-public__column--4 ul li a:hover,
.footer-public__column--social-icons ul li a:hover {
  color: #949baf;
  text-decoration: underline;
}

@media (max-width: 1199.98px) {
  .footer-public__logo {
    width: 25%;
  }
}

@media (max-width: 575.98px) {
  .footer-public__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 40px;
  }
}

.footer-public__logo img,
.footer-public__logo svg {
  width: 100%;
}

.footer-public__sub {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  margin-bottom: -1px;
}

@media (max-width: 575.98px) {
  .footer-public__sub {
    padding-bottom: 50px;
  }
}

.footer-public__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(19, 26, 37, 0.2);
  mix-blend-mode: multiply;
}

.footer-public__disclaimer {
  font-size: 11px;
  font-weight: 600;
  line-height: 22px;
  text-align: justify;
  color: #4f536c;
  mix-blend-mode: normal;
  margin-bottom: 0;
  padding-top: 50px;
}

.footer-members {
  background-color: #fff;
  padding: 80px 0;
  border-top: 1px solid #ced2dc;
}

@media (max-width: 575.98px) {
  .footer-members {
    padding: 60px 0;
  }
}

.footer-members__container {
  display: flex;
  justify-content: center;
}

.footer-members__logo svg {
  width: 130px;
  height: 130px;
  fill: #ff1d4e;
}

@media (max-width: 575.98px) {
  .footer-members__logo svg {
    width: 100px;
    height: 100px;
  }
}

.footer-members__copyright {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  text-transform: uppercase;
  color: #4f536c;
  margin: 50px 0 30px;
}

@media (max-width: 991.98px) {
  .footer-members__copyright {
    display: inline-block;
    margin: 30px 0 30px;
  }
}

.footer-members__nav {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

@media (max-width: 575.98px) {
  .footer-members__nav {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.footer-members__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
}

.footer-members__link a {
  font-size: 14px;
  font-weight: 600;
  line-height: 16.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #4f536c;
}

.footer-members__link a:hover {
  text-decoration: underline;
  color: #4f536c;
}

.footer-members__social-media {
  display: flex;
  justify-content: center;
  list-style-type: none;
}

@media (max-width: 575.98px) {
  .footer-members__social-media {
    margin: 0;
  }

  .footer-members__social-media svg {
    width: 40px;
    height: 40px;
  }
}

.footer-members__social-icon {
  margin-right: 10px;
}

.footer-members__social-icon svg {
  path-fill: #ff1d4e;
}

@media (max-width: 575.98px) {
  .footer-members__social-icon {
    padding: 50px 0;
  }
}

li.pagination__control .pagination__link,
li.pagination__control--disabled .pagination__link {
  padding: 20px;
}

.container-excertps {
  width: 100%;
}

.sort {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  background: #CED2DC;
  justify-content: space-between;
  /*
    .bedroom-label {
        flex: 0 0 5%;
        max-width: 5%;
	}
	
    .price-sqft-label {
        flex: 0 0 7%;
        max-width: 7%;
	}
	*/
  /*
    .photo-label {
        flex: 0 0 13%;
        max-width: 13%;
	}
	*/
  /*
    .city-label {
        flex: 0 0 15%;
        max-width: 15%;
	}
	*/
}

.sort>div {
  padding-right: 16px;
  padding-left: 16px;
}

.sort span {
  font-weight: 700;
  color: #4F536C;
}

.sort a {
  font-size: 16px;
}

.sort .sort-arrows {
  display: inline-block;
  width: 10px;
  line-height: .9;
  position: relative;
  top: 3px;
}

.sort .sort-arrows span {
  display: block;
  font-size: 12px;
  cursor: pointer;
}

.sort .sort-arrows span+span {
  margin-top: -3px;
}

.sort .header-label-number {
  display: flex;
  justify-content: center;
  flex: 0 0 6%;
  max-width: 6%;
}

.sort .header-label-status {
  flex: 0 0 4%;
  max-width: 4%;
}

.sort .header-label-bath,
.sort .header-label-bedroom,
.sort .header-label-sqft,
.sort .header-label-days,
.sort .header-label-pool {
  flex: 0 0 6%;
  max-width: 6%;
}

.sort .header-label-want-type {
  flex: 0 0 6.3%;
  max-width: 6.3%;
}

.sort .header-label-price {
  flex: 0 0 7.6%;
  max-width: 7.6%;
}

.sort .header-label-address {
  flex: 0 0 12%;
  max-width: 12%;
}

.sort.user-sort {
  justify-content: space-between;
}

.sort.user-sort span {
  font-weight: 600;
}

.sort.user-sort .photo-label {
  max-width: 6.9%;
  flex: 0 0 6.9%;
}

.sort.user-sort .name-label {
  max-width: 17.5%;
  flex: 0 0 17.5%;
}

.sort.user-sort .agency-label {
  max-width: 25.3%;
  flex: 0 0 25.3%;
}

.sort.user-sort .state-label,
.sort.user-sort .date-label,
.sort.user-sort .listings-label,
.sort.user-sort #price {
  max-width: 12%;
  flex: 0 0 12%;
}

.user .sort {
  top: 116px;
}

.sort.new .edit-label {
  flex: 0 0 5%;
  max-width: 5%;
}

.sort.new .city-label {
  flex: 0 0 13%;
  max-width: 13%;
}

.container-excertps__user .want .want-city {
  flex: 0 0 13%;
  max-width: 13%;
}

.wants-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*
    .want-city {
        flex: 0 0 15%;
        max-width: 15%;
        text-transform: uppercase;
	}
	*/
  /*
    .want-size-cost {
        flex: 0 0 7%;
        max-width: 7%;
	}

	*/
}

.wants-row.excerpt {
  padding: 20px 16px;
}

.wants-row.excerpt:nth-child(even) {
  background: #EFF0F8;
}

.wants-row.excerpt:last-child {
  margin-bottom: 0;
}

.wants-row.excerpt>div {
  padding-right: 16px;
  padding-left: 16px;
}

.wants-row.excerpt>div a {
  color: #25a9e0;
  text-decoration: none;
}

.wants-row.excerpt>div a:hover,
.wants-row.excerpt>div a:visited {
  color: #25a9e0 !important;
}

.wants-row.excerpt>div.want-edit a {
  color: #343A4C;
}

.wants-row.excerpt>div.want-edit a:hover {
  color: #713895;
}

.wants-row span,
.wants-row a {
  font-size: 18px;
  font-weight: 600;
}

.wants-row .property-select,
.wants-row .want-select {
  flex: 0 0 6%;
  max-width: 6%;
}

.wants-row .want-image {
  flex: 0 0 13%;
  max-width: 13%;
  position: relative;
}

.wants-row .want-image img {
  max-width: 100%;
  display: block;
  height: 120px !important;
  width: auto !important;
}

.wants-row .want-status {
  flex: 0 0 4%;
  max-width: 4%;
}

.wants-row .want-status span {
  display: block;
  background: #8cc63f;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
}

.wants-row .want-address {
  flex: 0 0 12%;
  max-width: 12%;
  text-transform: uppercase;
}

.wants-row .want-price {
  flex: 0 0 7.6%;
  max-width: 7.6%;
}

.wants-row .want-bath,
.wants-row .want-bedroom,
.wants-row .want-sqft,
.wants-row .want-days,
.wants-row .want-pool {
  flex: 0 0 6%;
  max-width: 6%;
}

.wants-row .want-type {
  flex: 0 0 6.3%;
  max-width: 6.3%;
}

.wants-row .want-edit {
  flex: 0 0 5%;
  max-width: 5%;
}

.wants-row .want-edit {
  text-align: right;
}

/*
@media only screen and (min-width : 1440px) and (max-width : 1919px) {

    .sort span{
        font-size: 14px;
    }

    .sort .sort-arrows {
        top: 5px;
    }

    .wants-row span, .wants-row a {
        font-size: 16px;
    }

    .sort .city-label, .wants-row .want-city{
        flex: 0 0 8%;
        max-width: 8%;
    }

    .wants-row .want-image, .sort .photo-label{
        flex: 0 0 15%;
        max-width: 15%;
    }

    .sort{
        padding: 8px 16px;
    }

   .wants-row.excerpt{
        padding: 20px 16px;
    }

    .wants-row .want-cost, .sort .price-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .wants-row .want-tag span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .sort.new .city-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .container-excertps__user .wants-row .want-city {
        flex: 0 0 9%;
        max-width: 9%;
    }

}

@media only screen and (min-width : 1200px) and (max-width : 1439px) {

    .sort span{
        font-size: 12px;
    }

    .sort .sort-arrows {
        top: 5px;
    }

    .wants-row span, .wants-row a {
        font-size: 14px;
    }

    .sort .city-label, .wants-row .want-city{
        flex: 0 0 8%;
        max-width: 8%;
    }

    .wants-row .want-image, .sort .photo-label{
        flex: 0 0 15%;
        max-width: 15%;
    }

    .sort{
        padding: 8px 16px;
    }

    .wants-row.excerpt{
        padding: 20px 16px;
    }

    .wants-row .want-cost, .sort .price-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .wants-row .want-tag span {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .sort.new .city-label{
        flex: 0 0 9%;
        max-width: 9%;
    }

    .container-excertps__user .wants-row .want-city {
        flex: 0 0 9%;
        max-width: 9%;
    }
}
*/
/** Components **/
#ui-id-1 {
  position: absolute !important;
  display: none;
  top: 70px !important;
  right: 0 !important;
  left: unset !important;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  padding: 0;
  border-radius: 5px;
  width: 220px !important;
  border: none;
  line-height: 50px;
  color: #52566f;
  z-index: 40;
}

#ui-id-1::before {
  content: '';
  border-bottom: 5px solid #fff !important;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: -5px;
  right: 24px;
}

#ui-id-1>li {
  border: none;
  padding-left: 20px !important;
  padding-right: 20px !important;
  white-space: nowrap;
  width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #4f536c;
}

#ui-id-1>li:hover {
  background: #eff0f8;
  border: 0 !important;
  font-size: 16px !important;
}

#ui-id-1>li:hover:first-child {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

#ui-id-1 .ui-state-active,
#ui-id-1 .ui-state-focus {
  margin: unset !important;
  font-weight: 600 !important;
  background: #eff0f8;
}

#ui-id-1 .ui-state-active:first-child,
#ui-id-1 .ui-state-focus:first-child {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

#ui-id-1 .ui-state-active:last-child,
#ui-id-1 .ui-state-focus:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 10px;
  width: 10px;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg viewPort='0 0 8 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3e%3cline x1='1' y1='8' x2='8' y2='1' stroke='%23ff1d4e' stroke-width='2'/%3e%3cline x1='1' y1='1' x2='8' y2='8' stroke='%23ff1d4e' stroke-width='2'/%3e%3c/svg%3e");
}

#ui-id-1::before {
  border-bottom: 10px solid #eff0f8;
}

@keyframes icon-background-expand {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes icon-background-fade {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.state-appear {
  animation: modalComeIn 0.25s ease;
  visibility: visible;
  /* to keep @ final state */
  opacity: 1;
}

.state-leave {
  animation: modalHeadOut 0.35s ease 0.1s;
  visibility: visible;
  opacity: 0;
}

@keyframes modalComeIn {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8, 0.8);
  }

  65.5% {
    transform: scale(1.03, 1.03);
  }

  100% {
    visibility: visible;
    opacity: 1;
    transform: scale(1, 1);
  }
}

@keyframes modalHeadOut {
  0% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1, 1);
  }

  100% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(35px) scale(0.97, 0.97);
  }
}

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

[class*='pls-']:before {
  display: inline-block;
  font-family: 'The NLS';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.pls-logo-solid:before {
  content: '\0041';
}

.pls-logo:before {
  content: '\0042';
}

.pls-carat:before {
  content: '\0043';
}

.pls-notifications:before {
  content: '\0044';
}

.pls-support:before {
  content: '\0045';
}

.pls-watchlist:before {
  content: '\0046';
}

.pls-agents:before {
  content: '\0047';
}

.pls-search:before {
  content: '\0048';
}

.pls-add-want:before {
  content: '\0049';
}

.pls-add-property:before {
  content: '\004a';
}

.pls-dashboard:before {
  content: '\004b';
}

.pls-baths:before {
  content: '\004c';
}

.pls-beds:before {
  content: '\004d';
}

.pls-buyer:before {
  content: '\004e';
}

.pls-chat:before {
  content: '\004f';
}

.pls-dropdown:before {
  content: '\0050';
}

.pls-email:before {
  content: '\0051';
}

.pls-facebook:before {
  content: '\0052';
}

.pls-gallery:before {
  content: '\0053';
}

.pls-instagram:before {
  content: '\0054';
}

.pls-last-seen:before {
  content: '\0055';
}

.pls-license:before {
  content: '\0056';
}

.pls-linkedin:before {
  content: '\0057';
}

.pls-listing-active:before {
  content: '\0058';
}

.pls-listing-contract:before {
  content: '\0059';
}

.pls-listing-exclusive:before {
  content: '\005a';
}

.pls-listing-exclusive-alt:before {
  content: '\0061';
}

.pls-listing-expired:before {
  content: '\0062';
}

.pls-listing-pending:before {
  content: '\0063';
}

.pls-listing-sold:before {
  content: '\0064';
}

.pls-marker:before {
  content: '\0065';
}

.pls-member:before {
  content: '\0066';
}

.pls-members:before {
  content: '\0067';
}

.pls-mobile:before {
  content: '\0068';
}

.pls-next:before {
  content: '\0069';
}

.pls-phone:before {
  content: '\006a';
}

.pls-pool:before {
  content: '\006b';
}

.pls-previous:before {
  content: '\006c';
}

.pls-price:before {
  content: '\006d';
}

.pls-property:before {
  content: '\006e';
}

.pls-property-alt:before {
  content: '\006f';
}

.pls-rating:before {
  content: '\0070';
}

.pls-reviews:before {
  content: '\0071';
}

.pls-right-bracket:before {
  content: '\0072';
}

.pls-right-bracket-mirage:before {
  content: '\0073';
}

.pls-settings:before {
  content: '\0074';
}

.pls-sqft:before {
  content: '\0075';
}

.pls-step-back:before {
  content: '\0076';
}

.pls-step-forward:before {
  content: '\0077';
}

.pls-the-pls-logo:before {
  content: '\0078';
}

.pls-twitter:before {
  content: '\0079';
}

.pls-type:before {
  content: '\007a';
}

.pls-youtube:before {
  content: '\0030';
}

.pls-zillow:before {
  content: '\0031';
}

.icon {
  vertical-align: middle;
  font-size: 20px;
}

.icon~span {
  vertical-align: middle;
}

.icon.large {
  font-size: 48px;
}

.small .icon {
  font-size: 22px;
}

@media (max-width: 767.98px) {
  .small .icon {
    font-size: 16px;
  }
}

.small .icon.icon-house {
  font-size: 16px;
}

.actions .action {
  display: inline-block;
  margin-right: 12px;
}

.actions .action .icon {
  font-size: 14px;
}

.dropdown-caret {
  content: url(../img/caret.svg);
  position: relative;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: all 0.1s ease-in-out;
  margin-bottom: 1px;
}

.pls-back-arrow {
  fill: #4f536c;
}

a.button,
.button {
  cursor: pointer;
  display: inline-block;
  border-radius: 5px;
  color: #fff;
  padding: 8px 24px;
  font-size: 12px;
}

a.button .icon,
.button .icon {
  margin-right: 8px;
}

a.button.dark-gray,
.button.dark-gray {
  background: #131a25;
}

a.button.dark-gray:hover,
.button.dark-gray:hover {
  background: #713895;
}

a.button.gray,
.button.gray {
  background: #4F536C;
}

a.button.gray:hover,
.button.gray:hover {
  background: #713895;
}

a.button.light-gray,
.button.light-gray {
  background: #949BAF;
}

a.button.ghost,
.button.ghost {
  background: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  margin-right: 8px;
  width: auto;
}

a.button.ghost.gray,
.button.ghost.gray {
  background: #fff;
  border: 1px solid #CED2DC;
  color: #4F536C;
  padding: 12px 16px;
}

a.button.ghost.gray .icon,
.button.ghost.gray .icon {
  color: #949BAF;
}

a.button.ghost.gray.active,
.button.ghost.gray.active {
  background: #fff;
  border-color: #8cc63f;
}

a.button.ghost.gray:hover,
.button.ghost.gray:hover {
  background: none;
  border-color: #8cc63f;
  color: #8cc63f;
}

a.button.ghost.gray.no-bg,
.button.ghost.gray.no-bg {
  background: transparent;
}

a.button.ghost.gray.no-bg:hover,
.button.ghost.gray.no-bg:hover {
  border-color: #ff1d4d;
  color: #ff1d4d;
}

a.button.has-icon i,
.button.has-icon i {
  margin-right: 4px;
}

a.button.bold,
.button.bold {
  padding: 20px 28px;
  display: block;
  font-size: 16px;
  font-weight: 800;
}

a.button.bold .icon,
.button.bold .icon {
  font-size: 34px;
}

a.button.bold span,
.button.bold span {
  position: relative;
  top: 1px;
  left: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

a.button.narrow,
.button.narrow {
  padding: 8px 16px;
}

a.button.wide,
.button.wide {
  width: 100%;
  border-radius: 3px;
}

a.button:hover,
.button:hover {
  color: #fff;
  text-decoration: none;
}

a.button.green,
.button.green {
  padding: 12px 20px;
  background: #8cc63f;
  color: #fff;
  font-weight: 400;
}

a.button.green:hover,
.button.green:hover {
  background: #25a9e0;
}

a.button.red,
.button.red {
  padding: 8px 32px;
  border: 1px solid #ff1d4d;
  background: #ff1d4d;
  color: #fff;
  font-weight: 600;
  border-radius: 3px;
  font-size: 14px;
}

a.button.red:hover,
.button.red:hover {
  background: #713895;
  border-color: #713895;
}

.button-group.inline-buttons .button {
  display: inline-block;
  margin-right: 16px;
}

.button-group.inline-buttons .button:last-child {
  margin-right: 0;
}

.button-group-toggle {
  display: flex;
}

.button-group-toggle .btn-toggle {
  width: 100%;
}

.button-group-toggle .btn-toggle:last-child {
  margin-right: 0;
}

.button-group-toggle .btn-toggle input {
  display: none;
}

.button-group-toggle .btn-toggle input+.checkmark {
  height: 12px;
  margin-right: 10px;
  margin-bottom: 6px;
}

.button-group-toggle .btn-toggle input:not(:checked)+.checkmark {
  display: none;
}

.button-group-toggle .btn-toggle input:checked+.checkmark+span {
  color: black;
}

.button-group-toggle .btn-toggle span {
  line-height: 40px;
  font-size: 18px;
}

body #wp-live-chat-header {
  display: none;
}

@media screen and (max-width: 991px) {
  a.button.bold {
    padding: 16px;
    font-size: 14px;
  }

  a.button.bold .icon {
    font-size: 24px;
    margin-right: 4px;
  }

  a.button.bold span {
    top: -1px;
  }
}

@media screen and (max-width: 767px) {
  a.button.add-listing-button {
    margin-bottom: 16px;
  }
}

.btn.btn-add {
  border: 1px solid #CED2DC;
  font-size: 12px;
  padding: 7px 25px;
  margin-right: 0px;
  color: #4f536c;
  font-weight: 600;
}

.handlebars {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  background: #fff;
  border: 1px solid #ced2dc;
  border-right: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  margin-left: -21px;
  margin-top: -1px;
  cursor: grab;
}

.handlebars object {
  width: 10px !important;
  pointer-events: none;
}

.select2-hidden-accessible {
  display: none !important;
}

.select2,
.select2--public,
.select2--public2 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  border: 1px solid #CED2DC;
  border-radius: 5px;
  padding: 0 10px;
  pointer-events: all;
  cursor: pointer;
}

.select2--public,
.select2--public2 {
  position: relative;
  height: 30px;
  width: 70px !important;
  background: #fff;
}

.select2--public .selection:after,
.select2--public2 .selection:after {
  content: url(../img/carat-public.svg) !important;
  line-height: 30px;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: all 0.1s ease-in-out;
}

.select2--public.select2-container--open,
.select2-container--open.select2--public2 {
  position: relative;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 9999999;
}

.select2--public2 {
  position: relative;
  width: 140px !important;
}

.select2--public2.select2-container--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 9999999;
}

.select2 .selection,
.select2--public .selection,
.select2--public2 .selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  pointer-events: none;
  padding: 0px;
}

.select2 .selection:after,
.select2--public .selection:after,
.select2--public2 .selection:after {
  content: url(../img/caret.svg);
  position: relative;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: all 0.1s ease-in-out;
}

.select2 .select2-selection--single,
.select2--public .select2-selection--single,
.select2--public2 .select2-selection--single {
  font-size: 16px;
  font-weight: 600;
  color: #4f536c;
  border: none;
}

.select2 .select2-selection__arrow,
.select2--public .select2-selection__arrow,
.select2--public2 .select2-selection__arrow {
  right: 20px !important;
  width: auto !important;
  margin-right: auto !important;
}

.select2 .select2-selection__arrow b,
.select2--public .select2-selection__arrow b,
.select2--public2 .select2-selection__arrow b {
  left: unset !important;
  position: relative !important;
  margin: 0 !important;
}

.select2 .select2-selection__rendered,
.select2--public .select2-selection__rendered,
.select2--public2 .select2-selection__rendered {
  line-height: 20px;
  color: #4f536c;
}

.select2-container--open {
  z-index: 999999;
}

.select2-container--open .select2-dropdown {
  border: none;
  background: transparent;
}

.select2-container--open .select2-results__options {
  position: relative;
  top: 0;
  max-height: -moz-max-content !important;
  max-height: max-content !important;
  background-color: #fff;
  border-radius: 5px !important;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  overflow-y: auto !important;
  filter: drop-shadow(0px 0px 7px rgba(79, 83, 108, 0.2));
}

.select2-container--open .select2-results__options:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--open .select2-results__option {
  display: flex;
  justify-content: left;
  align-items: center;
  list-style: none;
  width: 100%;
  pointer-events: all;
  cursor: pointer;
  height: 50px;
  font-size: 16px;
  color: #4f536c;
  font-weight: 600;
  padding: 0 20px;
  margin-top: -1px;
}

.select2__dropdown--public .select2-results__option {
  width: 70px;
  height: 30px;
}

.select2__dropdown--public2 .select2-results__option {
  width: 140px;
  height: 30px;
}

.select2-container--open .select2-results__option[aria-selected="true"],
.select2-container--open .select2-results__option[data-selected="true"],
.select2-container--open .select2-results__option--highlighted {
  background-color: #ced2dc !important;
  color: #4f536c !important;
  transition: all 0.3s ease-in-out;
}

.select2-container--open .select2-search {
  display: none;
}

#select2-accountType-results {
  width: 220px;
}

.select {
  display: inline-block;
}

.select,
select {
  font-size: 12px;
  border: 1px solid #CED2DC;
  padding: 0 8px;
  border-radius: 5px;
  font-weight: 700;
}

.single-select .select2,
.single-select .select2--public,
.single-select .select2--public2 {
  width: 100%;
  height: 50px;
  border: 1px solid #CED2DC;
  border-radius: 5px;
  padding: 0px;
  pointer-events: all;
  cursor: pointer;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .single-select .select2-container--default {
    width: 100% !important;
  }
}

.single-select .select2-container--default .selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: all;
  position: relative;
}

.single-select .select2-container--default .selection:after {
  position: absolute;
  right: 20px;
  margin-top: -2px;
}

.single-select .select2-container--default .select2-selection--single {
  background-color: transparent;
  border: none;
  border-radius: 0px;
  display: inline-block;
  height: auto;
  line-height: 0px;
  margin: 0px;
  width: 100%;
  overflow: hidden;
  text-align: left;
}

.single-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
}

.single-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #4f536c;
  width: 220px;
  line-height: 50px;
  border-radius: 5px;
  padding: 0 20px;
}

#listing_status .select2,
#listing_status .select2--public,
#listing_status .select2--public2,
#wants_status .select2,
#wants_status .select2--public,
#wants_status .select2--public2,
#listing-agents .select2,
#listing-agents .select2--public,
#listing-agents .select2--public2 {
  height: 50px;
}

#listing_status .select2-selection--single,
#wants_status .select2-selection--single,
#listing-agents .select2-selection--single {
  height: 48px;
}

#listing_status .select2-selection__rendered,
#wants_status .select2-selection__rendered,
#listing-agents .select2-selection__rendered {
  height: 48px;
  line-height: 48px;
  padding: 0 20px;
}

#listing_status .select2-selection__arrow,
#wants_status .select2-selection__arrow,
#listing-agents .select2-selection__arrow {
  position: absolute;
  line-height: 48px;
}

#listing-agents {
  margin: 0;
  padding: 0;
}

#listing-agents .acf-fields {
  margin: 0;
}

#listing-agents .acf-fields .acf-field {
  margin: 0;
}

#listing-agents .acf-form-submit {
  display: none;
}

#listing-agents .selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0px;
}

#listing-agents .selection:after {
  display: block;
  content: url(../img/caret.svg);
  position: relative;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: all 0.1s ease-in-out;
}

.acf-spinner {
  display: none !important;
}

form {
  padding: 0;
}

form textarea,
form input:not([type=range]) {
  padding: 12px;
  border-radius: 3px;
  border: 1px solid #CED2DC;
  font-size: 15px;
  font-weight: 600;
  background-color: #fff;
  color: #131a25;
}

form textarea {
  width: 100%;
  font-size: 14px;
  margin-bottom: 8px;
  color: #343a4c;
}

form input[type="checkbox"]:checked+label:before {
  background: transparent;
  animation: unset;
}

label {
  margin: 0;
}

.fancy-box {
  position: relative;
  padding: 6px 20px 6px 8px;
  border-radius: 2.5px;
  border: 1px solid #CED2DC;
  display: inline-block;
  vertical-align: top;
  margin-right: 16px;
}

.fancy-box input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.fancy-box input[type="checkbox"]+label {
  margin: 0;
  line-height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancy-box input[type="checkbox"]+label span {
  display: inline-block;
  line-height: 16px;
  vertical-align: top;
  position: relative;
  font-weight: 600;
  color: #151b26;
  font-size: 16px;
}

.fancy-box input[type="checkbox"]+label::before {
  content: "";
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  border-radius: 3px;
  border: 1px solid #131a25;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  margin-top: -4px;
}

.fancy-box input[type="checkbox"]:checked+label::before {
  content: "\f14a";
  display: inline-block;
  width: 20px;
  font-size: 22px;
  font-weight: 900;
  line-height: 19px;
  border: 1px solid #151b26;
  border-radius: 5px;
  height: 20px;
  border-color: #000;
  background: unset;
}

.checkbox-group.inline-block {
  display: inline-block;
  margin-right: 12px;
}

form .acf-taxonomy-field .categorychecklist-holder {
  overflow: unset;
}

form .acf-taxonomy-field .acf-checkbox-list {
  padding: 0;
}

form .acf-form-submit {
  margin-top: 24px;
}

form .acf-form-submit .count,
form .acf-form-submit .countWants {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  padding: 10px;
  background: #ced2dd;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: none;
}

form .acf-form-submit .hidden {
  display: none;
}

form .acf-form-submit .counter .counted {
  text-align: center;
  margin-top: 20px;
}

form .acf-form-submit .counter .counted .listing-count {
  font-size: 60px;
  margin-top: 10px;
  padding-right: 0px;
  font-weight: 800;
}

form .acf-form-submit .counter .counted .propety-found {
  font-weight: 600;
  font-size: 16px;
}

form .acf-form-submit .counter .counted #view_listing_btn {
  margin-top: 20px;
  width: 100%;
  background: #8cc63f;
  background-color: #8cc63f;
  color: #fff;
  outline: none;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  border-radius: 3px;
  padding: 0px !important;
}

form .acf-form-submit .counter .save-search-label {
  margin-top: 20px;
}

form .acf-form-submit .counter .counted,
form .acf-form-submit .counter input {
  display: none;
}

form .acf-form-submit .counter .reset-label {
  margin-top: 20px;
}

form .acf-form-submit .counter .button.ghost {
  background: #fff;
  border: 1px solid #ced2dd;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
  padding: 10px 20px 10px 50px !important;
  width: 220px !important;
  border-radius: 3px !important;
}

form .acf-form-submit .counter label {
  position: relative;
}

form .acf-form-submit .counter label:before {
  content: url("../../../uploads/2019/07/save-search.svg");
  position: absolute;
  left: 25px;
  top: 16px;
  bottom: 0;
  width: 20px;
  background-repeat: no-repeat;
}

form .acf-form-submit .counter label input {
  width: 100%;
  padding: 10px 0px 10px 25px !important;
}

form .acf-form-submit .counter.active {
  flex-direction: column;
}

form .acf-form-submit .counter.active .counted,
form .acf-form-submit .counter.active input,
form .acf-form-submit .counter.active button {
  display: block;
  width: 100%;
}

form .acf-fields {
  margin: 0 0 40px;
}

form .acf-fields div[data-name="date_range"] .select2,
form .acf-fields div[data-name="date_range"] .select2--public,
form .acf-fields div[data-name="date_range"] .select2--public2 {
  border: none;
  border-bottom: 1px solid #CED2DC;
}

form .acf-fields div[data-name="date_range"] label {
  font-size: 20px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

form .acf-fields:last-child {
  margin: 0;
}

form .acf-fields .form-links a {
  display: inline-block;
  margin: 0 4px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #131a25;
  border-bottom: 1px solid #131a25;
}

form .acf-fields .form-links a:hover {
  color: #25a9e0;
  border-color: #25a9e0;
}

form .acf-fields .acf-label {
  margin: 0;
}

form .acf-fields .acf-field {
  margin: 0 0 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: none;
  padding: 0;
  /** For side by side labels, give it the fixed-width class **/
  /** Style the map centering button **/
  /** Style the range input **/
  /* Styles for uploads **/
  /** No idea **/
  /** Tagit styles **/
  /** Taxonomy checkbox overrides **/
  /** DateDropper styles **/
}

form .acf-fields .acf-field textarea,
form .acf-fields .acf-field input,
form .acf-fields .acf-field select {
  display: inline-block;
  width: 100%;
  min-height: 40px;
  height: auto;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  border: #CED2DC 1px solid;
  line-height: 26px;
  padding: 0 20px;
}

form .acf-fields .acf-field textarea {
  padding: 4px 20px;
}

form .acf-fields .acf-field textarea::-moz-placeholder {
  font-size: 14px;
}

form .acf-fields .acf-field textarea::placeholder {
  font-size: 14px;
}

form .acf-fields .acf-field .select2,
form .acf-fields .acf-field .select2--public,
form .acf-fields .acf-field .select2--public2 {
  height: 40px;
  pointer-events: none;
  cursor: pointer;
  padding: 0px;
  border-radius: 5px;
  line-height: 40px;
}

form .acf-fields .acf-field .select2 .selection,
form .acf-fields .acf-field .select2--public .selection,
form .acf-fields .acf-field .select2--public2 .selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: block;
  width: 100%;
  pointer-events: all;
  text-align: left;
  padding: 0px;
}

form .acf-fields .acf-field .select2 .selection:after,
form .acf-fields .acf-field .select2--public .selection:after,
form .acf-fields .acf-field .select2--public2 .selection:after {
  display: none;
}

form .acf-fields .acf-field .select2 .selection .select2-selection__rendered,
form .acf-fields .acf-field .select2--public .selection .select2-selection__rendered,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection__rendered {
  padding: 0 0 0 20px;
}

form .acf-fields .acf-field .select2 .selection .select2-selection--single,
form .acf-fields .acf-field .select2--public .selection .select2-selection--single,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection--single {
  height: 40px;
  background: transparent;
}

form .acf-fields .acf-field .select2 .selection .select2-selection--single,
form .acf-fields .acf-field .select2--public .selection .select2-selection--single,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection--single,
form .acf-fields .acf-field .select2 .selection .select2-selection__rendered,
form .acf-fields .acf-field .select2--public .selection .select2-selection__rendered,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection__rendered {
  height: 40px;
  line-height: 40px;
  margin: 0px;
  border: 0;
}

form .acf-fields .acf-field .select2 .selection .select2-selection--single .select2-selection__arrow,
form .acf-fields .acf-field .select2--public .selection .select2-selection--single .select2-selection__arrow,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection--single .select2-selection__arrow,
form .acf-fields .acf-field .select2 .selection .select2-selection__rendered .select2-selection__arrow,
form .acf-fields .acf-field .select2--public .selection .select2-selection__rendered .select2-selection__arrow,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection__rendered .select2-selection__arrow {
  height: 40px;
  top: 0px;
}

form .acf-fields .acf-field .select2 .selection .select2-selection--single .select2-selection__arrow b,
form .acf-fields .acf-field .select2--public .selection .select2-selection--single .select2-selection__arrow b,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection--single .select2-selection__arrow b,
form .acf-fields .acf-field .select2 .selection .select2-selection__rendered .select2-selection__arrow b,
form .acf-fields .acf-field .select2--public .selection .select2-selection__rendered .select2-selection__arrow b,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection__rendered .select2-selection__arrow b {
  top: -2px;
  border-color: unset !important;
  border-style: unset !important;
  border-width: unset !important;
}

form .acf-fields .acf-field .select2 .selection .select2-selection--single .select2-selection__arrow b:before,
form .acf-fields .acf-field .select2--public .selection .select2-selection--single .select2-selection__arrow b:before,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection--single .select2-selection__arrow b:before,
form .acf-fields .acf-field .select2 .selection .select2-selection__rendered .select2-selection__arrow b:before,
form .acf-fields .acf-field .select2--public .selection .select2-selection__rendered .select2-selection__arrow b:before,
form .acf-fields .acf-field .select2--public2 .selection .select2-selection__rendered .select2-selection__arrow b:before {
  content: url(../img/caret.svg);
  position: relative;
}

form .acf-fields .acf-field .select2-container--disabled,
form .acf-fields .acf-field .select2-container--disabled b,
form .acf-fields .acf-field input[disabled] {
  color: #ced2dc;
}

form .acf-fields .acf-field .select2-container--disabled span {
  color: #ced2dc;
}

form .acf-fields .acf-field .select2-container--disabled b {
  opacity: 0.25;
}

form .acf-fields .acf-field input {
  background-color: #fff;
}

form .acf-fields .acf-field:last-child {
  margin: 0;
}

form .acf-fields .acf-field .acf-label {
  margin-right: auto;
}

form .acf-fields .acf-field .acf-label label {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
}

form .acf-fields .acf-field.collapsed {
  display: none;
}

form .acf-fields .acf-field.hidden {
  display: none;
}

form .acf-fields .acf-field.one-third .acf-field {
  width: 33.33333%;
  float: left;
  clear: none;
  padding: 0 16px;
}

form .acf-fields .acf-field.one-third .acf-field:first-child {
  padding-left: 0px;
}

form .acf-fields .acf-field.one-third .acf-field:last-child {
  padding-right: 0px;
}

form .acf-fields .acf-field.one-third .acf-field:last-child .expand {
  right: 0px;
}

form .acf-fields .acf-field.toggle-buttons .acf-button-group {
  width: 100%;
}

form .acf-fields .acf-field.toggle-buttons label {
  display: inline-block;
  border: 1px solid #CED2DC;
  color: #4F536C;
  padding: 8px 16px;
  background: #f0f0f7;
  border-radius: 3px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  margin-right: 20px;
  height: 50px;
  line-height: 30px;
}

form .acf-fields .acf-field.toggle-buttons label:last-child {
  margin-right: 0px;
}

form .acf-fields .acf-field.toggle-buttons label .icon {
  color: #949BAF;
  font-size: 26px;
  margin-right: 10px;
}

form .acf-fields .acf-field.toggle-buttons label.selected {
  background: #fff;
  border-color: #8cc63f;
}

form .acf-fields .acf-field.toggle-buttons label:hover {
  background: none;
  border-color: #8cc63f;
  color: #8cc63f;
}

form .acf-fields .acf-field .acf-input-prepend {
  border-radius: 3px 0 0 3px;
  border: #CED2DC 1px solid;
  border-right: none;
  padding: 8px;
  font-weight: 600;
  height: 100%;
  background: transparent;
}

form .acf-fields .acf-field .-border {
  border: none;
  background: transparent;
}

form .acf-fields .acf-field.with-toggle>.acf-input {
  position: relative;
  padding: 20px 10px;
  background: #fcddde;
  border-radius: 3px;
  transition: background 200ms linear;
  -webkit-transition: background 200ms linear;
}

form .acf-fields .acf-field.with-toggle.active>.acf-input {
  background: #cbefd0;
}

form .acf-fields .acf-field.with-toggle .-border {
  border: none;
  background: transparent;
}

form .acf-fields .acf-field.with-toggle .fixed-width input {
  width: 40%;
}

form .acf-fields .acf-field.with-toggle .acf-field {
  margin: 0;
}

form .acf-fields .acf-field.with-toggle .acf-input .acf-input-prepend,
form .acf-fields .acf-field.with-toggle .acf-input input {
  background: #fff;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] {
  position: absolute;
  top: 5px;
  right: 40px;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-label {
  display: none;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch {
  background: #fff;
  border-radius: 50px;
  width: 60px;
  border: none;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch-slider {
  background: #343A4C;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: 0;
  top: 3px;
  box-shadow: none;
  right: 2px;
  left: 50%;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch.-on .acf-switch-slider {
  right: 50%;
  left: 2px;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch-on,
form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch-off {
  position: absolute;
  text-shadow: none;
  font-weight: 600;
  color: #151b26;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch-on {
  right: 100%;
}

form .acf-fields .acf-field.with-toggle [data-type="true_false"] .acf-switch-off {
  left: 100%;
}

form .acf-fields .acf-field.fixed-width,
form .acf-fields .acf-field.upload,
form .acf-fields .acf-field.is-required {
  font-size: 0;
  display: flex;
}

form .acf-fields .acf-field.fixed-width .acf-input,
form .acf-fields .acf-field.upload .acf-input,
form .acf-fields .acf-field.is-required .acf-input {
  width: 70%;
  display: inline-block;
  min-height: 40px;
}

form .acf-fields .acf-field.fixed-width .acf-label,
form .acf-fields .acf-field.upload .acf-label,
form .acf-fields .acf-field.is-required .acf-label {
  position: relative;
  top: 8px;
  width: auto;
}

form .acf-fields .acf-field.fixed-width .acf-label label,
form .acf-fields .acf-field.upload .acf-label label,
form .acf-fields .acf-field.is-required .acf-label label {
  font-size: 16px;
  font-weight: 600;
}

form .acf-fields .acf-field.fixed-width.broken .acf-input,
form .acf-fields .acf-field.fixed-width.broken .acf-label,
form .acf-fields .acf-field.upload.broken .acf-input,
form .acf-fields .acf-field.upload.broken .acf-label,
form .acf-fields .acf-field.is-required.broken .acf-input,
form .acf-fields .acf-field.is-required.broken .acf-label {
  float: none;
  top: 0;
  width: 100%;
}

form .acf-fields .acf-field.upload .acf-label {
  float: left;
  width: 30%;
}

form .acf-fields .acf-field .center-map {
  width: 100%;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 3px;
  border: #CED2DC 1px solid;
  height: auto;
  margin-bottom: 12px;
}

form .acf-fields .acf-field[data-type="between"] input {
  width: 47%;
}

form .acf-fields .acf-field[data-type="between"] span {
  display: inline-block;
  width: 6%;
  position: relative;
  top: 3px;
  color: #949BAF;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

form .acf-fields .acf-field.upload {
  font-size: 0;
}

form .acf-fields .acf-field.upload input[type="text"] {
  width: 70%;
}

form .acf-fields .acf-field.upload .file-button {
  display: inline-block;
  position: relative;
  width: 26%;
  padding: 0;
  border: 0;
  float: right;
}

form .acf-fields .acf-field.upload .file-button button {
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  background: #4F536C;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 8px 12px;
  cursor: pointer;
}

form .acf-fields .acf-field.upload .file-button input[type="file"] {
  font-size: 100px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  cursor: pointer;
}

form .acf-fields .acf-field.image-edit {
  font-size: 0;
}

form .acf-fields .acf-field.image-edit .image {
  font-size: 12px;
  display: inline-block;
  width: 20%;
  position: relative;
}

form .acf-fields .acf-field.image-edit .image a {
  width: 17px;
  height: 17px;
  background: #ed217c;
  color: #fff;
  font-weight: 600;
  font-size: 10px;
  padding: 0;
  text-align: center;
  display: block;
  line-height: 15px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  right: 4px;
}

form .acf-fields .acf-field.image-edit .image img {
  display: block;
  border-radius: 3px;
}

form .acf-fields .acf-field.image-edit .image-meta {
  display: inline-block;
  width: 80%;
  padding: 0 0 0 8px;
  font-size: 13px;
  float: right;
}

form .acf-fields .acf-field[data-type="tagit"] input[type="text"] {
  box-shadow: none;
  -webkit-box-shadow: none;
  border: none;
  margin: 0;
  padding: 0;
  width: inherit;
  height: 38px;
  background-color: inherit;
  outline: none;
  vertical-align: unset;
}

form .acf-fields .acf-field[data-type="tagit"] ul {
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 40px;
  border-radius: 5px;
  padding: 0 20px;
  border: 1px #CED2DC solid;
  margin: 0;
  font-size: 13px;
  line-height: 40px;
}

form .acf-fields .acf-field[data-type="tagit"] ul li {
  font-size: 13px;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 27px;
  float: left;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 12px !important;
  background: #eff0f8;
  border: 0px;
  border-radius: 20px;
  margin: 5px 5px 0 0 !important;
  padding: 0 30px 0 10px;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice .tagit-label:not(a) {
  color: #4F536C;
  font-size: 13px !important;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice a {
  cursor: pointer;
  text-decoration: none;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice a.tagit-close {
  position: absolute;
  text-decoration: none;
  cursor: pointer;
  right: 14px;
  top: 9px;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice a.tagit-close .text-icon {
  font-size: 0;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice a.tagit-close .text-icon:after {
  content: "\f057" !important;
  font-family: "FontAwesome";
  font-size: 14px;
  position: relative;
  left: 5px;
}

form .acf-fields .acf-field[data-type="tagit"] ul li.tagit-choice .ui-icon {
  display: none;
}

form .acf-fields .acf-field .categorychecklist-holder {
  border: none;
}

form .acf-fields .acf-field .categorychecklist-holder input {
  position: relative;
  width: 20px !important;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd input {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd input+label::after {
  content: none;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd input:checked+label::after {
  content: "";
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd input:focus+label::before {
  outline: #25a9e0 auto 3px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd label {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 600;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #131a25;
  border-radius: 3px;
  left: 0;
  top: 3px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd label::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  left: 2px;
  top: 5px;
  transform: rotate(-45deg);
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] input {
  opacity: 0;
  position: absolute;
  left: -9999px;
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] input+label::after {
  content: none;
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] input:checked+label::after {
  content: "";
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] input:focus+label::before {
  outline: #25a9e0 auto 3px;
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] label {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 600;
  padding-left: 30px;
  padding-top: 1px;
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #131a25;
  border-radius: 3px;
  left: 0;
  top: 2px;
}

form .acf-fields .acf-field[data-type="taxonomy"] [data-ftype="checkbox"] label::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  left: 4px;
  top: 7px;
  transform: rotate(-45deg);
}

form .acf-fields .acf-field.fancy-date {
  position: relative;
}

form .acf-fields .acf-field.fancy-date .acf-input {
  position: relative;
}

form .acf-fields .acf-field.fancy-date .acf-input::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5.5px 6px 5.5px;
  border-color: transparent transparent #151b26 transparent;
  transform: rotate(-180deg);
}

form .acf-fields .acf-field.fancy-date .acf-input input {
  position: relative;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .acf-input {
  position: static;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .acf-label {
  border-bottom: 1px solid #CED2DC;
  padding-bottom: 8px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .expand {
  font-weight: 700;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  height: 21px;
  width: 21px;
  line-height: 18px;
  text-align: center;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .expand.open {
  line-height: 19px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .dd {
  background: #fff;
  border: #CED2DC 1px solid;
  border-radius: 5px;
  padding: 16px;
  z-index: 9999;
  top: 25px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .display label {
  font-size: 12px;
  font-weight: 600;
  position: relative;
  padding-left: 16px;
  cursor: pointer;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .display label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid #131a25;
  border-radius: 50%;
  left: 0;
  top: 3px;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .display label::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 3px;
  border-left: 1px solid #131a25;
  border-bottom: 1px solid #131a25;
  left: 3px;
  top: 7px;
  transform: rotate(-45deg);
}

form .acf-fields .acf-field[data-type="dropdown_select"] .display label.placeholder {
  color: #949BAF;
  padding: 0;
}

form .acf-fields .acf-field[data-type="dropdown_select"] .display label.placeholder::before,
form .acf-fields .acf-field[data-type="dropdown_select"] .display label.placeholder::after {
  display: none;
}

form .acf-fields .acf-field[data-type="message"] {
  margin-top: 50px;
  margin-bottom: 30px;
}

form .acf-fields .acf-field[data-type="message"] label {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 20px;
  margin: 0 0 16px;
}

form .acf-fields .acf-field[data-type="message"] label:first-child {
  margin: 0px;
}

form .acf-fields .acf-field[data-type="message"]:first-child {
  margin-top: 0;
}

form .acf-fields .acf-field.collapse::after {
  cursor: pointer;
  content: url(../img/caret.svg);
  position: absolute;
  top: 3px;
  right: 0;
  line-height: 0;
  margin-top: 8px;
}

form .acf-fields .acf-field.collapse::before {
  cursor: pointer;
  content: "Show / Hide";
  position: absolute;
  top: 5px;
  display: block;
  color: #000;
  right: 0;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  padding-right: 14px;
}

form .acf-fields .acf-field.collapse.closed::after {
  content: "\f0d8";
}

form .acf-fields .acf-field.acf-field-textarea .acf-input {
  height: auto;
}

form ul.acf-checkbox-list.acf-bl {
  padding-left: 0px;
}

form ul.acf-checkbox-list li {
  width: 100%;
  margin-bottom: 10px;
}

form ul.acf-checkbox-list li input[type="radio"],
form ul.acf-checkbox-list li input[type="checkbox"] {
  visibility: hidden;
}

form ul.acf-checkbox-list li label {
  font-size: 16px;
  font-weight: 600;
}

form ul.acf-radio-list li input[type="radio"],
form ul.acf-radio-list li input[type="checkbox"] {
  visibility: hidden;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 {
  padding: 20px;
  height: 80px;
  border: 1px solid #CED2DC;
  display: flex;
  align-items: center;
  border-radius: 5px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .acf-label {
  margin-bottom: 0px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 label {
  font-weight: 600;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .acf-label {
  display: none;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .acf-input-wrap {
  height: 40px;
  overflow: visible;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .acf-input {
  width: 100%;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .acf-input .acf-label {
  display: block;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .acf-input .acf-input {
  width: auto;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso {
  margin-bottom: 0px;
  flex: 0 0 37%;
  max-width: 37%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso input {
  width: 115px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 .-border {
  display: flex;
  align-items: center;
  width: 100%;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn {
  width: 100%;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn ul {
  display: flex;
  padding-left: 50px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn li {
  position: relative;
  padding: 0 0 0 28px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn li:first-child {
  width: 140px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn label {
  cursor: pointer;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 7px;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn li label:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ced2dc;
  border-radius: 50%;
  background: #fff;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn li label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #25a9e0;
  opacity: 0;
  transition: 0.2s;
}

form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn label.selected:after {
  opacity: 1;
}

form #catastral-number.acf-field {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

form #catastral-number.acf-field .acf-label {
  margin: 0px;
}

form #catastral-number.acf-field .acf-label label {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 0px;
}

form #catastral-number.acf-field .acf-input {
  width: 70%;
  display: inline-block;
  min-height: 40px;
}

form div#v-p-t {
  margin-top: 30px;
}

form div#v-p-t .acf-label label {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

form div#v-p-t #url {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

form div#v-p-t #url .acf-label {
  margin: 0px;
}

form div#v-p-t #url .acf-label label {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin-bottom: 0px;
}

form div#v-p-t #url .acf-input {
  flex-grow: 1;
  margin-left: 115px;
}

form .hide-address .label-text {
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding-left: 40px;
  text-align: justify;
}

form .hide-address .label-text:before {
  content: "\f096";
  font-family: "FontAwesome";
  font-weight: 100;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  width: 1em;
  display: inline-block;
  margin-right: 0px;
  font-size: 25px;
  vertical-align: middle;
  position: absolute;
  color: unset;
  left: 0px;
}

form .hide-address input[type="checkbox"]:checked+.label-text:before {
  content: "\f14a";
  color: #131a25;
  animation: effected 250ms ease-in;
}

form .agreement .label-text {
  display: block;
  font-size: 16px;
  line-height: 26px;
  padding-left: 40px;
  text-align: justify;
}

form .agreement .label-text:before {
  content: "\f096";
  font-family: "FontAwesome";
  font-weight: 100;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  width: 1em;
  display: inline-block;
  margin-right: 0px;
  font-size: 25px;
  vertical-align: middle;
  position: absolute;
  color: unset;
  left: 0px;
}

form .agreement .acf-input {
  width: 100% !important;
  height: auto !important;
}

form .agreement input[type="checkbox"]:checked+.label-text:before {
  content: "\f14a";
  color: #131a25;
  animation: effected 250ms ease-in;
}

form .acf-required {
  display: none;
}

ul#select2-acf-field_5cd4722e261e9-field_5809feb8d6a1e-results,
ul#select2-acf-field_582abfbfb3208-results {
  max-height: unset;
  overflow-y: unset;
}

#listing_status .acf-form-submit,
#wants_status .acf-form-submit {
  cursor: pointer;
}

#listing_status .acf-field-582abfbfb3208 .acf-label,
#listing_status .acf-field-5e4270b3d7944 .acf-label,
#wants_status .acf-field-582abfbfb3208 .acf-label,
#wants_status .acf-field-5e4270b3d7944 .acf-label {
  top: 0px;
}

#listing_status .acf-field-582abfbfb3208 .acf-label label,
#listing_status .acf-field-5e4270b3d7944 .acf-label label,
#wants_status .acf-field-582abfbfb3208 .acf-label label,
#wants_status .acf-field-5e4270b3d7944 .acf-label label {
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
}

#listing_status .is-required,
#wants_status .is-required {
  display: block !important;
}

#listing_status .is-required .acf-input,
#wants_status .is-required .acf-input {
  width: 100% !important;
}

#listing_status button,
#wants_status button {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  background: none #ced2dd;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: none;
  margin-bottom: 20px;
}

.select2-container--default .select2-results__options[id*="select2-acf-field_"] {
  margin-top: 0px;
}

div#upload-imgs {
  /*
	border: 4px dashed rgba(128, 128, 128, 0.17);
	border-radius: 10px;
	border-style: dashed;
	padding: 40px 40px;
	text-align: center;
	*/
}

div#upload-imgs .upl-list-style {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

div#upload-imgs .p-10 label,
div#upload-imgs .p-10 p {
  font-size: 16px;
  font-weight: 600;
}

div#upload-imgs .upl-list-style img {
  max-width: 50%;
}

div#upload-imgs .acf-gallery,
div#upload-imgs .acf-gallery-side,
div#upload-imgs .acf-gallery .acf-gallery-toolbar {
  border: none;
}

div#upload-imgs .ui-resizable {
  height: 200px !important;
}

div#upload-imgs .style-gallery {
  top: 0em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div#upload-imgs .style-gallery ul {
  padding: 1em 0 0;
}

div#upload-imgs .style-gallery ul p,
div#upload-imgs .style-gallery ul li {
  margin-bottom: 0 !important;
  font-weight: 600 !important;
}

div#upload-imgs a.button {
  color: #1975be;
  text-decoration: underline;
  padding: 8px;
  font-size: 14px;
}

.radio-custom-group {
  margin: auto;
  text-align: center;
  margin: 50px 0 20px;
  padding: 0;
}

.radio-custom-group label {
  position: relative;
  width: 206px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 30px;
}

.radio-custom-group label input {
  display: none;
}

.radio-custom-group label input:checked~.custom-radio:after {
  display: block;
  background-color: #1b75bb;
}

.radio-custom-group label .custom-radio {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #ced2dc;
}

.radio-custom-group label .custom-radio:after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.radio-custom-group label .label-text {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin-right: 20px;
  padding-left: 30px;
  white-space: nowrap;
}

.switch-checkbox-style,
.checkbox-custom-toggle {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 26px;
}

.switch-checkbox-style input,
.checkbox-custom-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-checkbox-style input:checked+.slider,
.switch-checkbox-style input:checked+.slider--large,
.checkbox-custom-toggle input:checked+.slider,
.checkbox-custom-toggle input:checked+.slider--large {
  background-color: #8bc53f;
}

.switch-checkbox-style input:checked+.slider:before,
.switch-checkbox-style input:checked+.slider--large:before,
.checkbox-custom-toggle input:checked+.slider:before,
.checkbox-custom-toggle input:checked+.slider--large:before {
  transform: translateX(28px);
}

.switch-checkbox-style .slider,
.switch-checkbox-style .slider--large,
.checkbox-custom-toggle .slider,
.checkbox-custom-toggle .slider--large {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ced2dc;
  transition: 0.3s;
  border-radius: 13px;
}

.switch-checkbox-style .slider:before,
.switch-checkbox-style .slider--large:before,
.checkbox-custom-toggle .slider:before,
.checkbox-custom-toggle .slider--large:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 50%;
}

.sign-square {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  border: 1px solid #ced2dc;
  width: 40px;
  height: 40px;
  float: right;
  text-align: center;
  line-height: 38px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-weight: bolder;
  font-size: 18px;
}

.sign-square+input {
  font-size: 18px;
  font-weight: bolder;
  float: right;
  padding-top: 0;
  padding-bottom: 0;
  height: 40px;
  margin-left: 10px;
  margin-right: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.search {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline-start: 40px;
  padding: 0;
}

@media (max-width: 767.98px) {
  .search {
    justify-content: center;
    width: 100%;
    padding-inline-start: 0;
  }
}

.search__form {
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .search__form #property-search {
    width: 100%;
  }
}

.search__label {
  font-weight: 600;
  margin: 0 20px 0 0;
  color: #fff;
}

.search__input {
  width: 430px;
  height: 50px;
  border: none !important;
  margin: 0;
  padding: 0 20px !important;
}

.search__input::-moz-placeholder {
  font-size: 15px;
  font-weight: 600;
  color: #949baf;
}

.search__input::placeholder {
  font-size: 15px;
  font-weight: 600;
  color: #949baf;
}

.search__button {
  background: #8bc53f;
  width: 160px;
  height: 50px;
  border: none;
  border-radius: 3px;
}

.search__button:hover {
  background: #37b34a;
}

@media (max-width: 767.98px) {

  .search form,
  .search__input {
    width: 100%;
    padding: 0 20px;
  }
}

.save-search__button,
.save-search__button--disabled,
.save-search__button--not-logged {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
}

@media (max-width: 767.98px) {

  .save-search__button,
  .save-search__button--disabled,
  .save-search__button--not-logged {
    width: 100%;
  }
}

.save-search__button:hover,
.save-search__button--disabled:hover,
.save-search__button--not-logged:hover {
  background-color: #fff;
}

.save-search__button:hover .save-search__label,
.save-search__button--disabled:hover .save-search__label,
.save-search__button--not-logged:hover .save-search__label {
  color: #131a25;
}

.save-search__button:hover svg path,
.save-search__button--disabled:hover svg path,
.save-search__button--not-logged:hover svg path,
.save-search__button:hover svg polygon,
.save-search__button--disabled:hover svg polygon,
.save-search__button--not-logged:hover svg polygon {
  fill: #131a25;
}

.save-search__label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-left: 20px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .save-search__label {
    font-size: 14px !important;
  }
}

.gform_wrapper form {
  padding: 0;
}

.gform_wrapper .gform_body .gform_fields {
  margin: 0;
  padding: 0;
}

.gform_wrapper .gform_body .gform_fields textarea::-moz-placeholder,
.gform_wrapper .gform_body .gform_fields input::-moz-placeholder {
  font-size: 15px;
  color: #949baf;
}

.gform_wrapper .gform_body .gform_fields textarea::placeholder,
.gform_wrapper .gform_body .gform_fields input::placeholder {
  font-size: 15px;
  color: #949baf;
}

.gform_wrapper .gform_body .gform_fields li {
  list-style-type: none;
  margin: 0;
}

.gform_wrapper .gform_body .gform_fields>li {
  float: left;
}

.gform_wrapper .gform_body .gform_fields>li.left-input-wrapper {
  margin-right: 20px;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper {
  width: 100%;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper .ginput_container_checkbox .gfield_checkbox {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 40px;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper .ginput_container_checkbox .gfield_checkbox input[type="checkbox"] {
  display: none;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper .ginput_container_checkbox .gfield_checkbox input[type="checkbox"]+label {
  display: flex;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  float: left;
  margin-right: 20px;
  line-height: 18px;
  font-weight: bold;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper .ginput_container_checkbox .gfield_checkbox input[type="checkbox"]+label:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #151b26;
  border-radius: 3px;
  margin-right: 10px;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper .ginput_container_checkbox .gfield_checkbox input[type="checkbox"]:checked+label:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 4.5px;
  left: 4px;
  transform: rotate(-45deg);
  transition: all 100ms ease 100ms;
}

.gform_wrapper .gform_body .gform_fields>li.checkboxes-wrapper .ginput_container_checkbox .gfield_checkbox input[type="checkbox"]:checked+label:before {
  background: #131a25;
}

.gform_wrapper .gform_body .gform_fields>li.textarea-wrapper {
  width: 100%;
}

.gform_wrapper .gform_body .gform_fields>li.textarea-wrapper .ginput_container_textarea textarea {
  height: 98px;
  width: 100%;
}

.gform_wrapper .gform_body .gform_fields>li>label {
  display: none;
}

.gform_wrapper .gform_footer .gform_button {
  float: right;
  width: 100%;
  background-color: #ff1d4e;
  font-size: 18px;
  font-weight: 600;
  color: white;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
  border: none;
}

/* Gravity Forms - Specific Form Styles */
.gchoice_6_7_3 {
  display: none;
}

.gchoice_11_7_3 {
  display: none;
}

/* Gravity Forms for feedback - start*/
.feedback__container .gform_confirmation_wrapper {
  color: #fff;
}

.feedback__container .gform_wrapper {
  color: #fff;
  min-height: 300px;
}

.feedback__container .gform_wrapper div.gform_heading {
  display: none;
}

.feedback__container .gform_wrapper li.terms-of-service {
  display: none;
}

.feedback__container .gform_wrapper ul#gform_fields_10 {
  margin-bottom: 0;
}

.feedback__container .gform_wrapper textarea {
  height: 120px;
}

.feedback__container .gform_wrapper li.gfield {
  width: 100%;
}

.feedback__container .gform_wrapper input.gform_button {
  background-color: #949baf;
}

.feedback__container .gform_wrapper .validation_error {
  display: none;
}

.feedback__container .gform_wrapper .validation_message {
  display: none;
}

.feedback__container .gform_wrapper .ginput_container_name {
  display: inline-flex;
  width: 100%;
}

.feedback__container .gform_wrapper .ginput_container_name span {
  width: 50%;
}

.feedback__container .gform_wrapper .ginput_container_name span.name_first {
  margin-right: 20px;
}

.feedback__container .gform_wrapper .ginput_container_name input {
  width: 100%;
}

.feedback__container .gform_wrapper input#input_10_20 {
  width: 100%;
}

.feedback__container .gform_wrapper .gform_previous_button {
  position: absolute;
  bottom: 10px;
  background-color: transparent;
  border: none;
  color: white;
  display: none;
}

.feedback__container .gform_wrapper #gform_submit_button_10 {
  width: 100%;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #8bc53f;
  border-color: #8bc53f;
  border-radius: 3px;
}

.feedback__container .gform_wrapper #gform_submit_button_10:hover {
  background: #96dd26;
  transition: all 0.3s ease-in-out;
}

.feedback__container .gform_wrapper .gform_next_button {
  width: 100%;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #8bc53f;
  border-color: #8bc53f;
  border-radius: 3px;
}

.feedback__container .gform_wrapper .gform_next_button:hover {
  background: #96dd26;
  transition: all 0.3s ease-in-out;
}

/* Gravity Forms for feedback - end*/
.select-clear {
  display: flex;
  padding-top: 20px;
}

.select-clear p.select-checkboxes {
  font-size: 16px;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  color: #131a25;
}

.select-clear p.clear-checkboxes {
  cursor: pointer;
  font-size: 16px;
  margin-left: 10px;
  text-decoration: underline;
  font-weight: 600;
  color: #131a25;
}

form #check-listing-type-1,
form #check-listing-type-2 {
  position: absolute;
  z-index: -1;
  opacity: 0;
  margin: 10px 0 0 7px;
}

form #check-listing-type-1+label,
form #check-listing-type-2+label {
  position: relative;
  padding: 0 0 0 28px;
  cursor: pointer;
  margin-right: 20px;
}

form #check-listing-type-1+label:before,
form #check-listing-type-2+label:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ced2dc;
  border-radius: 50%;
  background: #fff;
}

form #check-listing-type-1+label:after,
form #check-listing-type-2+label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #25a9e0;
  opacity: 0;
  transition: 0.2s;
}

form #check-listing-type-1:checked+label:after,
form #check-listing-type-2:checked+label:after {
  opacity: 1;
}

input[type="radio"]:after {
  width: 20px;
  height: 20px;
  border-radius: 40px;
  top: -4px;
  left: -2px;
  position: relative;
  background-color: #fff;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid #ced2dc;
}

input[type="radio"]:checked:after {
  width: 20px;
  height: 20px;
  border-radius: 40px;
  top: -4px;
  left: -2px;
  position: relative;
  background-color: #3579be;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 3px solid #fff;
  box-shadow: 0 0 0pt 1pt #ced2dc;
}

input[type="checkbox"]+label:before {
  content: "\f096";
  font-family: "FontAwesome";
  text-transform: none;
  line-height: 1;
  width: 1em;
  display: inline-block;
  margin-right: 5px;
  font-size: 20px;
}

input[type="checkbox"]:checked+label:before {
  content: "\f14a";
  color: #131a25;
  animation: effect 250ms ease-in;
}

.acf-checkbox-list.acf-bl input[type="checkbox"]:checked+label:before {
  background-color: black;
}

#private_remarks .fa-exclamation-circle,
#property-website .fa-exclamation-circle,
#address .fa-exclamation-circle,
#zip .fa-exclamation-circle,
#pls .fa-exclamation-circle,
#remarks .fa-exclamation-circle,
#callout_message .fa-exclamation-circle,
.acf-field-5e27dad79629b .fa-exclamation-circle,
.acf-field-5e302f18c08f3 .fa-exclamation-circle,
.acf-field-5e302f29c08f4 .fa-exclamation-circle,
.acf-field-65efab0ade64e .fa-exclamation-circle,
.acf-field-65efab0ade64e .fa-exclamation-circle,
.profile-rating__bl .fa-exclamation-circle {
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/premise/img/info-icon.svg);
  background-repeat: no-repeat;
  margin-left: 10px;
  top: 3px;
  position: relative;
}

#private_remarks .fa-exclamation-circle:before,
#property-website .fa-exclamation-circle:before,
#address .fa-exclamation-circle:before,
#zip .fa-exclamation-circle:before,
#pls .fa-exclamation-circle:before,
#remarks .fa-exclamation-circle:before,
#callout_message .fa-exclamation-circle:before,
.acf-field-5e27dad79629b .fa-exclamation-circle:before,
.acf-field-5e302f18c08f3 .fa-exclamation-circle:before,
.acf-field-5e302f29c08f4 .fa-exclamation-circle:before,
.acf-field-65efab0ade64e .fa-exclamation-circle:before,
.acf-field-65efab0ade64e .fa-exclamation-circle:before,
.profile-rating__bl .fa-exclamation-circle:before {
  display: none;
}

#private_remarks .description,
#property-website .description,
#address .description,
#zip .description,
#pls .description,
#remarks .description,
#callout_message .description,
.acf-field-5e27dad79629b .description,
.acf-field-5e302f18c08f3 .description,
.acf-field-5e302f29c08f4 .description,
.acf-field-65efab0ade64e .description,
.acf-field-65efab0ade64e .description,
.profile-rating__bl .description {
  position: absolute;
  left: 100%;
  margin-left: -115px !important;
  font-style: italic;
  font-weight: 600 !important;
  width: 200px;
  padding: 15px 20px !important;
  text-align: center;
  display: inline-table;
  font-size: 14px !important;
  top: 43px;
  background: #343A4C;
  color: #fff !important;
  border-radius: 5px;
  animation: tooltip-effect 0.3s ease-in;
  z-index: 3;
}

@media (max-width: 767.98px) {

  #private_remarks .description,
  #property-website .description,
  #address .description,
  #zip .description,
  #pls .description,
  #remarks .description,
  #callout_message .description,
  .acf-field-5e27dad79629b .description,
  .acf-field-5e302f18c08f3 .description,
  .acf-field-5e302f29c08f4 .description,
  .acf-field-65efab0ade64e .description,
  .acf-field-65efab0ade64e .description,
  .profile-rating__bl .description {
    margin-left: unset !important;
  }
}

#private_remarks .description:after,
#property-website .description:after,
#address .description:after,
#zip .description:after,
#pls .description:after,
#remarks .description:after,
#callout_message .description:after,
.acf-field-5e27dad79629b .description:after,
.acf-field-5e302f18c08f3 .description:after,
.acf-field-5e302f29c08f4 .description:after,
.acf-field-65efab0ade64e .description:after,
.acf-field-65efab0ade64e .description:after,
.profile-rating__bl .description:after {
  content: "";
  position: absolute;
  display: inline-block;
  border: 7px solid transparent;
  border-bottom: 8px solid #343A4C;
  animation: tooltip-effect 0.3s ease-in;
  bottom: 100%;
  left: 50%;
}

.acf-field-65efab0ade64e .fa-exclamation-circle {
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/premise/img/info-icon.svg);
  background-repeat: no-repeat;
  margin-left: 10px;
  top: 3px;
  position: relative;
}

.acf-field-65efab0ade64e .fa-exclamation-circle:before {
  display: none;
}

.acf-field-65efab0ade64e .description {
  z-index: 3;
  position: absolute;
  left: 100%;
  margin-left: -216px !important;
  font-style: italic;
  font-weight: 600 !important;
  width: 400px;
  padding: 15px 20px !important;
  text-align: center;
  display: inline-table;
  font-size: 14px !important;
  top: 43px;
  background: #343A4C;
  color: #fff !important;
  border-radius: 5px;
  animation: tooltip-effect 0.3s ease-in;
}

.acf-field-65efab0ade64e .description:after {
  content: "";
  position: absolute;
  display: inline-block;
  border: 7px solid transparent;
  border-bottom: 8px solid #343A4C;
  animation: tooltip-effect 0.3s ease-in;
  bottom: 100%;
  left: 50%;
}

#map-marker-latitude .fa-exclamation-circle,
#additional_areas .fa-exclamation-circle {
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/premise/img/info-icon.svg);
  background-repeat: no-repeat;
  margin-left: 10px;
  top: 3px;
  position: relative;
}

#map-marker-latitude .fa-exclamation-circle:before,
#additional_areas .fa-exclamation-circle:before {
  display: none;
}

#map-marker-latitude .description,
#additional_areas .description {
  z-index: 3;
  position: absolute;
  left: 100%;
  margin-left: -216px !important;
  font-style: italic;
  font-weight: 600 !important;
  width: 400px;
  padding: 15px 20px !important;
  text-align: center;
  display: inline-table;
  font-size: 14px !important;
  top: 43px;
  background: #343A4C;
  color: #fff !important;
  border-radius: 5px;
  animation: tooltip-effect 0.3s ease-in;
}

#map-marker-latitude .description:after,
#additional_areas .description:after {
  content: "";
  position: absolute;
  display: inline-block;
  border: 7px solid transparent;
  border-bottom: 8px solid #343A4C;
  animation: tooltip-effect 0.3s ease-in;
  bottom: 100%;
  left: 50%;
}

.profile-rating__right .fa-exclamation-circle {
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/themes/premise/img/info-icon.svg);
  background-repeat: no-repeat;
  margin-left: 10px;
  top: 3px;
  position: relative;
}

.profile-rating__right .fa-exclamation-circle:before {
  display: none;
}

.profile-rating__right .description {
  z-index: 3;
  position: fixed;
  margin-left: -114px !important;
  font-style: italic;
  left: 50%;
  top: 50%;
  font-weight: 600 !important;
  width: 200px;
  padding: 10px 16px !important;
  text-align: center;
  display: inline-table;
  font-size: 14px !important;
  background: #343A4C;
  color: #fff !important;
  border-radius: 5px;
  animation: tooltip-effect 0.3s ease-in;
}

.profile-rating__right .description:after {
  content: "";
  position: fixed;
  display: inline-block;
  border: 7px solid transparent;
  border-bottom: 8px solid #343A4C;
  animation: tooltip-effect 0.3s ease-in;
}

#property-website {
  display: flex;
  align-items: center;
  font-size: 0px;
}

#property-website .acf-label {
  display: block;
  margin-bottom: 0px;
  position: relative;
  width: auto;
}

#property-website .acf-input {
  width: 70%;
  display: inline-block;
}

.circle {
  color: #939bae;
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {

  .page-content .left-col,
  .page-content .right-col {
    flex: 0 0 20%;
    max-width: 20% !important;
    min-width: auto;
    width: auto;
  }

  form .one-third .acf-fields .acf-field .acf-label label {
    font-size: 14px;
  }

  form .acf-fields .acf-field.fixed-width .acf-label {
    top: 10px;
  }

  /*
    .page-header{
        padding: 20px 30px;
    }
	*/
  form .acf-fields .acf-field.toggle-buttons label {
    padding: 8px 10px;
  }

  form .acf-fields .acf-field[data-type="message"] label {
    font-size: 20px;
  }

  form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn ul {
    padding-left: 20px;
  }

  form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn li {
    flex: 0 0 45%;
    max-width: 45%;
  }

  form .acf-fields .acf-field.collapse::before {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {

  .page-content .left-col,
  .page-content .right-col {
    flex: 0 0 22%;
    max-width: 22% !important;
    min-width: auto;
    width: auto;
  }

  .page-content .middle-col .col-content,
  .page-content .middle-col .col-content--large {
    margin: 80px 4% 0px;
    max-width: 100%;
  }

  form .acf-fields .acf-field.fixed-width .acf-label label,
  form .acf-fields .acf-field .acf-label label {
    font-size: 16px;
  }

  form .one-third .acf-fields .acf-field .acf-label label {
    font-size: 12px;
  }

  form .acf-fields .acf-field.fixed-width .acf-label {
    top: 10px;
  }

  /*
    .page-header{
        padding: 20px 30px;
	}
	*/
  form .acf-fields .acf-field.toggle-buttons label {
    padding: 8px 10px;
  }

  form .acf-fields .acf-field[data-type="message"] label {
    font-size: 20px;
  }

  form .acf-field.acf-field-group.acf-field-5d0395fcb8150 #cso-radio-btn li {
    flex: 0 0 45%;
    max-width: 45%;
  }

  form .acf-fields .acf-field.collapse::before {
    font-size: 14px;
  }
}

.acf-field-5d5d3d03d5bf7,
#acf-field_5cd4730b526bd-field_5d5d3d03d5bf7 {
  display: none;
}

#create_listing #zipState-input {
  width: calc(35% - 10px) !important;
  margin-bottom: 0px !important;
  margin-left: 20px !important;
}

#create_listing #zipState-input .acf-error {
  border-radius: 0px 5px 5px 0px;
}

#create_listing #zipState-input .acf-label {
  display: none;
}

#create_listing div#zip-state {
  width: calc(65% - 20px) !important;
  margin-right: 10px;
}

#create_listing div#zip-state .acf-input {
  width: 54%;
  padding: 0 0 0 10px;
}

#create_listing div#zip-state .acf-error {
  padding: 5px 0px 5px 10px;
}

#create_listing div#spain-street-number {
  display: flex;
  width: calc(65% - 20px) !important;
  margin-right: 10px;
}

#create_listing div#spain-street-number .acf-label {
  margin-top: 8px;
}

#create_listing div#spain-street-number .acf-input {
  width: 54%;
  padding: 0 0 0 10px;
}

#create_listing div#spain-street-number .acf-error {
  padding: 5px 0px 5px 10px;
}

#create_listing #spain-street-name {
  width: calc(35% - 10px) !important;
  margin-bottom: 0px !important;
  margin-left: 20px !important;
}

#create_listing #spain-street-name .acf-input {
  width: 100%;
  float: right;
}

#create_listing #spain-street-name .acf-error {
  border-radius: 0px 5px 5px 0px;
}

#create_listing #spain-street-name .acf-label {
  display: none;
}

#create_listing div#latitude {
  width: calc(65% - 20px) !important;
  margin-right: 10px;
}

#create_listing div#latitude .acf-input {
  width: 54%;
  padding: 0 0 0 10px;
}

#create_listing div#latitude .acf-error {
  padding: 5px 0px 5px 10px;
}

#create_listing #longitude {
  width: calc(35% - 10px) !important;
  margin-bottom: 0px !important;
  margin-left: 20px !important;
}

#create_listing #longitude .acf-input {
  width: 100%;
  float: right;
}

#create_listing #longitude .acf-error {
  border-radius: 0px 5px 5px 0px;
}

#create_listing #longitude .acf-label {
  display: none;
}

#create_listing div#map-marker-latitude {
  width: calc(65% - 20px) !important;
  margin-right: 10px;
}

#create_listing div#map-marker-latitude .acf-input {
  width: 54%;
  padding: 0 0 0 10px;
}

#create_listing div#map-marker-latitude .acf-error {
  padding: 5px 0px 5px 10px;
}

#create_listing #map-marker-longitude {
  width: calc(35% - 10px) !important;
  margin-bottom: 0px !important;
  margin-left: 20px !important;
}

#create_listing #map-marker-longitude .acf-input {
  width: 100%;
  float: right;
}

#create_listing #map-marker-longitude .acf-error {
  border-radius: 0px 5px 5px 0px;
}

#create_listing #map-marker-longitude .acf-label {
  display: none;
}

form#mailForm input[type="text"],
form#mailForm select,
form#mailForm textarea {
  width: 74% !important;
}

.page-template-single-want-result .client-detailed {
  display: none;
}

#date-range span.select2.select2-container.select2-container--default.-acf,
#date-range span.select2-container.select2-container--default.-acf.select2--public,
#date-range span.select2-container.select2-container--default.-acf.select2--public2 {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #ced2dc;
}

#mailListing .form-group {
  vertical-align: middle;
  line-height: 40px !important;
  margin-bottom: 20px !important;
}

#mailListing .form-group:last-child {
  margin-bottom: 0 !important;
}

#mailListing .submit-container {
  margin-bottom: 0 !important;
}

#mailListing .select2,
#mailListing .select2--public,
#mailListing .select2--public2 {
  width: 74% !important;
}

#mailListing .email-report__heading {
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

#mailListing .email-report__select {
  height: 40px;
  width: 74% !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border-radius: 3px !important;
}

#mailListing .email-report__input,
#mailListing .email-report__input--5m {
  height: 40px;
  width: 74% !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px !important;
  margin: 0 !important;
  padding: 9px 12px;
}

#mailListing .email-report__input--5m {
  margin: 0 0 5px 0 !important;
}

#mailListing .email-report__textarea {
  width: 74% !important;
  font-size: 16px;
  font-weight: 600;
  margin: 0 !important;
  padding: 9px 12px;
}

#mailListing .email-report__label {
  font-size: 16px;
  font-weight: 600;
}

#mailListing .email-report__recipient {
  margin-bottom: 5px;
}

#mailListing .email-report__recipient a:hover {
  color: #25a9e0 !important;
}

#mailListing .email-report__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
  background-color: #8bc43f !important;
  border-color: #8bc43f !important;
  padding: 0 !important;
  border-radius: 3px;
}

.categorychecklist-holder {
  max-height: unset !important;
}

.acf-field-5d78c8f2190b0,
.acf-field-60e57ad8706ad,
.acf-field-5cb8b262876d8,
.acf-field-5cb8bb11876d9 {
  margin: 0 !important;
}

#selected-filter {
  cursor: pointer;
  position: relative;
}

#selected-filter:after {
  content: "";
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  pointer-events: all;
  z-index: 999;
}

#status_filter .filter,
#public-filters .filter {
  font-size: 16px;
  font-weight: 600;
  color: #343a4c;
}

#status_filter .filter__container,
#public-filters .filter__container {
  width: 300px;
}

@media (max-width: 767.98px) {

  #status_filter .filter__container,
  #public-filters .filter__container {
    width: 100%;
  }
}

#status_filter .filter__container form,
#public-filters .filter__container form {
  padding-bottom: 0;
}

#status_filter .filter__container .form-group,
#public-filters .filter__container .form-group {
  margin-bottom: 0;
}

#status_filter .filter__container legend,
#public-filters .filter__container legend {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin: 0 0 20px 0;
  padding: 0;
}

#status_filter .filter__container input:not([type=range]):not([type="radio"]),
#public-filters .filter__container input:not([type=range]):not([type="radio"]) {
  width: 190px;
  height: 40px;
  border-radius: 3px;
  margin-right: 10px;
}

#status_filter .filter__container button,
#public-filters .filter__container button {
  min-width: 95px;
  width: auto;
  height: 40px;
  font-weight: 600;
  color: #fff;
  background-color: #131a25;
  border-color: #131a25;
  border-radius: 3px;
}

#status_filter .filter__container button:hover,
#public-filters .filter__container button:hover {
  background-color: #343a4c;
  border-color: #343a4c;
}

#status_filter .filter__container .match-threshold__wrapper,
#public-filters .filter__container .match-threshold__wrapper {
  display: flex;
  align-items: center;
}

#status_filter .filter__container .match-threshold input[type="text"],
#public-filters .filter__container .match-threshold input[type="text"] {
  width: 60px;
  height: 40px;
}

#status_filter .filter__container .property-status__options,
#public-filters .filter__container .property-status__options {
  display: flex;
  flex-direction: column;
}

#status_filter .filter__container .property-status__options li,
#public-filters .filter__container .property-status__options li {
  display: inline-flex;
  align-items: center;
  padding-bottom: 15px;
}

#status_filter .filter__container .property-status__options li:last-child,
#public-filters .filter__container .property-status__options li:last-child {
  padding-bottom: 0;
}

#status_filter .filter__container .property-status__options .switch,
#status_filter .filter__container .property-status__options .switch--large,
#public-filters .filter__container .property-status__options .switch,
#public-filters .filter__container .property-status__options .switch--large {
  margin-left: auto;
}

#status_filter .filter__container .property-status__labels,
#public-filters .filter__container .property-status__labels {
  display: flex;
  align-items: center;
  font-weight: 600;
}

#status_filter .filter__container .property-status__labels span,
#public-filters .filter__container .property-status__labels span {
  margin-right: 20px;
}

#status_filter .bedrooms-filter__button,
#status_filter .bathrooms-filter__button,
#public-filters .bedrooms-filter__button,
#public-filters .bathrooms-filter__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  border-top: 1px solid #ced2dc;
  border-bottom: 1px solid #ced2dc;
  border-right: 1px solid #ced2dc;
  border-radius: 0;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

#status_filter .bedrooms-filter__hidden:checked+.bedrooms-filter__button,
#status_filter .bedrooms-filter__hidden:checked+.bathrooms-filter__button,
#status_filter .bathrooms-filter__hidden:checked+.bedrooms-filter__button,
#status_filter .bathrooms-filter__hidden:checked+.bathrooms-filter__button,
#public-filters .bedrooms-filter__hidden:checked+.bedrooms-filter__button,
#public-filters .bedrooms-filter__hidden:checked+.bathrooms-filter__button,
#public-filters .bathrooms-filter__hidden:checked+.bedrooms-filter__button,
#public-filters .bathrooms-filter__hidden:checked+.bathrooms-filter__button {
  color: #fff;
  background: #131a25;
  transition: background 0.3s ease-in-out;
}

#status_filter .bedrooms-filter__wrapper div:first-of-type label,
#status_filter .bathrooms-filter__wrapper div:first-of-type label,
#public-filters .bedrooms-filter__wrapper div:first-of-type label,
#public-filters .bathrooms-filter__wrapper div:first-of-type label {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-left: 1px solid #ced2dc !important;
}

#status_filter .bedrooms-filter__wrapper div:last-child label,
#status_filter .bathrooms-filter__wrapper div:last-child label,
#public-filters .bedrooms-filter__wrapper div:last-child label,
#public-filters .bathrooms-filter__wrapper div:last-child label {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

#status_filter .bedrooms-filter__hidden,
#status_filter .bathrooms-filter__hidden,
#public-filters .bedrooms-filter__hidden,
#public-filters .bathrooms-filter__hidden {
  display: none;
}

#status_filter .bathrooms-filter,
#public-filters .bathrooms-filter {
  margin-bottom: 40px;
}

#status_filter .sqft-filter,
#public-filters .sqft-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

#status_filter .sqft-filter__wrapper label,
#public-filters .sqft-filter__wrapper label {
  margin-right: 10px;
}

#status_filter .sqft-filter__wrapper input,
#public-filters .sqft-filter__wrapper input {
  width: 189px;
}

#status_filter .sqft-filter__input--min,
#public-filters .sqft-filter__input--min {
  width: 97px !important;
}

#status_filter .sqft-filter__input--max,
#public-filters .sqft-filter__input--max {
  width: 98px !important;
  margin-right: 0 !important;
}

#status_filter .pool-filter,
#public-filters .pool-filter {
  margin-bottom: 40px;
}

#status_filter .pool-filter__wrapper,
#public-filters .pool-filter__wrapper {
  display: flex;
  justify-content: space-between;
}

#status_filter .pool-filter__wrapper label,
#public-filters .pool-filter__wrapper label {
  margin: 0;
}

#status_filter .match-threshold__wrapper,
#public-filters .match-threshold__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#status_filter .match-threshold__wrapper input[type="range"],
#public-filters .match-threshold__wrapper input[type="range"] {
  width: calc(100% - 80px);
}

#status_filter .match-threshold__wrapper label input,
#public-filters .match-threshold__wrapper label input {
  margin-right: 0 !important;
}

#status_filter label,
#public-filters label {
  justify-content: flex-start;
}

#status_filter .price-filter,
#public-filters .price-filter {
  width: 470px;
  margin: 0 0 0 -288px;
}

@media (max-width: 767.98px) {

  #status_filter .price-filter,
  #public-filters .price-filter {
    width: 100%;
    margin: 0;
  }
}

#status_filter .price-filter__wrapper label,
#public-filters .price-filter__wrapper label {
  display: flex;
}

#status_filter .price-filter__container,
#public-filters .price-filter__container {
  display: flex;
  position: relative;
}

#status_filter .price-filter__fields,
#public-filters .price-filter__fields {
  position: relative;
  width: 350px;
}

@media (max-width: 767.98px) {

  #status_filter .price-filter__fields,
  #public-filters .price-filter__fields {
    width: 100%;
  }
}

#status_filter .price-filter.__range,
#public-filters .price-filter.__range {
  width: 375px;
  margin-top: 20px;
}

@media (max-width: 767.98px) {

  #status_filter .price-filter.__range,
  #public-filters .price-filter.__range {
    width: 100%;
  }
}

#status_filter .price-filter__currency,
#public-filters .price-filter__currency {
  position: absolute;
  padding-left: 12px;
  line-height: 40px;
}

#status_filter .price-filter__input,
#public-filters .price-filter__input {
  width: 130px !important;
  padding: 12px 12px 12px 24px;
}

#status_filter .price-filter__separator,
#public-filters .price-filter__separator {
  margin-right: 10px;
}

#status_filter .price-filter__button,
#public-filters .price-filter__button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 95px;
  height: 40px;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #131a25;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.card {
  padding-top: 40px;
}

.card.agent-container {
  padding: 60px 0 0;
}

.card.full {
  height: 100%;
}

.card.full .card-section,
#dashboard .card.full .card-section--header {
  height: 100%;
}

.card.dark .card-section,
#dashboard .card.dark .card-section--header {
  color: #fff;
  background: #131a25;
}

.card .sink-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.card .card-section,
#dashboard .card .card-section--header {
  padding: 28px;
  background: #fff;
  position: relative;
  box-shadow: 0 0 5px rgba(79, 83, 108, 0.2);
}

.card .card-section+.card-section.large-gap,
#dashboard .card .card-section--header+.card-section.large-gap,
#dashboard .card .card-section+.large-gap.card-section--header,
#dashboard .card .card-section--header+.large-gap.card-section--header {
  margin-top: 12px;
}

.card .card-section:first-child,
#dashboard .card .card-section--header:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.card .card-section:last-child,
#dashboard .card .card-section--header:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.card .card-meta {
  text-transform: uppercase;
  padding-bottom: 12px;
}

.card .card-meta h3 {
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  margin: 0;
}

.card .card-meta h3 .edit {
  position: relative;
  top: 0px;
}

.card .card-meta h3 .edit .icon {
  font-size: 18px;
}

.card .card-content,
.card .card-content--top {
  padding: 12px 0 0 0;
}

.card .card-content--top {
  border-top: 1px solid #343A4C;
}

.card .card-content ul,
.card .card-content--top ul {
  list-style: none;
  margin: 0;
  position: relative;
  z-index: 1;
  padding: 0px;
}

.card .card-content li,
.card .card-content--top li {
  width: 100%;
  padding-bottom: 8px;
  padding-top: 8px;
  line-height: 1em;
  font-weight: 600;
  font-size: 11px;
}

.card .card-content li:last-child,
.card .card-content--top li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.card .card-content li a,
.card .card-content--top li a {
  font-size: 11px;
  font-weight: 600;
  text-transform: none;
  position: relative;
  display: block;
}

.card .card-content li a .ellipsis,
.card .card-content--top li a .ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  padding-right: 20px;
}

.card .card-content li .icon,
.card .card-content--top li .icon {
  color: #CED2DC;
  padding-right: 8px;
}

.card .card-content li span,
.card .card-content--top li span {
  position: relative;
  top: 2px;
}

.card .card-content li span.alert,
.card .card-content--top li span.alert {
  position: absolute;
  right: 0;
  top: -4px;
}

.card .card-content .with-border li,
.card .card-content--top .with-border li {
  border-bottom: 1px solid #eff0f8;
}

.card .card-content .with-border li:last-child,
.card .card-content--top .with-border li:last-child {
  border-bottom: 0;
}

.card .card-content .tight li,
.card .card-content--top .tight li {
  padding-bottom: 8px;
  padding-top: 8px;
}

.card .card-content .tight li:last-child,
.card .card-content--top .tight li:last-child {
  padding-bottom: 0;
}

.card .card-content p,
.card .card-content--top p {
  font-weight: 700;
}

.card .card-content .card-row,
.card .card-content--top .card-row {
  display: flex;
  flex-wrap: no-wrap;
  margin-top: 12px;
}

.card .card-content .card-row .cell,
.card .card-content--top .card-row .cell {
  flex: 1;
  border-bottom: 1px solid #eff0f8 !important;
  border-right: 1px solid #eff0f8 !important;
  padding-top: 0;
  padding-bottom: 10px;
  margin-top: 10px;
}

.card .card-content .card-row .cell p,
.card .card-content--top .card-row .cell p {
  margin: 0;
  line-height: 24px;
}

.card .card-content .card-row .cell:first-child,
.card .card-content--top .card-row .cell:first-child {
  padding-left: 0;
  padding-right: 20px;
}

.card .card-content .card-row .cell:last-child,
.card .card-content--top .card-row .cell:last-child {
  padding-right: 0;
  border-right: 0 !important;
  padding-left: 20px;
}

.card.transparent {
  color: #fff;
}

.card.transparent .card-section,
#dashboard .card.transparent .card-section--header {
  background: rgba(19, 26, 37, 0.95);
  box-shadow: none;
  border: none;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-box-shadow: none;
}

.card.transparent .card-section.market-watch,
#dashboard .card.transparent .market-watch.card-section--header {
  padding-left: 12px;
  padding-right: 12px;
}

.card.transparent .card-content,
.card.transparent .card-content--top {
  padding-top: 12px;
}

.card.transparent .card-meta {
  border: none;
  padding-bottom: 0;
}

.card.transparent .card-meta h3 span {
  display: inline-block;
  position: relative;
  top: 1px;
  margin-left: 8px;
  line-height: 1;
}

.profile-wrapper .card {
  border-radius: 10px;
}

.profile-wrapper .card .card-section h3 .icon,
.profile-wrapper #dashboard .card .card-section--header h3 .icon,
#dashboard .profile-wrapper .card .card-section--header h3 .icon,
.profile-wrapper .card .card-section p .icon,
.profile-wrapper #dashboard .card .card-section--header p .icon,
#dashboard .profile-wrapper .card .card-section--header p .icon {
  font-size: 21px;
  margin-right: 16px;
}

.profile-wrapper .card .card-section h3,
.profile-wrapper #dashboard .card .card-section--header h3,
#dashboard .profile-wrapper .card .card-section--header h3 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 1340px) {

  .card .card-section,
  #dashboard .card .card-section--header {
    padding: 16px;
  }
}

@media screen and (max-width: 1440px) {

  .card .card-content .listing-row h3,
  .card .card-content--top .listing-row h3 {
    font-size: 16px;
  }

  .card .card-content .listing-row.eq .listing-col:first-child img,
  .card .card-content--top .listing-row.eq .listing-col:first-child img {
    display: none;
  }
}

@media screen and (max-width: 1340px) {

  .card .card-content .listing-row h3,
  .card .card-content--top .listing-row h3 {
    font-size: 16px;
  }

  .card.transparent .card-section.market-watch,
  #dashboard .card.transparent .market-watch.card-section--header {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 1200px) {

  .card .card-content li .icon,
  .card .card-content--top li .icon {
    font-size: 16px;
    position: relative;
    top: 2px;
    padding-right: 4px;
  }

  .card .card-content li a,
  .card .card-content--top li a {
    font-size: 10px;
  }

  .card .card-content .listing-row h3,
  .card .card-content--top .listing-row h3 {
    font-size: 12px;
  }
}

@media screen and (max-width: 991px) {

  .card.transparent .card-content,
  .card.transparent .card-content--top {
    padding-top: 0;
  }

  .card.transparent .card-content .listing-count,
  .card.transparent .card-content--top .listing-count {
    margin-bottom: 16px;
  }

  .card .card-meta {
    padding-bottom: 4px;
  }

  .card .card-meta h3 {
    font-size: 16px;
  }

  .card .pls-stats {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  .card .card-content .listing-row h3,
  .card .card-content--top .listing-row h3 {
    font-size: 14px !important;
  }

  .card .card-content li a,
  .card .card-content--top li a {
    font-size: 12px;
  }

  .card .card-content li .icon,
  .card .card-content--top li .icon {
    font-size: 20px;
    padding-right: 8px;
  }
}

.alert {
  font-size: 10px;
  line-height: 2em;
  text-align: center;
  display: inline-block;
  font-style: normal;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
}

.alert.red {
  background: #eb2227;
}

.alert.white {
  background: #fff;
  color: #ff1d4d;
}

.header .alert {
  position: absolute;
  top: 26px;
  right: 6px;
}

@media screen and (max-width: 991px) {
  .header .alert {
    right: -2px;
    top: 16px;
  }
}

.progress {
  background: #131925;
  border-radius: 50px;
  height: 12px;
  position: relative;
}

.progress .bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: auto;
  width: auto;
  border-radius: 50px;
}

.progress .bar.green {
  background: linear-gradient(to right, #8cc63f, #8cc63f 50%, #8cc63f 94%, #8cc63f 100%);
}

.progress .bar.red {
  background: linear-gradient(to right, #eb2227, #eb2227 50%, #f15a29 94%, #f15a29 100%);
}

.progress .bar.scroll-pop {
  width: 0;
}

.profile img {
  width: 53px;
  height: 53px;
  border: 3px solid transparent;
  border-radius: 50%;
  margin-right: 12px;
  display: inline-block;
  vertical-align: middle;
}

.profile.no-hover img {
  border: 0;
}

.profile .information {
  display: inline-block;
  vertical-align: middle;
}

.profile .information a {
  color: #fff;
}

.profile .information a:hover {
  color: #25a9e0;
}

.profile .information h3 {
  margin-bottom: 4px;
  text-transform: uppercase;
  font-weight: 600;
}

.profile .information p {
  color: #949BAF;
  font-weight: 800;
}

.profile .listing-col h3 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 4px;
}

.profile.large img {
  width: 64px;
  height: 64px;
}

.profile.large.inline {
  position: relative;
}

.profile.large.inline img {
  /*
                    position: absolute;
                    left: 0;
                    top: 50%;
                    -webkit-transform: translateY(-50%);
					transform: translateY(-50%);
					*/
}

.profile.large.inline .information {
  padding-left: 64px;
  margin-left: 16px;
}

.profile.full img {
  width: 96px;
  height: 96px;
}

.profile.full.inline {
  position: relative;
}

.profile.full.inline img {
  /*
                    position: absolute;
                    left: 0;
                    top: 50%;
                    -webkit-transform: translateY(-50%);
					transform: translateY(-50%);
					*/
}

.profile.full.inline .information {
  padding-left: 64px;
  margin-left: 16px;
}

.profile.full img {
  width: 220px;
  height: 220px;
}

.profile.full.inline {
  position: relative;
}

.profile.full.inline img {
  /*
				position: absolute;
				left: 0;
				top: 50%;
				-webkit-transform: translateY(-50%);
				transform: translateY(-50%);
				*/
}

.profile.full.inline .information {
  /* padding-left: 96px; */
  margin-left: 16px;
}

@media screen and (max-width: 1200px) {
  .profile img {
    width: 42px;
    height: 42px;
  }

  .profile .information h3 {
    font-size: 12px;
  }

  .profile .information p {
    font-size: 10px;
  }
}

.color-block {
  display: inline-block;
  border-radius: 3px;
  padding: 12px;
  color: #fff;
  margin-left: 8px;
  vertical-align: top;
}

.color-block.orange {
  background: #FFD115;
}

.color-block.exclusive-gradient {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
  color: #fff;
  border: none;
}

.color-block.expired {
  background: #949BAF !important;
}

.color-block.green {
  background: #8BC53F;
}

.color-block.blue {
  background: #29ABE2;
}

.color-block.red {
  background: #FF1D4E !important;
}

.color-block.grey {
  background: #949BAF !important;
}

.blob {
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #CED2DC;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blob p {
  margin-bottom: 32px;
}

.blob .icon {
  color: #4F536C;
  font-size: 64px;
  margin-bottom: 32px;
}

.blob h4 {
  font-weight: 600;
  font-size: 22px;
}

.tooltip {
  position: relative;
}

.tooltip .tt-content {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 12px;
  transform: translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background: #343A4C;
  color: #fff;
  text-transform: none;
  line-height: 1.2em;
  font-size: 12px;
  font-style: italic;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms linear;
  transition-delay: 0ms;
}

.tooltip .tt-content::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-color: #343A4C;
  border: 8px solid #343A4C;
  border-top-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}

.tooltip:hover .tt-content {
  opacity: 1;
  transition-delay: 300ms;
  visibility: visible;
}

[data-title]:hover::before,
.purple[data-title]:hover::before {
  content: attr(data-title);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: -74px;
  min-width: 110px;
  height: 55px;
  border-radius: 5px;
  color: #fff;
  background: #34394c;
  font-size: 19px;
  font-style: italic;
  font-weight: 600;
  text-align: center;
  padding: 0 20px;
  animation: tooltip-effect 500ms ease-in;
  z-index: 99;
}

[data-title]:hover::after {
  content: '';
  position: absolute;
  bottom: -13px;
  /* left: calc(50% - 3.5px); */
  display: inline-block;
  border: 5px solid transparent !important;
  border-bottom: 5px solid #34394c !important;
  animation: tooltip-effect 500ms ease-in;
}

td[data-title]::before,
.purple td[data-title]::before {
  content: none !important;
}

td[data-title]:hover::before {
  content: none !important;
}

td[data-title]:hover::after {
  content: none !important;
}

.tagit li {
  display: block;
  float: left;
  margin: 0;
}

.tagit li.tagit-choice {
  position: relative;
}

.tagit li.tagit-choice-read-only {
  padding: .2em .5em .2em .5em;
}

.tagit li.tagit-choice-editable {
  padding: .2em 18px .2em .5em;
}

.tagit li.tagit-choice a.tagit-label {
  cursor: pointer;
  text-decoration: none;
}

.tagit li.tagit-choice input {
  display: block;
  float: left;
  margin: 2px 5px 2px 0;
}

.tagit .tagit-hidden-field {
  display: none;
}

ul.tagit li.tagit-choice:hover,
ul.tagit li.tagit-choice.remove {
  background-color: #bbcef1;
  border-color: #6d95e0;
}

ul.tagit li.tagit-choice a.tagLabel:hover,
ul.tagit li.tagit-choice a.tagit-close .text-icon:hover {
  color: #222;
}

.tagit-autocomplete.ui-autocomplete {
  position: absolute;
  cursor: default;
}

* html .tagit-autocomplete.ui-autocomplete {
  width: 1px;
}

.tagit-autocomplete.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  float: left;
}

.tagit-autocomplete.ui-menu .ui-menu {
  margin-top: -3px;
}

.tagit-autocomplete.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  zoom: 1;
  float: left;
  clear: left;
  width: 100%;
}

.tagit-autocomplete.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: .2em .4em;
  line-height: 1.5;
  zoom: 1;
}

.tagit-autocomplete .ui-menu .ui-menu-item a.ui-state-hover,
.tagit-autocomplete .ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}

.tagit-autocomplete.ui-widget-content {
  border: 1px solid #aaaaaa;
  background: #ffffff 50% 50% repeat-x;
  color: #222222;
}

.tagit-autocomplete.ui-corner-all,
.tagit-autocomplete .ui-corner-all {
  border-radius: 4px;
}

.tagit-autocomplete .ui-state-hover,
.tagit-autocomplete .ui-state-focus {
  border: 1px solid #999999;
  background: #dadada;
  font-weight: normal;
  color: #212121;
}

.tagit-autocomplete .ui-state-active {
  border: 1px solid #aaaaaa;
}

.tagit-autocomplete .ui-widget-content {
  border: 1px solid #aaaaaa;
}

.tagit .ui-helper-hidden-accessible {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
}

[type=range] {
  -webkit-appearance: none;
  background: transparent;
  margin: 7px 0;
  width: 100%;
}

[type='range']::-moz-focus-outer {
  border: 0;
}

[type='range']:focus {
  outline: 0;
}

[type='range']:focus::-webkit-slider-runnable-track {
  background: #ced2dc;
}

[type='range']:focus::-ms-fill-lower {
  background: #ced2dc;
}

[type='range']:focus::-ms-fill-upper {
  background: #ced2dc;
}

[type='range']::-webkit-slider-runnable-track {
  cursor: default;
  height: 1px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  background: #ced2dc;
  border: 1px solid #ced2dc;
  border-radius: 0px;
}

[type='range']::-webkit-slider-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  background: #131a25;
  border: 0 solid #ced2dc;
  border-radius: 7px;
  box-sizing: border-box;
  cursor: default;
  height: 14px;
  width: 14px;
  -webkit-appearance: none;
  margin-top: -7.5px;
}

[type='range']::-moz-range-track {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  cursor: default;
  height: 1px;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  background: #ced2dc;
  border: 1px solid #ced2dc;
  border-radius: 0px;
  height: 0.5px;
}

[type='range']::-moz-range-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  background: #131a25;
  border: 0 solid #ced2dc;
  border-radius: 7px;
  box-sizing: border-box;
  cursor: default;
  height: 14px;
  width: 14px;
}

[type='range']::-ms-track {
  cursor: default;
  height: 1px;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  background: transparent;
  border-color: transparent;
  border-width: 7px 0;
  color: transparent;
}

[type='range']::-ms-fill-lower {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  background: #ced2dc;
  border: 1px solid #ced2dc;
  border-radius: 0px;
}

[type='range']::-ms-fill-upper {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  background: #ced2dc;
  border: 1px solid #ced2dc;
  border-radius: 0px;
}

[type='range']::-ms-thumb {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(13, 13, 13, 0);
  background: #131a25;
  border: 0 solid #ced2dc;
  border-radius: 7px;
  box-sizing: border-box;
  cursor: default;
  height: 14px;
  width: 14px;
  margin-top: 0.25px;
}

[type='range']:disabled::-webkit-slider-thumb,
[type='range']:disabled::-moz-range-thumb,
[type='range']:disabled::-ms-thumb,
[type='range']:disabled::-webkit-slider-runnable-track,
[type='range']:disabled::-ms-fill-lower,
[type='range']:disabled::-ms-fill-upper {
  cursor: not-allowed;
}

.save-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 100000;
}

.save-search__overlay {
  display: flex;
  position: fixed;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.save-search__modal {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  width: 780px;
  max-width: 1160px;
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 767.98px) {
  .save-search__modal>.row {
    width: 100%;
  }
}

.save-search__modal--is-visible .save-search__modal,
.save-search__modal--is-visible .save-search__overlay {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease-in-out;
}

.save-search__header {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.save-search__header svg {
  margin-bottom: 20px;
}

.save-search__heading {
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

@media (max-width: 575.98px) {
  .save-search__heading {
    font-size: 21px;
    margin-bottom: 20px;
  }
}

.save-search__close,
.save-search__close--members {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  top: -20px;
  right: -20px;
  color: #fff;
  border-width: 1px;
  border-radius: 50%;
  z-index: 100;
}

.save-search__close--members {
  top: 10px;
  right: 10px;
}

.save-search__close:before,
.save-search__close--members:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-color: #eff0f8;
  border-radius: 50%;
  opacity: 0;
  animation: icon-background-fade 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.save-search__close:after,
.save-search__close--members:after {
  content: '\d7';
  position: absolute;
  color: #4f536c;
  width: 40px;
  height: 42px;
  font-size: 30px;
  line-height: 40px;
  opacity: 0.5;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.save-search__close:active,
.save-search__close--members:active {
  outline: none;
  background-color: #ced2dc;
}

.save-search__close:focus,
.save-search__close--members:focus {
  outline: 0;
}

.save-search__close:focus:after,
.save-search__close--members:focus:after {
  opacity: 1;
}

.save-search__close:hover:before,
.save-search__close--members:hover:before {
  opacity: 1;
  transform: scale(1);
  animation: icon-background-expand 0.15s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.save-search__close:hover:after,
.save-search__close--members:hover:after {
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.save-search__section-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 23px;
  text-align: center;
  margin-bottom: 20px;
}

.save-search__type {
  margin-right: 20px;
}

.save-search__input {
  width: 100%;
  border-bottom: 1px solid #ced2dc;
  padding-bottom: 10px;
}

.save-search__input input {
  width: calc(100% - 55px);
}

.save-search__input input:focus {
  border: none;
}

.save-search__name {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
}

@media (max-width: 575.98px) {
  .save-search__name {
    font-size: 16px;
  }
}

.save-search .data {
  margin-bottom: 20px;
}

.save-search .data__container {
  display: grid;
  grid-template-columns: 700px;
  grid-template-rows: auto;
  grid-gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .save-search .data__container {
    grid-template-columns: 100%;
  }
}

.save-search .data__section {
  border: 1px solid #ced2dc;
  border-radius: 10px;
  padding: 40px;
}

@media (max-width: 575.98px) {
  .save-search .data__section {
    padding: 20px;
  }
}

.save-search__footer {
  display: flex;
  justify-content: space-between;
}

.save-search__btn,
.save-search__btn--edit,
.save-search__btn--save {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  border-width: 1px;
  border-style: solid;
  border-radius: 3px;
}

@media (max-width: 575.98px) {

  .save-search__btn,
  .save-search__btn--edit,
  .save-search__btn--save {
    width: 100%;
    font-size: 14px;
    height: 45px;
  }
}

.save-search__btn--edit {
  color: #4f536c;
  border-color: #ced2dc;
}

@media (max-width: 575.98px) {
  .save-search__btn--edit {
    margin-bottom: 10px;
  }
}

.save-search__btn--edit:hover {
  color: #fff;
  background-color: #4f536c;
  border-color: #4f536c;
}

.save-search__btn--save {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #8bc53f;
  border-color: #8bc53f;
}

.save-search__btn--save:hover {
  color: #8bc53f;
  background-color: #fff;
  border: 1px solid #8bc53f;
}

.save-search .info {
  width: 100%;
  line-height: 1.2;
}

.save-search .info__heading {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.save-search .info__label {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #eff0f8;
  border-right: 1px solid #eff0f8;
  padding: 0 20px 10px 0;
}

@media (max-width: 575.98px) {
  .save-search .info__label label {
    margin-bottom: 0;
  }
}

.save-search .info__details {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #eff0f8;
  padding: 0 0 10px 20px;
}

@media (max-width: 575.98px) {
  .save-search .info__details label {
    margin-bottom: 0;
  }
}

.save-search .info__table {
  width: 100%;
}

.save-search .info__spacer {
  height: 10px;
}

@media (max-width: 575.98px) {

  .save-search__close,
  .save-search__close--members {
    top: -20px;
    right: 0;
  }
}

.remark-details {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}

@media (max-width: 767.98px) {
  .remark-details {
    padding: 30px 0 0;
  }
}

.remark-details__content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 80px;
  border: 1px solid #ced2dc;
  border-radius: 10px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .remark-details__content {
    width: 100%;
  }
}

.header-pagination {
  display: flex;
  align-items: center;
  height: 100px;
}

.header-pagination__location {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.header-pagination__select {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-pagination__current {
  display: block;
  font-weight: 600;
  margin-right: 25px;
}

.header-pagination__label {
  display: block;
  font-weight: 600;
  margin-right: 10px;
}

.header-pagination__count {
  display: none;
}

.watchlist__toggle {
  display: flex;
  margin-right: 10px;
}

.watchlist__option {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50.64px;
  font-size: 12px;
  line-height: 34px;
  color: #131a25;
  text-align: center;
  position: relative;
  background: #fff;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  overflow: hidden;
}

.watchlist__option:first-child {
  border-radius: 3px 0px 0px 3px;
  border-right: none;
}

.watchlist__option:last-child {
  border-radius: 0px 3px 3px 0px;
  border-left: none;
}

.watchlist__option span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.watchlist__option .radio+span {
  margin-left: 0;
}

.watchlist__option .label-text {
  font-size: 16px;
}

.watchlist__option input {
  position: absolute;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  cursor: pointer;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.watchlist__option input[type=radio]:checked+span {
  color: #fff;
  background: #4f536c;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.dropdown-list {
  position: absolute;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(79, 83, 108, 0.2);
  top: 25px;
  min-width: 160px;
  right: 0;
  display: none;
}

.dropdown-list .triangle-up {
  position: absolute;
  width: 0;
  height: 0;
  top: 2px;
  right: 20px;
  box-sizing: border-box;
  border: 6px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.1);
}

.dropdown-list .triangle-up.triangle-up__no-right {
  right: 0px;
}

.dropdown-list ul {
  display: grid;
  padding: 5px 10px;
  margin: 0px;
}

.dropdown-list.dropdown-list-ul__nopad ul {
  padding: 0px;
}

.dropdown-list.dropdown-list__capitalize a {
  line-height: 30px;
  text-transform: capitalize;
  font-weight: 600;
}

.dropdown-list li {
  display: inline-block;
  margin: 0;
  position: relative;
}

.dropdown-list a {
  font-weight: 100;
  font-size: 16px !important;
  line-height: 2px;
  text-transform: uppercase;
  padding: 8px 15px;
  display: block;
  color: #131a25;
}

#search-location {
  display: flex;
  flex-wrap: wrap;
}

.search-location__list {
  margin: 5px 10px 0px 0;
  flex-basis: auto;
}

.search-location__list--sub {
  background: #f0f0f8;
  font-weight: 600;
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #4f536c !important;
  margin-bottom: 2px;
}

.search-location__list--close:after {
  content: "\f057" !important;
  color: #4f536c;
  font-family: "FontAwesome";
  position: relative;
  left: 4px;
  font-size: 16px;
  cursor: pointer;
}

.pac-target-input {
  background-color: #fff;
  border: 1px solid #ced2dc !important;
  border-radius: 5px;
}

.es-tokenize {
  display: block;
  background-color: #fff;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  list-style-type: none;
  margin-bottom: 0;
  padding: 0 20px;
}

.es-tokenize .es-tokenize-input {
  padding: 0 !important;
}

.es-tokenize li {
  display: inline-block;
}

.es-tokenize input {
  border: 0px !important;
  outline: unset !important;
}

.es-tokenize input:focus {
  border: 0 !important;
  outline: unset !important;
}

.es-tokenize .tag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  float: left;
  color: #4f536c;
  background: #eff2f7;
  font-size: 13px !important;
  font-weight: 600;
  line-height: 12px !important;
  border-radius: 20px;
  margin: 5px 10px 0 0;
  padding: 0 15px 0 10px;
}

.es-tokenize .tag-item a {
  cursor: pointer;
}

.es-tokenize .tag-item .dismiss:after {
  content: "\f057" !important;
  font-family: "FontAwesome";
  font-size: 14px;
  position: relative;
  left: 4px;
}

/*-----GOOGLE STYLES-----*/
.pac-container {
  background-color: #fff;
  position: absolute !important;
  z-index: 1000;
  border-radius: 2px;
  border-top: 1px solid #d9d9d9;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  overflow: hidden;
}

.pac-logo:after {
  content: "";
  padding: 1px 1px 1px 0;
  height: 18px;
  box-sizing: border-box;
  text-align: right;
  display: block;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: 120px 14px;
}

.hdpi.pac-logo:after {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/powered-by-google-on-white3_hdpi.png);
}

.pac-item {
  cursor: default;
  padding: 0 4px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 30px;
  text-align: left;
  border-top: 1px solid #e6e6e6;
  font-size: 11px;
  color: #999;
}

.pac-item:hover {
  background-color: #fafafa;
}

.pac-item-selected,
.pac-item-selected:hover {
  background-color: #ebf2fe;
}

.pac-matched {
  font-weight: 700;
}

.pac-item-query {
  font-size: 13px;
  padding-right: 3px;
  color: #000;
}

.pac-icon {
  width: 15px;
  height: 20px;
  margin-right: 7px;
  margin-top: 6px;
  display: inline-block;
  vertical-align: top;
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons.png);
  background-size: 34px;
}

.hdpi .pac-icon {
  background-image: url(https://maps.gstatic.com/mapfiles/api-3/images/autocomplete-icons_hdpi.png);
}

.pac-icon-search {
  background-position: -1px -1px;
}

.pac-item-selected .pac-icon-search {
  background-position: -18px -1px;
}

.pac-icon-marker {
  background-position: -1px -161px;
}

.pac-item-selected .pac-icon-marker {
  background-position: -18px -161px;
}

.pac-placeholder {
  color: gray;
}

.col-content form .acf-fields .acf-field textarea,
.page-content .middle-col .col-content--large form .acf-fields .acf-field textarea,
.col-content form .acf-fields .acf-field .select2,
.page-content .middle-col .col-content--large form .acf-fields .acf-field .select2,
.col-content form .acf-fields .acf-field .select2--public,
.page-content .middle-col .col-content--large form .acf-fields .acf-field .select2--public,
.col-content form .acf-fields .acf-field .select2--public2,
.page-content .middle-col .col-content--large form .acf-fields .acf-field .select2--public2 {
  font-size: 16px;
}

/*----//-GOOGLE STYLES-----*/
.wants-row {
  display: flex;
}

/*
.oneLine #want-header-row.sort .header-label,
.oneLine .wants-row .want-row-col {
	display: flex;
	justify-content: left;
	align-content: left;
	padding: 20px;
}
*/
/*#want-header-row.sort .header-label.header-label-number,*/
/*.wants-row .want-row-col.want-number,*/
/*#want-header-row.sort .header-label.header-label-status,*/
/*.wants-row .want-row-col.want-status {*/
/*    width: 7.5%;*/
/*}*/
/*#want-header-row.sort .header-label.header-label-address,*/
/*.wants-row .want-row-col.want-address {*/
/*    width: 25%;*/
/*}*/
/*#want-header-row.sort .header-label.header-label-bedroom,*/
/*.wants-row .want-row-col.want-bedroom,*/
/*#want-header-row.sort .header-label.header-label-bath,*/
/*.wants-row .want-row-col.want-bath,*/
/*#want-header-row.sort .header-label.header-label-days,*/
/*.wants-row .want-row-col.want-days {*/
/*    width: 5%;*/
/*}*/
/*#want-header-row.sort .header-label.header-label-want-type,*/
/*.wants-row .want-row-col.want-type {*/
/*    width: 15%;*/
/*}*/
/*#want-header-row.sort .header-label.header-label-sqft,*/
/*.wants-row .want-row-col.want-sqft,*/
/*#want-header-row.sort .header-label.header-label-price,*/
/*.wants-row .want-row-col.want-price,*/
/*#want-header-row.sort .header-label.header-label-pool,*/
/*.wants-row .want-row-col.want-pool {*/
/*    width: 10%;*/
/*}*/
.wants-row .want-row-col.want-status span {
  display: block;
  background: #8BC53F;
  height: 40px;
  width: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 3px;
}

.wants-row .want-row-col.want-status span.orange {
  background: #FFD115;
}

.wants-row .want-row-col.want-status span.exclusive-gradient {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
  color: #fff;
  border: none;
}

.wants-row .want-row-col.want-status span.expired {
  background: #949BAF !important;
}

.wants-row .want-row-col.want-status span.green {
  background: #8BC53F;
}

.wants-row .want-row-col.want-status span.blue {
  background: #29ABE2;
}

.wants-row .want-row-col.want-status span.red {
  background: #FF1D4E !important;
}

.wants-row .want-row-col.want-address span a,
.wants-row .want-row-col.want-price span a {
  font-size: 18px;
  font-weight: 600;
  color: #25a9e0;
}

.wants-row .want-row-col.want-address span a:hover,
.wants-row .want-row-col.want-price span a:hover {
  color: #25a9e0;
  text-decoration: underline;
}

.wants-row .want-row-col.want-number .label-text {
  border: 1px solid #ced2dc;
  border-radius: 5px;
  padding: 8px 8px;
  background: #fff;
  vertical-align: middle;
}

.wants-row .want-row-col.want-number .label-text:before {
  content: "\f096";
  font-family: "FontAwesome";
  line-height: 1;
  font-weight: 100 !important;
  -webkit-font-smoothing: antialiased;
  width: 1em;
  display: inline-block;
  margin-right: 0px;
  font-size: 25px;
  vertical-align: middle;
  color: #131a25;
}

.agreement input[type="checkbox"]+.label-text:before,
.agreement input[type="checkbox"]+.label-text:before {
  color: unset !important;
}

.dasboard-class .tokenize>.tokens-container>.token>.dismiss {
  top: 0px;
}

.custom-file-label {
  position: unset;
}

.custom-file>.custom-file-label:after {
  display: none;
}

.tokenize-dropdown .dropdown {
  z-index: 1000 !important;
}

.form-control:focus,
.tokenize.focus>.tokens-container {
  outline: 0;
  box-shadow: none !important;
}

.tokenize>.tokens-container>.token-search>input {
  line-height: 28px !important;
}

@media (max-width: 767.98px) {
  .tokenize>.tokens-container>.token-search>input {
    font-size: 12px !important;
  }
}

.single-listing-view__modal {
  margin: auto;
}

.single-listing-view__modal .listing-details--vcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: perspective(1px) translate(-50%, -50%);
  padding: 40px !important;
  padding-bottom: 16px !important;
}

#expertModal {
  overflow: hidden !important;
}

#edit_search.modal.in {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: all 0.4s ease-in-out;
  padding-right: 0 !important;
}

body {
  padding-right: 0 !important;
}

#edit_search .modal-dialog {
  max-width: 780px;
  width: 780px;
}

#edit_search .modal-dialog .modal-header {
  border: none;
  margin: 0;
  padding: 0;
}

#edit_search .modal-dialog .modal-content {
  border-radius: 5px;
}

#edit_search .modal-dialog .modal-content .modal-body {
  padding: 40px;
}

#expertModal {
  overflow: hidden !important;
}

#expertModal.modal {
  justify-content: center;
  align-items: center;
  background: transparent;
  transition: all 0.4s ease-in-out;
  padding-right: 0 !important;
}

body {
  padding-right: 0 !important;
}

#expertModal .modal-dialog {
  max-width: 780px;
  width: 780px;
}

#expertModal .modal-dialog .modal-content {
  position: relative;
  margin: 0;
}

#expertModal .modal-dialog .modal-content .modal-header {
  border: none;
  margin: 0;
  padding: 0;
}

#expertModal .modal-dialog .modal-content .modal-header .save-search__close--members {
  right: 10px !important;
  top: 10px !important;
}

#expertModal .modal-dialog .modal-content .modal-body {
  width: 100%;
  margin: 0;
}

#reviewsModal {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
  z-index: 1000000;
}

#reviewsModal .gform_title {
  display: none;
}

#reviewsModal li {
  list-style-type: none;
  margin-right: 3px;
}

#reviewsModal ul {
  display: flex;
  margin-bottom: 0px;
}

#reviewsModal .modal-dialog {
  max-width: 780px;
}

#reviewsModal .modal-body {
  padding-top: 0px;
}

#reviewsModal .modal-content {
  width: 780px;
  height: 640px;
  background: #fff;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  padding: 40px 30px 50px;
  overflow: hidden;
}

#reviewsModal span,
#reviewsModal p,
#reviewsModal .gfield_description {
  color: #131a25;
}

#reviewsModal svg {
  width: 16px;
  height: 16px;
}

#reviewsModal .modal-header {
  border-bottom: none;
}

#reviewsModal .modal-header span {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

#reviewsModal .reviews-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 10px auto 44px;
}

#reviewsModal .reviews-info .reviews-info_image {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 25px;
}

#reviewsModal .reviews-info .reviews-info_image img {
  width: 100%;
  height: 100%;
}

#reviewsModal .reviews-info span {
  font-size: 18px;
  line-height: 21px;
  font-weight: 700;
  color: #25a9e0;
  text-transform: uppercase;
}

#reviewsModal .reviews-info p {
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0px;
}

#reviewsModal .gfield_description {
  font-size: 18px;
  font-weight: 600;
}

#reviewsModal #gform_fields_7 {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0px !important;
}

#reviewsModal .gform_button {
  width: 100%;
  height: 50px;
  background: #ff1d4e;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-top: 5px;
}

#reviewsModal .modal-reviews-back ul {
  margin: 24px auto 43px;
}

#reviewsModal .modal-reviews-back li {
  margin-right: 7px;
}

#reviewsModal .modal-reviews-back span {
  font-size: 18px;
  font-weight: 600;
}

#reviewsModal .modal-reviews-back textarea {
  font-size: 15px;
  font-weight: 600;
  resize: none;
  width: 100%;
  height: 100px;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  margin-top: 26px;
  padding: 15px 10px;
}

#reviewsModal .modal-reviews-back svg {
  fill: transparent;
  stroke-width: 1px;
  stroke: #cfd2dc;
  width: 27px;
  height: 27px;
}

#reviewsModal .modal-reviews-back svg:hover {
  fill: #ff1d4e;
  cursor: pointer;
  stroke-width: 0px;
}

.reviews-list.modal {
  z-index: 1000000;
  background-color: rgba(0, 0, 0, 0);
}

.modal.in {
  display: flex;
}

.reviews-list p {
  margin-bottom: 0px;
}

.reviews-list__container {
  width: 760px;
  background-color: #fff;
  margin: 0 auto;
  min-height: 100vh;
}

.reviews-list__header {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  position: relative;
  padding: 20px 0px;
}

.reviews-list__header svg {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.reviews-list__header img.review_logo {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.reviews-list__header span {
  font-size: 24px;
  text-transform: uppercase;
  color: #131a25;
  font-weight: 800;
}

.reviews-list__header button {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 40px;
  height: 40px;
  border: 1px solid #949baf;
  border-radius: 50%;
  text-align: center;
  padding: 0px !important;
}

.reviews-list__header button span {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 1px;
  height: 20px;
  background: #949baf;
  margin: auto;
  transform: rotate(45deg);
}

.reviews-list__header button span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 1px;
  height: 20px;
  background: #949baf;
  margin: auto;
  transform: rotate(-90deg);
}

.reviews-list__agent {
  background-color: #eff0f8;
  display: flex;
  height: 180px;
  align-items: center;
}

.reviews-list__agent__info {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  max-width: 50%;
  align-items: center;
  border-right: 1px solid #fff;
}

.reviews-list__agent__info img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 50%;
}

.reviews-list__agent__info span {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #25a9e0;
}

.reviews-list__agent__info p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #131a25;
}

.reviews-list__agent__stars {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-list__agent__stars span {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
}

.reviews-list__agent__stars p {
  font-size: 50px !important;
  line-height: 60px;
  font-weight: 800;
  color: #131a25;
  margin: 0px;
}

.reviews-list__agent__stars ul {
  display: flex;
  margin-bottom: 5px;
}

.reviews-list__agent__stars ul li {
  list-style-type: none;
  display: flex;
  margin: 0px 2px;
}

.reviews-list__agent__stars ul svg {
  width: 26px;
  height: 26px;
}

.reviews-list__block {
  border-bottom: 1px solid #CED2DC;
  padding: 0px 20px 40px 20px;
}

.reviews-list__block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px;
}

.reviews-list__block__header__name {
  display: flex;
  flex: 0 0 50%;
  max-width: 50%;
  align-items: center;
}

.reviews-list__block__header__name img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.reviews-list__block__header__name span {
  font-size: 18px;
  font-weight: 600;
  color: #131a25;
}

.reviews-list__block__header__stars {
  display: flex;
  align-items: center;
}

.reviews-list__block__header__stars span {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
}

.reviews-list__block__header__stars ul {
  display: flex;
  margin: 0px;
}

.reviews-list__block__header__stars ul li {
  list-style-type: none;
  display: flex;
}

.reviews-list__block__header__stars ul li.gray-star svg {
  fill: #cfd2dc;
}

.reviews-list__block__header__stars ul svg {
  width: 16px;
  height: 16px;
  fill: #ff1d4e;
}

.reviews-list__block__header__date {
  margin-left: 10px;
}

.reviews-list__block__content p {
  font-size: 16px;
  line-height: 26px !important;
  font-weight: 600;
  color: #131a25;
}

.reviews-list__success {
  border-bottom: none;
  padding: 0px 20px 0px 10px;
}

.reviews-list__no-reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 0px;
}

.reviews-list__no-reviews span {
  font-size: 18px;
  font-weight: 600;
  color: #131a25;
}

.reviews-list__no-reviews svg {
  width: 70px;
  height: auto;
  margin-top: 15px;
}

.reviews-list__no-reviews img.hands {
  width: 70px;
  height: auto;
  margin-top: 15px;
}

.modal-open,
.fix-body-pad {
  padding: 0px !important;
  overflow-y: visible !important;
}

.gen-login-form {
  z-index: 1000000 !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  display: none !important;
}

.gen-login-form.in {
  display: flex !important;
  align-items: center;
}

.gen-login-form a:hover {
  color: #25a9e0;
}

.gen-login-form form {
  width: 100%;
}

.gen-login-form#modal-login-reg form {
  min-height: 500px;
}

.gen-login-form .gen-form-content,
.gen-login-form .gen-form-content--sign-up {
  width: 580px;
  height: auto;
  min-height: 600px;
  background-color: #fff;
  border-radius: 5px;
  padding: 50px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575.98px) {

  .gen-login-form .gen-form-content,
  .gen-login-form .gen-form-content--sign-up {
    padding: 20px;
    width: 90%;
  }
}

.gen-login-form__wrap {
  position: relative;
}

.gen-login-form__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gen-login-form__header .logo svg {
  width: 100px;
  height: 100px;
  fill: #ff1d4e;
}

@media (max-width: 575.98px) {
  .gen-login-form__header .logo svg {
    width: 80px;
    height: 80px;
  }
}

.gen-login-form__header span {
  font-size: 32px;
  color: #131a25;
  font-weight: 800;
}

@media (max-width: 575.98px) {
  .gen-login-form__header span {
    font-size: 25px;
  }
}

.gen-login-form__header .login-errors,
.gen-login-form__header .signup-errors {
  text-align: center;
  background: #ff1d4e;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.gen-login-form__header .login-errors h3,
.gen-login-form__header .login-errors p,
.gen-login-form__header .signup-errors h3,
.gen-login-form__header .signup-errors p {
  margin: 0px;
  padding: 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.gen-login-form .subform--hidden {
  display: none;
}

.gen-login-form__body {
  margin: 40px auto;
  width: 100%;
  text-align: center;
}

@media (max-width: 575.98px) {
  .gen-login-form__body {
    margin-top: 25px;
  }
}

.gen-login-form__body input:not([type=range]) {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #cfd2dc;
  padding: 5px 20px 5px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0px;
  color: #131a25;
}

.gen-login-form__body input:not([type=range])::-webkit-input-placeholder {
  color: #4f536c;
  font-size: 16px;
  font-weight: 600;
}

.gen-login-form__body input:not([type=range])::-moz-placeholder {
  color: #4f536c;
  font-size: 16px;
  font-weight: 600;
}

.gen-login-form__body input:not([type=range]):-moz-placeholder {
  color: #4f536c;
  font-size: 16px;
  font-weight: 600;
}

.gen-login-form__body input:not([type=range]):-ms-input-placeholder {
  color: #4f536c;
  font-size: 16px;
  font-weight: 600;
}

.gen-login-form__body input:not([type=range]).error-field {
  border: 1px solid #ff1d4e !important;
}

.gen-login-form__body .agent-question {
  margin-bottom: 20px;
}

.gen-login-form__body .agent-question a {
  text-decoration: underline !important;
}

.gen-login-form__body .gen-login-form__input {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .gen-login-form__body .gen-login-form__input {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .gen-login-form__body .gen-login-form__input--long {
    flex-wrap: wrap;
  }
}

.gen-login-form__body .gen-login-form__input svg {
  position: absolute;
  top: 12px;
  left: 0px;
  width: 26px;
  height: 26px;
}

.gen-login-form__body .gen-login-form__input:last-child svg {
  width: 21px;
  height: 26px;
  left: 2px;
}

.gen-login-form__body p {
  margin: 0px;
  font-size: 18px !important;
  font-weight: 600;
  margin-bottom: 0px;
  line-height: 28px;
}

@media (max-width: 575.98px) {
  .gen-login-form__body p {
    font-size: 14px !important;
  }
}

.gen-login-form__body a {
  margin: 0px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

@media (max-width: 575.98px) {
  .gen-login-form__body a {
    font-size: 14px !important;
  }
}

.gen-login-form__footer {
  text-align: center;
  width: 100%;
}

.gen-login-form__footer button {
  width: 100%;
  height: 50px;
  text-align: center;
  background: #ff1d4e;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gen-login-form__footer button:hover {
  background-color: #713895;
}

.gen-login-form__footer--mod button {
  background: #131a25;
}

.gen-login-form__footer--mod button:hover {
  background: #131a25;
}

.gen-login-form__footer p,
.gen-login-form__footer a {
  color: #131a25;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0px;
}

.gen-login-form__footer p:hover,
.gen-login-form__footer a:hover {
  color: #ff1d4e;
}

.gen-login-form__footer i {
  color: #131a25;
  font-size: 20px;
  font-weight: 800;
  display: block;
  margin-top: 20px;
  text-transform: uppercase;
  font-style: normal;
}

@media (max-width: 575.98px) {
  .gen-login-form__footer i {
    font-size: 16px;
  }
}

.gen-login-form__check-gen {
  margin: 20px 0px 30px;
}

.gen-login-form__check-gen .l-container {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 24px;
  color: #131a25;
  margin-bottom: 0px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (max-width: 575.98px) {
  .gen-login-form__check-gen .l-container {
    font-size: 12px !important;
  }

  .gen-login-form__check-gen .l-container a {
    font-size: 12px !important;
  }
}

.gen-login-form__check-gen .l-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.gen-login-form__check-gen .checkmark {
  position: absolute;
  top: 1px;
  left: 0px;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid gray;
}

.gen-login-form__check-gen input:checked~.checkmark {
  background-color: #000;
  border: 1px solid #000;
}

.gen-login-form__check-gen .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.gen-login-form__check-gen input:checked~.checkmark:after {
  display: block;
}

.gen-login-form__check-gen .checkmark:after {
  left: 6px;
  top: 2px;
  width: 7px;
  height: 11px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#expertModal.enlarge-map {
  width: 80%;
  height: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: visible !important;
}

#expertModal.enlarge-map .modal-body {
  height: 80vh;
  border-radius: 0;
}

#expertModal.enlarge-map.modal-expertModal .modal-body {
  padding: 0 !important;
}

#expertModal.enlarge-map .enlarge-map-close {
  top: 0 !important;
  right: -50px !important;
}

#expertModal.enlarge-map .enlarge-map-close:after {
  color: #fff !important;
}

#expertModal.enlarge-map .enlarge-map-close:hover:after {
  color: #4f536c !important;
}

#modal-reset .gen-login-form__body {
  margin-bottom: 30px;
}

#modal-reset .gen-login-form__body .gen-login-form__input {
  margin-top: 40px;
  margin-bottom: 0px;
}

#modal-reset .gen-login-form__body input {
  border: 1px solid #cfd2dc;
  padding: 5px 20px;
  border-radius: 5px;
}

#modal-login-reset-link .gen-login-form__body p {
  margin-bottom: 30px;
}

#modal-login-reset-link .gen-login-form__body a {
  text-decoration: underline;
}

#modal-login-reg .agent-question .gen-login-form__body {
  margin-bottom: 20px;
}

#modal-login-reg .agent-question .gen-login-form__footer p {
  margin-bottom: 20px;
  margin-top: 20px;
}

#modal-login-reg .agent-question .gen-login-form__footer p:hover {
  color: unset;
}

#modal-login-reg .gen-login-form__body {
  margin-bottom: 10px;
}

#modal-login-reg .gen-login-form__body p {
  margin-bottom: 40px;
}

#modal-login-reg .gen-login-form__body input {
  border: 1px solid #cfd2dc;
  padding: 5px 20px;
  border-radius: 5px;
}

#modal-login-reg .gen-login-form__body .gen-login-form__input--long {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#modal-login-reg .gen-login-form__body .gen-login-form__input--long .gen-login-form__input {
  flex: 0 0 48%;
  max-width: 48%;
}

#modal-login-reg .gen-login-form__footer {
  text-align: center;
  width: 100%;
}

#modal-login-reg .gen-login-form__footer button {
  width: 200px;
  margin-right: auto;
  margin-left: auto;
}

#modal-login-reg .gen-login-form__footer a {
  text-decoration: underline;
}

.gen-login-form.in.noti-modal {
  display: block !important;
  align-items: center;
}

.noti-modal {
  z-index: 1000000 !important;
  background-color: rgba(0, 0, 0, 0) !important;
  justify-content: flex-end;
  align-items: center;
  padding-right: 25px;
  top: calc(100% - 505px) !important;
  left: calc(100% - 375px) !important;
}

@media (max-width: 767.98px) {
  .noti-modal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100%;
    top: unset !important;
    left: unset !important;
  }
}

.noti-modal.gen-login-form form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 350px;
  padding: 50px 40px;
}

@media (max-width: 767.98px) {
  .noti-modal.gen-login-form form {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    padding: 30px;
  }
}

.noti-modal.gen-login-form .gen-login-form__footer {
  width: 160px;
  margin: 0px auto;
}

.noti-modal.gen-login-form .gen-login-form__footer button {
  margin-bottom: 0px;
}

.noti-modal.gen-login-form .gen-login-form__check-gen .l-container {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.noti-modal.gen-login-form .gen-login-form__check-gen .checkmark {
  border-color: #fff;
  background-color: transparent;
}

.noti-modal.gen-login-form .gen-login-form__check-gen .checkmark:after {
  border-color: #fff;
  top: 2px;
}

.noti-modal__wrap {
  height: auto;
  background-color: #4f536c;
  position: relative;
  border-radius: 5px;
}

.noti-modal__bell {
  text-align: center;
  position: relative;
  display: inline-block;
}

.noti-modal__bell p {
  display: block;
  margin: 0px;
  position: absolute;
  top: -9px;
  right: -14px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #ff1d4e;
  text-align: center;
  background-color: #fff;
  font-weight: 700;
}

.noti-modal__bell svg {
  width: 40px;
  height: auto;
  display: block;
}

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

.noti-modal__header span {
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  display: block;
  margin: 20px 0px;
}

.noti-modal__main p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  display: block;
  text-align: center;
  margin: 0px;
}

@media (max-width: 767.98px) {
  .noti-modal__main p {
    font-size: 18px;
  }
}

.noti-modal__checkboxes {
  display: flex;
  justify-content: space-between;
  width: 70%;
  margin: 0 auto;
}

.noti-modal .noti-title {
  width: 100%;
  text-align: center;
}

.noti-modal .noti-title span {
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  display: block;
  margin: 20px 0px;
}

@media (max-width: 767.98px) {
  .noti-modal .noti-title span {
    font-size: 24px;
    width: auto;
  }
}

.noti-modal .alert-close-btn {
  right: 10px;
  top: 10px !important;
}

@media (max-width: 767.98px) {
  .noti-modal .alert-close-btn {
    background-color: #fff;
  }
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {

  .gen-login-form .gen-form-content,
  .gen-login-form .gen-form-content--sign-up {
    min-height: auto;
  }

  .gen-login-form .gen-form-content,
  .gen-login-form .gen-form-content--sign-up {
    padding: 50px;
  }

  #modal-login-reg .gen-form-content,
  #modal-login-reg .gen-login-form .gen-form-content--sign-up,
  .gen-login-form #modal-login-reg .gen-form-content--sign-up {
    padding: 10px 60px;
  }

  #modal-login-reg .gen-login-form__body {
    margin-top: 10px;
  }

  #modal-login-reg .gen-login-form__body p {
    margin-bottom: 30px;
  }

  #modal-login-reg .gen-login-form__body p a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
  }

  .gen-login-form__body .agent-question {
    margin-bottom: 10px;
  }

  .gen-login-form__body .agent-question p a {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
  }

  .gen-login-form__check-gen {
    margin: 15px auto 20px;
  }

  .gen-login-form__footer i {
    margin-bottom: 20px;
  }

  .gen-login-form__footer button {
    margin-bottom: 15px;
  }

  .gen-login-form#modal-login-reg form {
    min-height: 400px;
    padding: 0px;
  }

  .gen-login-form__header span {
    font-size: 30px;
  }

  .gen-login-form__body .gen-login-form__input {
    margin-bottom: 13px;
  }

  .gen-login-form__header svg {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .gen-login-form__body input:not([type=range]) {
    height: 45px;
  }

  .gen-login-form__body .gen-login-form__input svg {
    top: 6px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {

  .gen-login-form .gen-form-content,
  .gen-login-form .gen-form-content--sign-up {
    min-height: auto;
  }

  .gen-login-form .gen-form-content,
  .gen-login-form .gen-form-content--sign-up {
    padding: 50px;
  }

  #modal-login-reg .gen-form-content,
  #modal-login-reg .gen-login-form .gen-form-content--sign-up,
  .gen-login-form #modal-login-reg .gen-form-content--sign-up {
    padding: 10px 60px;
  }

  #modal-login-reg .gen-login-form__body {
    margin-top: 10px;
  }

  /*
	#modal-login-reg .gen-login-form__body p {
		margin-bottom: 10px;
		font-size: 15px !important;
	}
	*/
  .gen-login-form__check-gen {
    margin: 10px auto 15px;
  }

  .gen-login-form__footer i {
    margin-bottom: 20px;
  }

  .gen-login-form__footer button {
    margin-bottom: 10px;
  }

  .gen-login-form#modal-login-reg form {
    min-height: 360px;
    padding: 0px;
  }

  .gen-login-form__header span {
    font-size: 26px;
  }

  .gen-login-form__body .gen-login-form__input {
    margin-bottom: 13px;
  }

  .gen-login-form__header svg {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }

  .gen-login-form__body input:not([type=range]) {
    height: 40px;
  }

  .gen-login-form__check-gen .l-container,
  .gen-login-form__footer p,
  .gen-login-form__footer a {
    font-size: 18px !important;
    font-weight: 600;
    line-height: 28px;
  }

  .gen-login-form__body .gen-login-form__input svg {
    top: 6px;
  }
}

.modal {
  justify-content: center;
  align-items: center;
  background: transparent;
}

.modal__dialog {
  justify-content: center;
  align-items: center;
  width: 780px;
  height: 780px;
  background: #fff;
  border-radius: 20px;
  padding: 0 40px 40px;
  z-index: 1000000;
}

.modal__content {
  position: relative;
}

.modal__header {
  margin: 0;
  padding: 0;
}

.modal__body {
  position: relative;
  width: 100%;
}

.add-want__content,
.add-listing__content {
  position: relative;
  width: 700px;
  height: 550px;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 0;
  overflow: hidden;
}

.add-want__header,
.add-listing__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
}

.add-want__name,
.add-listing__name {
  display: block;
  font-weight: 600;
}

.add-want__action,
.add-listing__action {
  width: calc(100% / 3);
}

.add-want__action-text,
.add-listing__action-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 28.8px;
}

.add-want__expiration,
.add-listing__expiration {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: end;
  width: calc(100% / 3);
}

.add-want__label,
.add-listing__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
  text-transform: uppercase;
}

.add-want__date,
.add-listing__date {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
}

.add-want__image,
.add-listing__image {
  background-size: cover !important;
  background-position: center center !important;
}

.add-want__map,
.add-listing__map {
  position: relative;
  overflow: hidden;
}

.add-want__map .details__map,
.add-listing__map .details__map {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.add-want__inline-content,
.add-listing__inline-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 30px;
  z-index: 10;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.add-want__info,
.add-listing__info {
  display: flex;
}

.add-want__status,
.add-listing__status {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 3px;
  margin-right: 20px;
}

.add-want__title,
.add-listing__title {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  text-transform: uppercase;
}

.add-want__street,
.add-listing__street {
  display: block;
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  text-transform: uppercase;
}

.add-want__city,
.add-want__state,
.add-want__zip,
.add-listing__city,
.add-listing__state,
.add-listing__zip {
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
  text-transform: uppercase;
}

.add-want__meta,
.add-listing__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.add-want__type,
.add-listing__type {
  display: block;
  font-size: 12px;
  font-weight: 600;
  font-style: italic;
  line-height: 14.4px;
}

.add-want__price,
.add-listing__price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  text-transform: uppercase;
}

.add-want__buttons,
.add-listing__buttons {
  display: flex;
}

.add-want__button,
.add-listing__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 3px;
  border: 1px solid #ced2dc;
  margin-right: 20px;
}

.add-want__button:hover,
.add-listing__button:hover {
  color: #8bc53f;
  border-color: #8bc53f;
}

.add-want__button:last-child,
.add-listing__button:last-child {
  margin-right: 0;
}

.add-want__add,
.add-listing__add {
  color: #fff;
  background-color: #8bc53f;
  border: 1px solid #8bc53f;
}

.add-want__add:hover,
.add-listing__add:hover {
  color: #fff;
}

#modal-add-want .add-want__status {
  min-width: 40px;
}

#modal-add-want .add-want__meta {
  min-width: 170px;
}

.modal__close,
.modal__close--members {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  top: -20px;
  right: -20px;
  color: #fff;
  border-width: 1px;
  border-radius: 50%;
  z-index: 100;
}

.modal__close:before,
.modal__close--members:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #eff0f8;
  border-radius: 50%;
  opacity: 0;
  animation: icon-background-fade 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__close:after,
.modal__close--members:after {
  content: "\d7";
  position: absolute;
  color: #4f536c;
  width: 40px;
  height: 42px;
  font-size: 30px;
  line-height: 40px;
  opacity: 0.5;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__close:active,
.modal__close--members:active {
  outline: none;
  background-color: #ced2dc;
}

.modal__close:focus,
.modal__close--members:focus {
  outline: 0;
}

.modal__close:focus:after,
.modal__close--members:focus:after {
  opacity: 1;
}

.modal__close:hover:before,
.modal__close--members:hover:before {
  opacity: 1;
  transform: scale(1);
  animation: icon-background-expand 0.15s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__close:hover:after,
.modal__close--members:hover:after {
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__close--members {
  top: 10px;
  right: 10px;
}

.modal__close--members:before {
  background-color: #4f536c;
}

.modal__close--members:after {
  color: #fff;
}

#promo-popup {
  transition: all 0.3s ease-in-out !important;
}

.promo-popup {
  display: flex !important;
  top: 0;
  width: 100%;
  height: 0;
  background-color: #131a25;
  opacity: 0 !important;
  z-index: 99999;
  transition: all 0.3s ease-in-out !important;
  /*
	.close-btn {
	    cursor: pointer;
	    display: flex;
	    align-items: center;
	}

	.close-img {
    	padding: 0 5px;

    	img {
    		width: 20px;
		}
	}
	*/
}

.promo-popup--active {
  display: flex !important;
  height: 50px !important;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out !important;
}

.promo-popup__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.promo-popup h1 {
  font-size: 16px;
  font-weight: 600 !important;
  color: #fff !important;
  text-transform: uppercase;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 767.98px) {
  .promo-popup h1 {
    font-size: 13px;
  }
}

.promo-popup__close {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  top: 4px;
  right: 4px;
  color: #fff;
  border-width: 1px;
  border-radius: 50%;
  z-index: 100;
}

@media (max-width: 767.98px) {
  .promo-popup__close {
    top: 17px;
    right: 23px;
    width: 14px;
    height: 14px;
  }
}

.promo-popup__close:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: icon-background-fade 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-popup__close:after {
  content: '\d7';
  position: absolute;
  color: #fff;
  width: 40px;
  height: 42px;
  font-size: 30px;
  line-height: 40px;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767.98px) {
  .promo-popup__close:after {
    font-size: 24px;
  }
}

.promo-popup__close:active {
  outline: none;
  background-color: #fff;
}

.promo-popup__close:focus {
  outline: 0;
}

.promo-popup__close:focus:after {
  opacity: 1;
}

.promo-popup__close:hover:before {
  opacity: 1;
  transform: scale(1);
  animation: icon-background-expand 0.15s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-popup__close:hover:after {
  color: #131a25;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.percentage-loader {
  display: flex;
  z-index: 9999999999;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  background-size: cover;
  opacity: 0.9;
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.percentage-loader .percentage-loader-svg {
  height: 100px;
}

.percentage-loader .percentage-loader-svg,
.percentage-loader .percentage-loader-txt {
  text-align: center;
  margin: 20px 0;
}

.animated-circle-loader {
  fill: transparent;
  stroke: #ff1d4e;
  stroke-width: 4px;
  animation: dash 2.5s ease infinite, rotate 2.5s linear infinite, color 8s linear infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 195;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dasharray: 125, 205;
    stroke-dashoffset: -193;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.woocommerce-account .woocommerce .account-navigation {
  padding: 40px 0;
  border-right: 1px solid #ced2dc;
}

.woocommerce-account .woocommerce .account-navigation ul {
  margin: 0;
}

.woocommerce-account .woocommerce .account-navigation ul li {
  padding: 12px 0;
}

.woocommerce-account .woocommerce .account-navigation ul li:first-child {
  padding-top: 0;
}

.woocommerce-account .woocommerce .account-navigation ul li:last-child {
  padding-bottom: 0;
}

.woocommerce-account .woocommerce .account-navigation ul li.is-active a {
  padding-left: 20px;
}

.woocommerce-account .woocommerce .account-navigation ul li.is-active a:after {
  opacity: 1;
}

.woocommerce-account .woocommerce .account-navigation ul li a {
  display: block;
  text-transform: uppercase;
  color: #151b26;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.woocommerce-account .woocommerce .account-navigation ul li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff1d4d;
  left: 0;
  top: 5px;
  opacity: 0;
  transition: all 0.3s ease;
}

.woocommerce-account .woocommerce .account-navigation ul li a:hover {
  color: #ff1d4d;
  padding-left: 20px;
}

.woocommerce-account .woocommerce .account-navigation ul li a:hover::after {
  opacity: 1;
}

/* Listing / Wants Toggles */
.checkbox-group .checkk-box,
.form-checkk .checkk-box {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-right: 20px;
  cursor: pointer;
}

.checkbox-group .checkk-box input,
.form-checkk .checkk-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.checkbox-group .checkk-box input:checked~span:before,
.form-checkk .checkk-box input:checked~span:before {
  background-color: #131A25;
  border: 1px solid #131A25;
}

.checkbox-group .checkk-box input:checked~span:after,
.form-checkk .checkk-box input:checked~span:after {
  display: block;
}

.checkbox-group .checkk-box span,
.form-checkk .checkk-box span {
  position: relative;
  font-weight: 600;
  color: #131A25;
  font-size: 16px;
  margin-left: 0px;
  padding-left: 30px;
}

.checkbox-group .checkk-box span:before,
.form-checkk .checkk-box span:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 0px;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid #131A25;
}

.checkbox-group .checkk-box span:after,
.form-checkk .checkk-box span:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 6.5px;
  left: 3.5px;
  transform: rotate(-45deg);
  transition: all 100ms ease 100ms;
}

.ui-sortable-placeholder {
  opacity: 0.15 !important;
  background-color: #ced2dc !important;
  height: 271px !important;
  margin-bottom: 30px !important;
  border-radius: 5px !important;
}

.ui-state-highlight {
  border: none;
}

.ui-sortable-helper {
  opacity: 0.65 !important;
}

.fileuploader-browse {
  color: #25a9e0;
  text-decoration: underline;
}

.fileuploader-input {
  border-radius: 10px;
}

#listing-agreement-container h3 {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
}

#listing-agreement-container p,
#listing-agreement-container span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  color: #4f536c;
}

#listing-agreement-container .acf-label,
#listing-agreement-container .acf-input {
  display: none;
}

#listing-agreement-container .fileuploader-header {
  display: flex;
  justify-content: space-between;
}

#listing-agreement-container .fileuploader-theme-thumbnails {
  background-color: #f9f9fc;
  padding: 40px;
  border-radius: 5px;
  margin-top: 30px;
}

#listing-agreement-container .fileuploader-items-wrapper {
  display: flex;
}

#listing-agreement-container .fileuploader-items {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 30px 30px 0 0;
}

#listing-agreement-container .fileuploader-thumbnails-input-inner {
  width: 130px;
  height: 130px;
  background-color: #cfd3dc;
  border: 2px dashed #949baf;
  text-align: center;
  color: #90a0b1;
  border-radius: 10px;
}

#listing-agreement-container .fileuploader-thumbnails-input-inner i {
  font-weight: 900;
  color: #949baf;
}

#listing-agreement-container .fileuploader-theme-gallery .fileuploader-input-inner:active,
#listing-agreement-container .fileuploader-theme-gallery .fileuploader-dragging .fileuploader-input-inner {
  border-color: #ced2dc;
  background-color: #eff0f8;
  box-shadow: 0 4px 24px -1px rgba(0, 0, 0, 0.05);
}

#listing-agreement-container .fileuploader-items-list,
#listing-agreement-container .fileuploader-theme-thumbnails .fileuploader-thumbnails-input,
#listing-agreement-container .fileuploader-theme-thumbnails .fileuploader-items-list .fileuploader-item {
  width: 130px;
  height: 130px;
  margin: 0;
  padding: 0;
}

#listing-agreement-container .fileuploader-theme-thumbnails .fileuploader-items .fileuploader-items-list {
  margin: 0;
}

#listing-agreement-container .fileuploader-information {
  margin-top: 30px;
}

#listing-agreement-container .fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-success {
  color: #fff;
  background-color: #29a873;
}

#listing-agreement-container .fileuploader-items .fileuploader-item .fileuploader-action {
  box-shadow: none !important;
}

#listing-agreement-container .fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-remove,
#listing-agreement-container .fileuploader-items .fileuploader-item .fileuploader-action.fileuploader-action-remove.fileuploader-action-success:hover {
  color: #fff;
  background-color: #ee2a52;
}

#listing-agreement-container .content-holder span {
  color: #fff;
}

#listing-agreement-container .status-container {
  display: flex;
  align-items: center;
}

#listing-agreement-container .status-label {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin-right: 10px;
}

#listing-agreement-container .status-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #ee2a52;
  border-radius: 100%;
}

.listing-status__wrapper {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
  gap: 14px;
}

.listing-status__container {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.listing-status__link {
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
}

.listing-status__break {
  font-size: 18px;
  font-weight: 600;
}

.listing-status__label {
  font-size: 18px;
  font-weight: 600;
}

.listing-status__icon {
  width: 22px;
  height: auto;
  margin-top: 7px;
}

.listing-status__indicator {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 100vw;
}

.listing-status__indicator.waiting {
  background-color: #949baf;
}

.listing-status__indicator.pending {
  background-color: #FFD115;
}

.listing-status__indicator.in-review {
  background-color: #00A1E2;
}

.listing-status__indicator.rejected {
  background-color: #EE2A52;
}

.listing-status__indicator.approved {
  background-color: #29A873;
}

.listing-status__indicator::after {
  content: '';
  min-width: 32px;
  width: 32px;
  height: 32px;
  border: 2px solid #CED2DC;
  border-radius: 100vw;
}

.listing-status__tooltip {
  position: relative;
}

.add-listing-draft__container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(19, 26, 37, 0.9);
  border-radius: 5px;
  z-index: 20;
}

.add-listing-draft__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #fff;
}

.add-listing-draft__heading {
  position: relative;
  font-size: 90px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.add-listing-draft__heading::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 200px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}

.add-listing-draft__heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 200px;
  height: 1px;
  background-color: #fff;
  transform: translateX(-50%);
}

.add-listing-draft__text {
  max-width: 360px;
  font-size: 16px !important;
  line-height: 1.375 !important;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.my-listings .description {
  position: absolute;
  font-style: italic;
  top: -120px;
  left: -147px;
  font-weight: 600 !important;
  width: 316px;
  padding: 20px;
  text-align: left;
  font-size: 14px !important;
  background: #343A4C;
  color: #fff !important;
  border-radius: 5px;
  animation: tooltip-effect 0.3s ease-in;
  z-index: 3;
}

.my-listings .description:after {
  content: "";
  position: absolute;
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 8px solid #343A4C;
  animation: tooltip-effect 0.3s ease-in;
  top: 100% !important;
  left: 50%;
  transform: translateX(-50%);
}

/* Temporary Slick Slider styles */
#modal-slider {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #modal-slider {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #modal-slider {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  #modal-slider {
    max-width: 100%;
    padding: 0 20px;
  }
}

#modal-slider .slick-track {
  width: 100vw;
  height: 600px;
}

@media (max-width: 767.98px) {
  #modal-slider .slick-track {
    min-width: unset;
    width: 100%;
    height: 340px;
  }
}

#modal-slider .slick-slide {
  width: 1080px !important;
  height: 600px;
  background-size: cover !important;
  background-position: center center !important;
  margin: 0;
  border-radius: 5px;
}

@media (max-width: 991.98px) {
  #modal-slider .slick-slide {
    width: 100% !important;
    height: 100%;
  }
}

@media (max-width: 767.98px) {
  #modal-slider .slick-slide {
    width: 100% !important;
    height: 100%;
  }
}

.slider-overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  z-index: 1000;
}

button.slick-next {
  position: absolute;
  top: calc(50% + 10px);
  width: 40px;
  height: 40px;
  background-image: url("/wp-content/themes/premise/img/gallery-next.svg");
  background-size: 40px;
  opacity: 0.65;
  transition: all 0.3s ease-in-out;
  z-index: 99999 !important;
}

button.slick-next:active {
  background-image: url("/wp-content/themes/premise/img/gallery-next.svg");
  opacity: 0.65 !important;
  transition: all 0.3s ease-in-out;
}

button.slick-next:hover {
  background-image: url("/wp-content/themes/premise/img/gallery-next.svg");
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
}

button.slick-next:focus {
  background-image: url("/wp-content/themes/premise/img/gallery-next.svg");
  opacity: 0 !important;
  transition: all 0.3s ease-in-out;
}

button.slick-prev {
  position: absolute;
  top: calc(50% + 10px);
  z-index: 1;
  width: 40px;
  height: 41px;
  background-image: url("/wp-content/themes/premise/img/gallery-back.svg");
  background-size: 40px;
  background-position-x: right;
  background-position-y: 1px;
  opacity: 0.65 !important;
  transition: all 0.3s ease-in-out;
  z-index: 99999 !important;
}

.page-id-82585 button.slick-prev {
  height: 40px;
  background-position-y: 0px;
}

button.slick-prev:active {
  background-image: url("/wp-content/themes/premise/img/gallery-back.svg");
  opacity: 0.65 !important;
  transition: all 0.3s ease-in-out;
}

button.slick-prev:hover {
  background-image: url("/wp-content/themes/premise/img/gallery-back.svg");
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
}

button.slick-prev:focus {
  background-image: url("/wp-content/themes/premise/img/gallery-back.svg");
  opacity: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slick-slider .slick-arrow {
  opacity: 0 !important;
  transition: all 0.3s ease-in-out;
  z-index: 999 !important;
}

.slick-slider:hover .slick-arrow {
  opacity: 0.65 !important;
  transition: all 0.3s ease-in-out;
  z-index: 999 !important;
}

.slider img,
.slider--large img {
  height: 600px;
}

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

.slick-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
}

@media (max-width: 767.98px) {
  .slick-track {
    width: 100%;
  }
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[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;
}

/* Slider */
.slick-loading .slick-list {
  /* background: #fff url('/wp-content/uploads/2015/10/ajax-loader.gif') center center no-repeat; TODO: Update Slider Loader */
}

.slick-dots {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(50% + 10px);
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: .75 !important;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1 !important;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25 !important;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75 !important;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 32px;
}

[dir="rtl"] .slick-prev {
  right: -32px;
  left: auto;
}

.slick-prev:before {
  content: '';
}

[dir="rtl"] .slick-prev:before {
  content: '';
  font-weight: bold;
  font-size: 20px;
}

.slick-next {
  right: 32px;
}

[dir="rtl"] .slick-next {
  right: auto;
  left: -32px;
}

.slick-next:before {
  content: '';
}

[dir="rtl"] .slick-next:before {
  content: '';
}

/* Dots */
.slick-dots {
  position: absolute;
  bottom: -45px;
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
  text-align: center;
}

.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:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1 !important;
}

.slick-prev:hover {
  background-position-y: 1px;
}

.page-id-82585 .slick-prev:hover {
  background-position-y: 0px;
}

.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}

/* General Image Slider Styles */
.viewGallerySilder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick__container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: 999;
}

.slick-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.gallery__close {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  top: 32px;
  right: 32px;
  text-align: center;
  color: #fff;
  border-width: 1px;
  border-radius: 50%;
  z-index: 99999;
}

.gallery__close:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: icon-background-fade 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__close:after {
  content: '\d7';
  position: absolute;
  color: #fff;
  width: 40px;
  height: 42px;
  font-size: 30px;
  line-height: 40px;
  opacity: 0.7;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__close:active {
  outline: none;
  background-color: #ced2dc;
}

.gallery__close:focus {
  outline: 0;
}

.gallery__close:focus:after {
  opacity: 1;
}

.gallery__close:hover:before {
  opacity: 1;
  transform: scale(1);
  animation: icon-background-expand 0.15s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__close:hover:after {
  color: #4f536c;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Member Pages */
.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.agent-landing__listings--dark {
  color: #fff;
  background-color: #131a25;
}

@media (max-width: 767.98px) {
  .agent-landing__listings--dark {
    padding: 0 !important;
  }

  .agent-landing__listings--dark>.row>.container {
    padding: 0;
  }
}

.agent-landing__badge {
  width: 80px;
  height: 80px;
  font-family: "Open Sans Condensed", sans-serif;
  font-size: 32px;
  font-weight: 600;
}

.agent-landing__header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 460px;
  width: 100%;
}

.agent-landing__background {
  position: relative;
  background-size: cover !important;
  background-position: center center !important;
  z-index: 0;
}

.agent-landing__background:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.agent-landing__content,
.agent-landing__content--dark,
.agent-landing__content--light {
  text-align: center;
  padding: 100px 0;
}

@media (max-width: 767.98px) {

  .agent-landing__content,
  .agent-landing__content--dark,
  .agent-landing__content--light {
    padding: 60px 15px;
  }
}

.agent-landing__content--dark {
  color: #131a25;
}

.agent-landing__content--light {
  color: #fff;
}

.agent-landing__title {
  display: flex;
  margin-bottom: 90px;
  z-index: 20;
}

.agent-landing__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  margin: 0 0 30px;
}

@media (max-width: 575.98px) {
  .agent-landing__heading {
    font-size: 30px;
    line-height: 1.28;
  }
}

.agent-landing__subheading,
.agent-landing__subheading--no-margin {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  margin: 0 0 80px;
}

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

@media (max-width: 575.98px) {

  .agent-landing__subheading,
  .agent-landing__subheading--no-margin {
    font-size: 18px;
    line-height: normal;
  }
}

.agent-landing__caption {
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  margin: 0;
  padding: 0;
}

.agent-landing__text {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 35px;
}

.agent-landing__buttons {
  display: flex;
  justify-content: center;
  padding: 0;
}

@media (max-width: 767.98px) {
  .agent-landing__buttons {
    flex-direction: column;
    gap: 10px;
  }
}

.agent-landing__button {
  display: flex;
  justify-content: center;
  width: 290px;
  height: 50px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  color: #fff;
  background-color: #131a25;
  border-radius: 3px;
  margin-right: 20px;
}

@media (max-width: 767.98px) {
  .agent-landing__button {
    width: 100%;
  }
}

.agent-landing__button:last-child {
  margin-right: 0;
}

.agent-landing__media {
  display: flex;
  align-items: center;
  width: 100%;
  height: 200px;
  background: #4f536c;
}

.agent-landing__want {
  padding: 0;
}

.agent-landing__want text,
.agent-landing__want tspan {
  font-family: "Open Sans", helvetica, arial, sans-serif;
}

.agent-landing__profile {
  background-color: #eff0f8;
}

.agent-landing__profile-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .agent-landing__profile-container {
    padding: 0 15px 60px;
  }
}

@media (max-width: 991.98px) {
  .agent-landing__profile-container {
    flex-direction: column;
    padding: 0 15px 60px;
  }
}

.agent-landing__card {
  max-width: 570px;
  height: auto;
  margin: 0;
  background: #131a25;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

@media (max-width: 767.98px) {
  .agent-landing__card {
    padding: 20px;
  }
}

.agent-landing__card text,
.agent-landing__card tspan {
  font-family: "Open Sans", helvetica, arial, sans-serif;
}

.agent-landing__list {
  margin: 0;
}

.agent-landing__bullets {
  margin-left: 60px;
}

@media (max-width: 991.98px) {
  .agent-landing__bullets {
    margin: 0;
    padding: 40px 0 0;
  }
}

.agent-landing__bullets-description {
  font-size: 18px;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 30px;
}

.agent-landing__bullet {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 18px;
  background: url("/wp-content/themes/premise/img/agent-landing/bullet.svg") no-repeat left center;
  background-size: 5px 5px;
  padding: 0 0 0 15px;
  vertical-align: middle;
  margin-bottom: 20px;
  list-style: none;
}

.agent-landing__bullet:last-child {
  margin-bottom: 0;
}

.agent-landing__automate-search {
  margin: 0;
  padding: 0 0 80px;
}

.agent-landing__automate-search text,
.agent-landing__automate-search tspan {
  font-family: "Open Sans", helvetica, arial, sans-serif !important;
}

.agent-landing__platform {
  color: #fff;
  background-color: #131a25;
}

.agent-landing__video {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 960px;
  height: auto;
  background-color: #000;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .agent-landing__video {
    padding: 0 20px;
  }
}

.agent-landing__video .play-button {
  width: 100px;
}

.agent-landing__rating ul {
  display: flex;
  list-style: none;
}

.agent-landing__rating ul li {
  width: 26px;
  height: 26px;
}

.agent-landing__reviews {
  display: flex;
}

.agent-landing__reviews svg {
  height: 30px;
  margin-right: 10px;
}

@media (max-width: 575.98px) {
  .agent-landing__reviews svg {
    height: 25px;
    margin-right: 0;
  }
}

.agent-landing__reviews p {
  font-size: 18px;
  color: #fff !important;
  font-weight: 600;
  margin: auto;
}

@media (max-width: 575.98px) {
  .agent-landing__reviews p {
    font-size: 16px;
  }
}

.agent-landing__name {
  line-height: 38px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 20px;
}

@media (max-width: 575.98px) {
  .agent-landing__name {
    font-size: 18px;
  }
}

.agent-landing__agency {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff !important;
}

@media (max-width: 575.98px) {
  .agent-landing__agency {
    font-size: 16px;
  }
}

.agent-landing__address {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  border: 1px solid #fff;
  text-align: center;
  border-radius: 6px;
  padding: 6px;
}

@media (max-width: 575.98px) {
  .agent-landing__address {
    font-size: 18px;
  }
}

.agent-landing__figure {
  border-radius: 50%;
  height: 250px;
  width: 250px;
  margin-right: 50px;
  background-size: 210% !important;
  background-position: 47% 41% !important;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .agent-landing__figure {
    height: 150px;
    width: 150px;
    margin-right: 20px;
  }
}

.agent-landing__logo {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 50px;
  height: 50px;
}

@media (max-width: 575.98px) {
  .agent-landing__logo {
    left: 10px;
    top: 10px;
  }
}

.agent-landing__logo svg {
  position: relative;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .agent-landing__logo svg {
    height: 40px;
    width: 40px;
  }
}

.agent-landing__logo:after {
  content: "";
  position: absolute;
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  left: 0;
  top: 2px;
}

@media (max-width: 575.98px) {
  .agent-landing__logo:after {
    width: 35px;
    height: 35px;
    left: 1px;
  }
}

.badge__exclusive {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.badge__exclusive text {
  font-size: 32px;
  fill: #fff;
  font-family: "Open Sans Condensed", OpenSans Semibold;
  font-style: normal;
  font-weight: 600;
}

.badge__buyer {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.header__container {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 175px;
  z-index: 20;
}

.header__heading {
  max-width: 80%;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin: 0;
}

@media (max-width: 767.98px) {
  .header__heading {
    font-size: 40px;
  }
}

.header__heading.subtext {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .header__heading.subtext {
    font-size: 14px;
  }
}

.header__subheading {
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  margin: 20px 0 0;
}

@media (max-width: 767.98px) {
  .header__subheading {
    font-size: 20px;
    text-align: center;
  }
}

.header__slogan {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  margin: 0;
}

@media (max-width: 767.98px) {
  .header__slogan {
    font-size: 18px;
  }
}

.join-block__container {
  width: 700px;
  max-width: 100%;
  background-color: #131a25;
  text-align: center;
  margin: -180px auto 0 !important;
  padding: 50px;
  border-radius: 20px;
  z-index: 50;
}

@media (max-width: 575.98px) {
  .join-block__container {
    margin: -180px 15px 0 !important;
    padding: 30px !important;
  }
}

.join-block__text {
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  line-height: 28px;
  color: #fff;
}

@media (max-width: 767.98px) {
  .join-block__text {
    font-size: 16px;
  }
}

.join-block__counter {
  display: flex;
  justify-content: center;
  margin: 20px 0 10px;
}

.join-block__caption {
  font-size: 12px;
  font-weight: 600;
  line-height: 34px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 30px;
  padding: 0;
}

.join-block__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  color: #fff;
  background-color: #ff1d4e;
  border-radius: 3px;
}

.join-block__button:hover {
  color: #fff;
}

.join-block__button.grey {
  background-color: #4f536c;
}

@media (max-width: 575.98px) {
  .join-block__button.grey {
    display: none;
  }
}

.counter__container {
  display: flex;
  position: relative;
}

.counter__spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 60px;
  background-color: #343a4c;
  margin-right: 10px;
}

.counter__spinner:last-child {
  margin-right: 0;
}

.counter__number {
  position: absolute;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 50px;
  color: #fff;
}

.counter__comma,
.counter__digit {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}

.counter__break {
  margin: 10px 10px 0 0;
}

.media__container {
  display: flex;
}

.media__logo,
.media__logo--1,
.media__logo--2,
.media__logo--3,
.media__logo--4,
.media__logo--5,
.media__logo--6,
.media__logo--7 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 40px;
}

.media__logo--1 {
  width: auto;
  height: 40px;
}

.media__logo--2 {
  width: auto;
  height: 55px;
}

.media__logo--3 {
  width: auto;
  height: 33px;
}

.media__logo--4 {
  width: auto;
  height: 50px;
}

.media__logo--5 {
  width: auto;
  height: 40px;
}

.media__logo--6 {
  width: auto;
  height: 50px;
}

.media__logo--7 {
  width: auto;
  height: 30px;
}

.day-widget text {
  font-family: "Open Sans Condensed", sans-serif;
}

.day-widget__caption {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 0 0 50px;
}

.members-counter,
.members-counter__listed,
.members-counter__members {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 200px;
}

@media (max-width: 575.98px) {

  .members-counter,
  .members-counter__listed,
  .members-counter__members {
    width: 50% !important;
  }
}

.members-counter__listed {
  background-color: #eff0f8;
}

.members-counter__members {
  background-color: #ced2dc;
}

.members-counter__heading {
  font-size: 24px;
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
  color: #131a25;
}

@media (max-width: 767.98px) {
  .members-counter__heading {
    font-size: 20px;
  }
}

.members-counter__value,
.members-counter__value--dollars,
.members-counter__value--euro,
.members-counter__value--aed {
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
  color: #ff1d4e;
}

@media (max-width: 767.98px) {

  .members-counter__value,
  .members-counter__value--dollars,
  .members-counter__value--euro,
  .members-counter__value--aed {
    font-size: 18px !important;
    line-height: normal !important;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {

  .members-counter__value,
  .members-counter__value--dollars,
  .members-counter__value--euro,
  .members-counter__value--aed {
    font-size: 40px;
    line-height: 40px;
  }
}

.members-counter__value--dollars:before {
  content: "$";
}

.members-counter__value--euro:before {
  content: "€";
}

.members-counter__value--aed:before {
  font-size: 80%;
  content: "AED ";
}

.members-counter__founding-members {
  display: flex;
  justify-content: center;
}

.founding-members__content {
  display: flex;
  justify-content: center;
  margin: 0 0 80px;
}

.founding-members__images {
  margin: 0;
}

.founding-members__info {
  margin: 0 45px 0;
}

@media (max-width: 575.98px) {
  .founding-members__info {
    margin: 0 10px 0;
  }
}

.founding-members__name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 46px;
  text-transform: uppercase;
  color: #ff1d4e;
}

@media (max-width: 575.98px) {
  .founding-members__name {
    line-height: normal;
    margin-bottom: 20px;
  }
}

.founding-members__title {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 14.4px;
  text-transform: uppercase;
}

.founding-members__logo {
  height: 60px;
  margin: 40px 0 0;
}

.become-member__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  background: #eff0f8;
  border-radius: 20px;
  margin: 0 auto;
  padding: 90px;
}

@media (max-width: 575.98px) {
  .become-member__container {
    padding: 60px 15px;
  }
}

.become-member__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  margin: 0 0 30px;
}

.become-member__subheading {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  margin: 0 0 40px;
}

.become-member__list {
  margin: 0 0 50px;
}

.become-member__bullet {
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  text-align: left;
  background: url("/wp-content/themes/premise/img/agent-landing/checkmark.svg") no-repeat left center;
  background-size: 20px 15.8824px;
  padding: 0 0 0 35px;
  vertical-align: middle;
  list-style: none;
  margin-bottom: 20px;
}

.become-member__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  color: #fff;
  background-color: #ff1d4e;
  border-radius: 3px;
}

.become-member__button.grey {
  background-color: #4f536c !important;
}

@media (max-width: 767.98px) {
  .become-member__button.grey {
    display: none;
  }
}

.become-member__button:hover {
  color: #fff;
}

.become-member__button.fixed {
  width: 340px;
  padding: 0 40px;
  text-align: center;
  margin: 30px auto;
}

@media (min-width: 992px) and (max-width: 1199.98px) {

  .agent-landing__media .media__container>.media__logo:last-child,
  .agent-landing__media .media__container>.media__logo--1:last-child,
  .agent-landing__media .media__container>.media__logo--2:last-child,
  .agent-landing__media .media__container>.media__logo--3:last-child,
  .agent-landing__media .media__container>.media__logo--4:last-child,
  .agent-landing__media .media__container>.media__logo--5:last-child,
  .agent-landing__media .media__container>.media__logo--6:last-child,
  .agent-landing__media .media__container>.media__logo--7:last-child {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .agent-landing__media .media__container {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px !important;
  }

  .agent-landing__media .media__container>.media__logo,
  .agent-landing__media .media__container>.media__logo--1,
  .agent-landing__media .media__container>.media__logo--2,
  .agent-landing__media .media__container>.media__logo--3,
  .agent-landing__media .media__container>.media__logo--4,
  .agent-landing__media .media__container>.media__logo--5,
  .agent-landing__media .media__container>.media__logo--6,
  .agent-landing__media .media__container>.media__logo--7 {
    width: 22%;
    margin: 0;
    margin-bottom: 10px;
  }
}

@media (max-width: 767.98px) {
  .agent-landing__content--dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .agent-landing__media .media__container {
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px !important;
  }

  .agent-landing__media .media__container>.media__logo,
  .agent-landing__media .media__container>.media__logo--1,
  .agent-landing__media .media__container>.media__logo--2,
  .agent-landing__media .media__container>.media__logo--3,
  .agent-landing__media .media__container>.media__logo--4,
  .agent-landing__media .media__container>.media__logo--5,
  .agent-landing__media .media__container>.media__logo--6,
  .agent-landing__media .media__container>.media__logo--7 {
    width: 22%;
    margin: 0;
  }

  #buyer-wants {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .agent-landing__founders .agent-landing__content,
  .agent-landing__founders .agent-landing__content--dark,
  .agent-landing__founders .agent-landing__content--light {
    padding: 0 15px;
    padding: 60px 0;
  }
}

.listing-header {
  padding-left: 16px;
  padding-right: 16px;
}

.listing-header .first-listing-row {
  align-items: end;
}

.listing-header .first-listing-row a {
  text-align: center;
}

.listing-header .details .list-count a {
  margin: 0;
}

.listing-header .listing-result-count .listing-count {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.listing-header .listing-result-count .listing-count .listing-text {
  margin-right: 30px;
  padding: 0;
}

.listing-header .listing-result-count .listing-count .listing-countt {
  display: flex;
  align-items: center;
}

.listing-header .listing-result-count .listing-count .listing-countt label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
}

.listing-header .listing-result-count .listing-count .listing-countt .select2,
.listing-header .listing-result-count .listing-count .listing-countt .select2--public,
.listing-header .listing-result-count .listing-count .listing-countt .select2--public2 {
  width: 70px !important;
  height: 30px;
}

.listing-header .listing-result-count .listing-count .listing-countt .select2 .select2-selection__rendered,
.listing-header .listing-result-count .listing-count .listing-countt .select2--public .select2-selection__rendered,
.listing-header .listing-result-count .listing-count .listing-countt .select2--public2 .select2-selection__rendered {
  font-size: 16px;
  line-height: 19px;
  font-weight: 600;
}

.want__details__area.single-listing {
  padding: 40px 0 0;
}

.want__details__area.single-listing:last-child {
  padding-bottom: 0;
}

.want__details__area.single-listing .post-title {
  padding: 0;
}

.want__details__area.single-listing .post-title .ls-status {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 20px;
}

.want__details__area.single-listing .post-content {
  padding-bottom: 60px;
}

.want__details__area.single-listing .post-content .want__details__left .want__details__left__address {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid #ced2dc;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 18px;
  padding: 50px;
}

.want__details__area.single-listing .post-content .want__details__left .want__details__left__address img {
  height: 60px;
  margin-bottom: 30px;
}

.want__details__area.single-listing .post-content .want__details__left .want__details__left__address h3 {
  text-align: center;
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 40px;
}

.want__details__area.single-listing .post-content .want__details__left .want__details__left__address h3.other {
  font-size: 20px;
  line-height: 30px;
}

.want__details__area.single-listing .post-content .want__details__left .want__details__left__address span {
  margin-top: 40px;
}

.want__details__area.single-listing .post-content .info-listing {
  padding-left: 5px;
}

.want__details__area.single-listing .post-content .info-listing .nonstandard-row {
  justify-content: space-between;
}

.want__details__area.single-listing .post-content .info-listing .nonstandard-row .nonstandard .blob {
  padding: 40px 0;
}

.want__details__area.single-listing .post-content .info-listing .nonstandard-row .nonstandard .blob p {
  text-align: center;
}

.want__details__area.single-listing .post-actions {
  margin: 30px 0;
}

.want__details__area.single-listing .listing-text {
  justify-content: space-between;
}

.want__details__area.single-listing .listing-text .col-10 {
  max-width: 80%;
}

.want__details__area.single-listing .listing-text .col-10 .listing-remarks {
  font-size: 18px;
}

.want__details__area.single-listing .profile-wrapper {
  margin-top: 50px !important;
}

.want__details__area.single-listing .profile-wrapper .card {
  padding: 0;
  border: 0;
}

.want__details__area.single-listing .profile-wrapper .card .card-section,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header {
  padding: 40px;
  border-radius: 10px;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile img,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile img,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile img {
  position: relative;
  width: 220px;
  height: 220px;
  margin-right: 40px;
  transform: none;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information {
  padding-left: 0;
  margin-left: 0;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information h2,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information h2,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information h2 {
  padding: 0;
  margin-bottom: 20px;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information .small,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information .small,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information .small {
  padding: 0 !important;
  margin-bottom: 20px;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 22px;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information p:last-child,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information p:last-child,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information p:last-child {
  margin: 0;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information .agent__rating,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information .agent__rating,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information .agent__rating {
  width: 60%;
  height: 80px;
  margin-top: -20px;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information .agent__rating img,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information .agent__rating img,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information .agent__rating img {
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information .agent__reviews,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information .agent__reviews,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information .agent__reviews {
  text-transform: capitalize;
  font-size: 18px !important;
  align-items: end;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-6 .profile .information .agent__reviews img,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-6 .profile .information .agent__reviews img,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-6 .profile .information .agent__reviews img {
  width: 26px;
  margin-right: 14px;
  border-radius: 0;
  height: auto;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-3 p:last-child,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-3 p:last-child,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-3 p:last-child {
  margin-bottom: 0;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-3 img,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-3 img,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-3 img {
  width: 26px;
  margin-right: 16px;
  border-radius: 0;
  height: auto;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-3 h3,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-3 h3,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-3 h3 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.want__details__area.single-listing .profile-wrapper .card .card-section .col-sm-3 p,
.want__details__area.single-listing .profile-wrapper #dashboard .card .card-section--header .col-sm-3 p,
#dashboard .want__details__area.single-listing .profile-wrapper .card .card-section--header .col-sm-3 p {
  font-size: 15px;
  line-height: 22px;
  font-weight: 600 !important;
}

.agent__footer__icon {
  width: 26px;
  margin-right: 16px;
}

.form-embed input {
  background-color: #fff;
}

.form-embed textarea {
  background-color: #fff;
}

.form-embed .button {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  margin: 0 0 15px;
  background-color: #aa1934;
  color: #fff;
  border-radius: 4px;
}

.form-embed .button:hover {
  background-color: #7d1125;
}

.form-embed ul {
  list-style-type: none;
}

.form-embed label {
  display: inline-block;
  line-height: 1.3;
  font-weight: 700;
  font-size: inherit;
}

.form-embed label span {
  color: #790000;
  margin-left: 4px;
}

.map-embed {
  margin-bottom: 50px;
}

.map-embed iframe {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
}

.contact-info {
  margin-top: 60px;
}

.page-template-single-dashboard {
  background: url("/img/dashboard-bg-2.jpg") no-repeat 50% 50% fixed;
  background-size: cover;
}

#dashboard {
  display: flex;
  width: 100%;
  background-color: #eff0f8;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #dashboard {
    padding: 20px 0;
  }
}

@media (min-width: 576px) {
  #dashboard .dashboard-container {
    padding-right: 0 !important;
  }
}

@media (max-width: 575.98px) {
  #dashboard .dashboard-container {
    padding-bottom: 20px;
  }
}

@media (min-width: 576px) {
  #dashboard #dashboard-width .row:nth-child(1) .card {
    padding-top: 0px;
  }
}

@media (max-width: 575.98px) {

  #dashboard #dashboard-width .row .col-sm-12,
  #dashboard #dashboard-width .row .col-xs-12 {
    padding-left: 0;
    padding-right: 0;
  }

  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section,
  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section--header,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section--header {
    padding: 40px 20px;
  }

  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section .card-content,
  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section--header .card-content,
  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section .card-content--top,
  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section--header .card-content--top,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section .card-content,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section--header .card-content,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section .card-content--top,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section--header .card-content--top {
    padding: 0;
  }

  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section .card-meta,
  #dashboard #dashboard-width .row .col-sm-12 .card.full .card-section--header .card-meta,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section .card-meta,
  #dashboard #dashboard-width .row .col-xs-12 .card.full .card-section--header .card-meta {
    padding-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #dashboard #dashboard-width .row>div:first-child {
    margin: 0;
  }

  #dashboard #dashboard-width .row .card .card-section,
  #dashboard #dashboard-width .row .card .card-section--header {
    padding: 20px;
  }

  #dashboard #dashboard-width .row .card .card-section .card-meta h3,
  #dashboard #dashboard-width .row .card .card-section--header .card-meta h3 {
    font-size: 18px !important;
  }

  #dashboard #dashboard-width .row .card .card-section .card-header,
  #dashboard #dashboard-width .row .card .card-section--header .card-header {
    background: transparent;
    padding-left: 0;
    padding-right: 0;
  }

  #dashboard #dashboard-width .row .card .card-section .card-content li a .ellipsis,
  #dashboard #dashboard-width .row .card .card-section--header .card-content li a .ellipsis,
  #dashboard #dashboard-width .row .card .card-section .card-content--top li a .ellipsis,
  #dashboard #dashboard-width .row .card .card-section--header .card-content--top li a .ellipsis {
    white-space: inherit;
  }
}

@media (max-width: 575.98px) {
  #dashboard #dashboard-width .my-lisiting {
    padding-top: 80px;
  }

  #dashboard #dashboard-width .my-lisiting .card-section,
  #dashboard #dashboard-width .my-lisiting .card .card-section--header,
  #dashboard .card #dashboard-width .my-lisiting .card-section--header {
    position: initial;
    padding: 40px 20px;
  }

  #dashboard #dashboard-width .my-lisiting .card-section .card-meta,
  #dashboard #dashboard-width .my-lisiting .card .card-section--header .card-meta,
  #dashboard .card #dashboard-width .my-lisiting .card-section--header .card-meta {
    padding-bottom: 16px;
  }

  #dashboard #dashboard-width .my-lisiting .card-section .card-header,
  #dashboard #dashboard-width .my-lisiting .card .card-section--header .card-header,
  #dashboard .card #dashboard-width .my-lisiting .card-section--header .card-header {
    border: 0;
    background: transparent;
    padding: 0;
  }

  #dashboard #dashboard-width .my-lisiting .card.full {
    position: initial;
  }
}

@media (max-width: 1199.98px) {
  #dashboard #dashboard-width .card {
    background: transparent;
    border: 0;
  }

  #dashboard #dashboard-width .card .card-section,
  #dashboard #dashboard-width .card .card-section--header {
    padding: 20px;
  }
}

#dashboard .content {
  padding: 50px 16px 60px 0px;
}

@media (max-width: 575.98px) {
  #dashboard .content {
    padding: 0;
  }
}

#dashboard .card {
  padding-top: 40px;
}

@media (max-width: 575.98px) {
  #dashboard .card {
    padding-top: 30px;
  }
}

#dashboard .card .card-section,
#dashboard .card .card-section--header {
  padding: 40px;
  z-index: 0;
}

#dashboard .card .card-section h3,
#dashboard .card .card-section--header h3 {
  font-size: 24px;
}

#dashboard .card .card-section--header {
  padding: 30px 40px 20px !important;
  border-bottom: 1px solid #343A4C !important;
}

@media (max-width: 575.98px) {
  #dashboard .card .card-section--header {
    padding: 20px !important;
  }
}

#dashboard .card .card-section .bottom-space,
#dashboard .card .card-section--header .bottom-space {
  margin-bottom: 40px !important;
}

#dashboard .card .card-content .with-border li:last-child,
#dashboard .card .card-content--top .with-border li:last-child {
  border-bottom: 1px solid #eff0f8;
}

#dashboard .card .card-content li a,
#dashboard .card .card-content--top li a,
#dashboard .card .card-content li span,
#dashboard .card .card-content--top li span {
  font-size: 16px;
  color: #131a25;
  display: flex;
  line-height: 1.4;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575.98px) {

  #dashboard .card .card-content li a,
  #dashboard .card .card-content--top li a,
  #dashboard .card .card-content li span,
  #dashboard .card .card-content--top li span {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {

  #dashboard .card .card-content li .icon,
  #dashboard .card .card-content--top li .icon {
    padding-right: 20px;
  }
}

#dashboard .card .card-content li a,
#dashboard .card .card-content--top li a {
  padding: 0px;
  margin: 0px;
}

#dashboard .card .card-content li a span:hover,
#dashboard .card .card-content--top li a span:hover {
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

#dashboard .card .card-content li .float-right a:hover,
#dashboard .card .card-content--top li .float-right a:hover,
#dashboard .card .card-content li .float-right a i:hover,
#dashboard .card .card-content--top li .float-right a i:hover {
  text-decoration: none !important;
  color: #ff1d4e;
}

#dashboard .card .card-content li span.alert,
#dashboard .card .card-content--top li span.alert {
  margin: 13px 0;
  font-size: 12px;
  justify-content: center;
  justify-items: center;
  padding: 0px 6.6px;
  width: auto;
  height: 20px;
  border-radius: 30px;
}

#dashboard .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#dashboard .btn.btn-add {
  font-size: 11px !important;
  text-transform: uppercase;
  border-radius: 3px;
}

@media (max-width: 767.98px) {
  #dashboard .btn.btn-add {
    position: absolute;
    top: 40px;
    width: 100%;
    left: 0;
    margin: auto;
    right: 0;
    background: #949baf;
    border-radius: 10px;
    color: #fff;
    text-align: left;
    padding: 14px 20px;
    border-radius: 5px;
  }
}

#dashboard .btn.btn-add:hover {
  color: #fff;
  background-color: #ff1d4e;
  border-color: #ff1d4e;
}

#dashboard .my-lisiting .card .card-content li,
#dashboard .my-lisiting .card .card-content--top li {
  padding: 9px 0px 9px 0px !important;
  margin-bottom: 1px !important;
}

#dashboard .my-lisiting .card .card-content li.cf,
#dashboard .my-lisiting .card .card-content--top li.cf {
  padding-bottom: 11px !important;
}

#dashboard .card-meta a {
  position: relative;
}

#dashboard .card-meta .edit i {
  transition: ease-in-out 200ms;
  border-radius: 50%;
  padding: 8px;
  color: #4f536c;
}

#dashboard #dashboard-icon-edit {
  justify-content: center;
  outline: none;
  position: relative;
  z-index: 0;
  cursor: pointer;
}

#dashboard #dashboard-icon-edit i {
  animation: moveInBottom 5s ease-out;
  animation-fill-mode: backwards;
  position: relative;
  padding: 0;
  background: none;
}

#dashboard #dashboard-icon-edit i:after {
  content: "";
  display: inline-block;
  height: 25px;
  width: 28px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: -5px;
  z-index: -1;
  transition: all 0.4s;
}

#dashboard .search-style .card-content ul li,
#dashboard .search-style .card .card-content--top ul li,
.card #dashboard .search-style .card-content--top ul li {
  margin-bottom: 0px;
}

#dashboard .search-style .card-content ul li a,
#dashboard .search-style .card .card-content--top ul li a,
.card #dashboard .search-style .card-content--top ul li a {
  padding: 9px 0px;
}

#dashboard .search-style .card-content ul li a .ellipsis,
#dashboard .search-style .card .card-content--top ul li a .ellipsis,
.card #dashboard .search-style .card-content--top ul li a .ellipsis {
  overflow: visible;
}

#dashboard .market-watch .col-lg-6:nth-child(1) {
  padding: 0px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #dashboard .market-watch .col-lg-6 {
    padding: 0 !important;
  }

  #dashboard .market-watch .col-lg-6 .col-lg-9 {
    max-width: 70%;
  }

  #dashboard .market-watch .col-lg-6 .col-lg-3 {
    max-width: 30%;
  }

  #dashboard .market-watch .col-lg-6 .col-lg-6 {
    max-width: 50%;
    padding: 0 !important;
  }

  #dashboard .market-watch .col-lg-6 .col-lg-6 h3 {
    font-size: 16px;
  }

  #dashboard .market-watch .col-lg-6 .col-lg-6 h3 span {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {
  #dashboard .market-watch .col-lg-6>.row {
    flex-wrap: inherit;
  }

  #dashboard .market-watch .col-lg-6>.row .col-lg-6 {
    margin: 0 !important;
  }
}

#dashboard .listing-count {
  padding: inherit;
  padding-right: 0px;
  padding-left: 0px;
}

#dashboard .listing-row {
  position: relative;
  padding: 20px 30px 20px 30px !important;
  align-items: center;
  /* .listing-row was used heavily in elements that are not alike; we need to either break it out or define some modifiers */
}

@media (min-width: 576px) {
  #dashboard .listing-row--left {
    padding-left: 0 !important;
  }

  #dashboard .listing-row--right {
    padding-right: 0 !important;
  }

  #dashboard .listing-row--single {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #dashboard .listing-row--last {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
  }
}

#dashboard .listing-row .meta .icon {
  top: 0px;
}

#dashboard .listing-row .agent-stars ul {
  padding: 0;
  list-style: none;
  display: flex;
}

#dashboard .listing-row .agent-stars ul li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
  width: 16px;
}

#dashboard .listing-row .agent-stars ul svg {
  width: 100%;
}

#dashboard .listing-row--left.clickable.listing-row:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  top: 6px;
  right: 15px;
  border-radius: 25px;
  background: #343a4c;
  opacity: 0;
  transition: all 0.1s ease-in-out;
  z-index: -1;
}

#dashboard .listing-row--left.clickable.listing-row:hover:before {
  opacity: 1;
  transition: all 0.1s ease-in-out;
}

#dashboard .listing-row--right.clickable.listing-row:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  top: 6px;
  right: -15px;
  border-radius: 25px;
  background: #343a4c;
  opacity: 0;
  transition: all 0.1s ease-in-out;
  z-index: -1;
}

#dashboard .listing-row--right.clickable.listing-row:hover:before {
  opacity: 1;
  transition: all 0.1s ease-in-out;
}

#dashboard .sidebar {
  max-width: 456px;
  overflow: unset !important;
  padding-top: 0;
}

@media (max-width: 991.98px) {
  #dashboard .sidebar {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  #dashboard .sidebar {
    width: 100%;
  }
}

#dashboard .sidebar .content {
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0;
  max-width: 100%;
}

#dashboard .sidebar h3 {
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: #121925;
  line-height: 1;
}

@media (max-width: 767.98px) {
  #dashboard .sidebar.collapsible {
    margin-left: 0;
  }
}

#dashboard .sidebar.collapsible .content label {
  font-size: 18px;
  font-style: italic;
}

#dashboard .sidebar.collapsible .content .post-type {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #dashboard .sidebar.collapsible .content .post-type #post-activity {
    width: 20%;
    justify-content: center;
  }
}

#dashboard .sidebar #scrollable .listing-select .excerpt {
  justify-content: end;
}

#dashboard .sidebar #scrollable .listing-select .excerpt .fancy-box {
  border: 0;
  padding: 0 !important;
}

#dashboard .sidebar #scrollable .listing-select .excerpt .fancy-box label {
  display: flex;
  align-items: center;
  font-style: normal;
  padding-bottom: 0 !important;
}

#dashboard .sidebar #scrollable .listing-select .excerpt .property-image img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 60px !important;
  width: 100% !important;
  max-width: 107px;
}

#dashboard .sidebar .listing-row {
  align-items: flex-start;
  padding-bottom: 30px;
}

#dashboard .sidebar .listing-row .listing-col .light a {
  color: #131a25 !important;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px !important;
  line-height: 19px;
}

#dashboard .sidebar .listing-row .listing-col .light span a {
  color: #25a9e0 !important;
  text-transform: uppercase;
}

#dashboard .sidebar .listing-row .listing-col .actions .action {
  margin: 0;
  padding: 0 24px 0 0;
}

#dashboard .sidebar .listing-row .listing-col .actions a {
  position: relative;
}

#dashboard .sidebar .listing-row .listing-col .actions i {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease-in-out 200ms;
  width: auto;
  height: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #4f536c;
  padding: 8px;
  border-radius: 50%;
  animation: tooltip-effect 500ms ease-in;
}

#dashboard .sidebar .listing-row .listing-col .actions i:after {
  content: "";
  height: 25px;
  width: 28px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  transition: all 0.4s;
}

#dashboard .sidebar .listing-row .listing-col .actions i:hover:after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 1;
  background: #e5e9ea;
}

#dashboard .sidebar-section h3 {
  font-size: 24px;
  color: #121925;
}

#dashboard .sidebar-section h3:after {
  display: none;
}

#dashboard .sidebar-section form select,
#dashboard .sidebar-section form a.button {
  border-radius: 3px;
  font-size: 18px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
}

#dashboard .post-style,
#dashboard .dashpost-style {
  position: relative;
}

#dashboard .post-style .hands,
#dashboard .dashpost-style .hands {
  width: 220px;
  padding: 0;
  background-color: #fff;
  left: unset;
  right: 10px;
  border-radius: 5px;
}

#dashboard .post-style .hands.first-list-item::before,
#dashboard .dashpost-style .hands.first-list-item::before {
  border-bottom: 5px solid #eff0f8;
}

#dashboard .post-style .hands::before,
#dashboard .dashpost-style .hands::before {
  position: absolute;
  top: -10px;
  right: 20px;
}

#dashboard .post-style .hands.active,
#dashboard .dashpost-style .hands.active {
  top: 65px;
}

@media (max-width: 767.98px) {

  #dashboard .post-style .hands.active,
  #dashboard .dashpost-style .hands.active {
    right: -30px;
  }
}

#dashboard .post-style .hands.fliter-list,
#dashboard .dashpost-style .hands.fliter-list {
  top: 50px;
  right: -15px;
  width: 220px;
}

#dashboard .post-style .hands.fliter-list::before,
#dashboard .dashpost-style .hands.fliter-list::before {
  right: 15px;
}

#dashboard .post-style .hands.fliter-list.active,
#dashboard .dashpost-style .hands.fliter-list.active {
  top: 55px;
}

#dashboard .post-style .hands li,
#dashboard .dashpost-style .hands li {
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  cursor: pointer;
}

#dashboard .post-style .hands li a,
#dashboard .dashpost-style .hands li a {
  font-size: 16px;
  font-weight: 600;
}

#dashboard .post-style .hands li:hover,
#dashboard .dashpost-style .hands li:hover {
  background: #eff0f8;
}

#dashboard .post-style .hands li:hover:first-child,
#dashboard .dashpost-style .hands li:hover:first-child {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}

#dashboard .post-style .hands li:hover:last-child,
#dashboard .dashpost-style .hands li:hover:last-child {
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

#dashboard .post-style #chose-post,
#dashboard .dashpost-style #chose-post {
  display: flex;
  align-items: center;
  height: 50px;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  margin: 0 10px;
  padding: 0 20px;
}

#dashboard .post-style #chose-post.active,
#dashboard .dashpost-style #chose-post.active {
  display: block !important;
}

#dashboard .post-style #chose-post span,
#dashboard .dashpost-style #chose-post span {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767.98px) {

  #dashboard .post-style #chose-post span,
  #dashboard .dashpost-style #chose-post span {
    font-size: 16px;
  }
}

#dashboard .post-style li,
#dashboard .dashpost-style li {
  text-align: left;
}

#dashboard .post-style li .dropdown-style::before,
#dashboard .dashpost-style li .dropdown-style::before {
  content: "";
  border-bottom: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  height: 0;
  position: absolute;
  top: -5px;
  right: 20px;
}

#dashboard .post-style li .dropdown-style li,
#dashboard .dashpost-style li .dropdown-style li {
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 16px;
  font-weight: normal !important;
  color: #4f536c;
  cursor: pointer;
  pointer-events: all;
  padding: 0 20px;
}

#dashboard .post-style li:hover .dropdown-style,
#dashboard .dashpost-style li:hover .dropdown-style {
  left: 0px;
  top: 50px;
}

#dashboard .post-style {
  margin-bottom: 0px;
}

#dashboard .post-style li {
  cursor: pointer;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
}

#dashboard .post-style li .dropdown-style {
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}

#dashboard .post-style li .dropdown-style li {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
}

#dashboard .post-style li .dropdown-style li a {
  font-size: 16px;
  color: #4f536c;
  font-weight: normal !important;
  cursor: pointer;
  pointer-events: all;
}

#dashboard .post-style li:hover .dropdown-style,
#dashboard .dashpost-style li:hover .dropdown-style {
  display: block;
  position: absolute;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(79, 83, 108, 0.5);
  width: 220px;
  right: 0;
  top: 50px;
  z-index: 2;
  padding: 0;
}

#dashboard .post-style li:hover .dropdown-style {
  top: 25px;
}

#dashboard .filters {
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

#dashboard .filters .filter-icon-style {
  display: flex;
  align-items: center;
}

#dashboard .filters .filter-icon-style i {
  padding: 0px 5px;
}

#dashboard .fill p.meta {
  font-size: 14px !important;
  font-weight: 600 !important;
}

#dashboard .fill p:nth-child(2) {
  padding-bottom: 20px;
  color: #131a25 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 22px;
}

#dashboard-width {
  width: 75%;
}

.comm-res-col .card .card-meta h3,
#dashboard .sidebar-section h3 {
  font-size: 24px;
}

.addres-text {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 100;
  color: #fff;
}

.card-section.market-watch,
#dashboard .card .market-watch.card-section--header {
  padding-top: 0 !important;
  padding-bottom: 20px !important;
}

.mw-sec {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.cs-sec {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.card-content .col-lg-6:first-child,
.card .card-content--top .col-lg-6:first-child {
  padding-right: 35px !important;
}

#fragment .label p {
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #fragment .label {
    width: 30% !important;
  }

  #fragment .label p {
    font-size: 14px !important;
  }
}

#fragment .amount p {
  font-weight: 600;
  font-size: 22px !important;
  line-height: 22px !important;
  text-align: right;
  color: #fff !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #fragment .amount p {
    width: 10% !important;
  }
}

#fragment .market-watch .profile .information h3 {
  text-align: left !important;
  font-weight: 700 !important;
  font-size: 24px !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #fragment .market-watch .profile .information h3 {
    font-size: 16px !important;
  }
}

#fragment .market-watch .profile .information .small {
  font-size: 16px !important;
  line-height: 16px !important;
  color: #949baf !important;
}

@media (min-width: 576px) {
  #fragment .market-watch .listing-col--left {
    padding-left: 30px !important;
  }

  #fragment .market-watch .listing-col--right {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px !important;
  }
}

#fragment .market-watch .listing-col .small {
  font-size: 16px !important;
  line-height: 16px !important;
  font-weight: 700 !important;
  color: #fff !important;
  padding-bottom: 0 !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #fragment .market-watch .listing-row {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #fragment .market-watch .col-md-1 {
    flex: 0 0 10%;
    max-width: 10%;
  }

  #fragment .market-watch .col-md-5 {
    max-width: 33%;
    flex: 0 0 33%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #fragment>.col-sm-12 {
    padding: 0 8px;
  }

  #fragment>.col-sm-12 .col-md-6 {
    padding: 0 !important;
    margin: 0 !important;
  }

  #fragment>.col-sm-12 .col-md-6 .graph {
    width: 60% !important;
  }
}

.border-styles {
  border-top: 1px solid #2f3543;
  border-bottom: 1px solid #2f3543;
}

.top-space {
  padding-top: 15px;
}

.first {
  margin-right: 60px !important;
}

.checkbox-group .checkks-box {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox-group .checkks-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.checkbox-group .checkks-box input:checked~span:before {
  background-color: #fff;
  border: 1px solid #fff;
}

.checkbox-group .checkks-box input:checked~span:after {
  display: block;
}

.checkbox-group .checkks-box span {
  position: relative;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

.checkbox-group .checkks-box span:before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: -30px;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid #fff;
}

.checkbox-group .checkks-box span:after {
  position: absolute;
  content: "";
  display: none;
  left: -23px;
  top: 4px;
  width: 7px;
  height: 11px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

#activity-title {
  cursor: text;
  -moz-appearance: textfield-multiline;
  -webkit-appearance: textarea;
  border-radius: 5px;
  border: 1px solid #ced2dc;
  width: 100%;
  max-height: 140px;
  font-size: 16px;
  color: #343a4c;
  overflow: auto;
  resize: vertical;
  margin-bottom: 20px;
  padding: 12px;
}

div#activity-title[contenteditable="true"]:empty:before {
  content: attr(placeholder);
  display: block;
  color: #4f536c;
}

#chose-post,
#dash-activity-type {
  font-size: 18px;
}

#dash-activity-type,
#post-activity {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  height: 50px;
  border-radius: 3px;
}

.dashpost-style {
  width: auto;
}

#chose-post {
  font-weight: normal;
  width: 100%;
  border: 1px solid #ced2dc;
}

#dashboard .dropdown-style,
#listing-agents-but .dropdown-style {
  display: none;
}

#activity-fliter li a {
  font-size: 16px;
  font-weight: 600;
  color: #4f536c;
}

#activity-fliter li .all-activity:after,
#chose-post:after {
  cursor: pointer;
  content: "\f107";
  padding-left: 10px;
  font-size: 18px;
  font-family: "FontAwesome";
  font-weight: 600;
}

.wht {
  color: #fff;
}

.card-style {
  padding-top: 40px !important;
}

#current_price,
#total_price {
  padding-top: 8px;
}

@media only screen and (min-width: 1920px) {
  .listing-count span:nth-child(1) {
    padding: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1919px) {

  .card .card-content li .icon,
  .card .card-content--top li .icon {
    padding-right: 10px;
  }

  #fragment .label p {
    font-size: 14px !important;
  }

  .listing-row .label {
    width: 24%;
  }

  #dashboard .listing-row .col-lg-5 {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .str-svg,
  .str-svg--market-watch {
    padding: 0px 15px 0px 0px !important;
  }

  .sidebar.collapsible {
    padding-left: 16px;
    right: 0px;
    height: 100vh;
    width: 40%;
    transition: width 200ms linear;
    box-shadow: 0 -2px 5px rgba(79, 83, 108, 0.2);
    background: #fff;
    z-index: 100;
    overflow: auto;
  }

  .sidebar.collapsed {
    z-index: 1000 !important;
  }

  .sidebar.collapsible .content .post-type a.button {
    width: 30% !important;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  #dashboard .listing-row {
    padding: 20px 0 20px !important;
  }

  #dashboard .search-edit .col-sm-6 {
    padding: 0;
  }

  #dashboard .search-edit .col-sm-6 .card-section.search-style .card-content,
  #dashboard .search-edit .col-sm-6 .card .search-style.card-section--header .card-content,
  #dashboard .card .search-edit .col-sm-6 .search-style.card-section--header .card-content,
  #dashboard .search-edit .col-sm-6 .card-section.search-style .card .card-content--top,
  .card #dashboard .search-edit .col-sm-6 .card-section.search-style .card-content--top,
  #dashboard .search-edit .col-sm-6 .card .search-style.card-section--header .card-content--top,
  #dashboard .card .search-edit .col-sm-6 .search-style.card-section--header .card-content--top {
    padding-top: 30px;
  }

  #dashboard .search-edit .col-sm-6 .card-section.search-style .card-content .ellipsis,
  #dashboard .search-edit .col-sm-6 .card .search-style.card-section--header .card-content .ellipsis,
  #dashboard .card .search-edit .col-sm-6 .search-style.card-section--header .card-content .ellipsis,
  #dashboard .search-edit .col-sm-6 .card-section.search-style .card .card-content--top .ellipsis,
  .card #dashboard .search-edit .col-sm-6 .card-section.search-style .card-content--top .ellipsis,
  #dashboard .search-edit .col-sm-6 .card .search-style.card-section--header .card-content--top .ellipsis,
  #dashboard .card .search-edit .col-sm-6 .search-style.card-section--header .card-content--top .ellipsis {
    white-space: nowrap;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }

  #dashboard .search-edit .col-sm-6 .card-section.search-style .card-content .ellipsis .single-listings,
  #dashboard .search-edit .col-sm-6 .card .search-style.card-section--header .card-content .ellipsis .single-listings,
  #dashboard .card .search-edit .col-sm-6 .search-style.card-section--header .card-content .ellipsis .single-listings,
  #dashboard .search-edit .col-sm-6 .card-section.search-style .card .card-content--top .ellipsis .single-listings,
  .card #dashboard .search-edit .col-sm-6 .card-section.search-style .card-content--top .ellipsis .single-listings,
  #dashboard .search-edit .col-sm-6 .card .search-style.card-section--header .card-content--top .ellipsis .single-listings,
  #dashboard .card .search-edit .col-sm-6 .search-style.card-section--header .card-content--top .ellipsis .single-listings {
    display: inline-block;
  }

  #dashboard #fragment .col-sm-12 {
    padding: 0;
    margin-bottom: 30px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section,
  #dashboard #fragment .col-sm-12 .card .card-section--header,
  #dashboard .card #fragment .col-sm-12 .card-section--header {
    padding: 30px 20px;
  }

  #dashboard #fragment .col-sm-12 .card-section .pull-right,
  #dashboard #fragment .col-sm-12 .card .card-section--header .pull-right,
  #dashboard .card #fragment .col-sm-12 .card-section--header .pull-right {
    width: 100%;
    text-align: left;
  }

  #dashboard #fragment .col-sm-12 .card-section .pull-right p,
  #dashboard #fragment .col-sm-12 .card .card-section--header .pull-right p,
  #dashboard .card #fragment .col-sm-12 .card-section--header .pull-right p {
    margin: 0;
  }

  #dashboard #fragment .col-sm-12 .card-section .listing-count,
  #dashboard #fragment .col-sm-12 .card .card-section--header .listing-count,
  #dashboard .card #fragment .col-sm-12 .card-section--header .listing-count {
    padding-right: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section .listing-count .listing-row,
  #dashboard #fragment .col-sm-12 .card .card-section--header .listing-count .listing-row,
  #dashboard .card #fragment .col-sm-12 .card-section--header .listing-count .listing-row {
    padding-left: 0 !important;
    padding-right: 0 !important;
    display: grid;
    max-width: 100%;
    grid-template-columns: 0.8fr;
    grid-template-areas: "head head head" "graph graph amt";
  }

  #dashboard #fragment .col-sm-12 .card-section .listing-count .listing-row .label,
  #dashboard #fragment .col-sm-12 .card .card-section--header .listing-count .listing-row .label,
  #dashboard .card #fragment .col-sm-12 .card-section--header .listing-count .listing-row .label {
    margin-bottom: 4px;
    grid-area: head;
    display: grid;
    width: 100%;
  }

  #dashboard #fragment .col-sm-12 .card-section .listing-count .listing-row .graph,
  #dashboard #fragment .col-sm-12 .card .card-section--header .listing-count .listing-row .graph,
  #dashboard .card #fragment .col-sm-12 .card-section--header .listing-count .listing-row .graph {
    top: 9px;
    grid-area: graph;
    width: 100%;
    padding: 0 0;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-6,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-6,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-6 {
    padding: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-6 .listing-row,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row {
    padding-left: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-6 .listing-row:first-child,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row:first-child,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row:first-child {
    grid-template-columns: auto;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-6 .listing-row:first-child p,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row:first-child p,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row:first-child p {
    font-size: 16px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-6 .listing-row .label,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row .label,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row .label {
    margin-bottom: 4px;
    grid-area: head;
    display: grid;
    width: 100%;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-6 .listing-row .graph,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row .graph,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-6 .listing-row .graph {
    top: 9px;
    grid-area: graph;
    width: 100%;
    padding: 0 0;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .listing-row.border-styles,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .listing-row.border-styles,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .listing-row.border-styles {
    padding-left: 0 !important;
    flex-direction: column;
    position: relative;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .listing-row.border-styles .col-lg-3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .listing-row.border-styles .col-lg-3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .listing-row.border-styles .col-lg-3 {
    text-align: left;
    padding-left: 30px;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .listing-row.border-styles .col-lg-3.top-space.pull-right,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .listing-row.border-styles .col-lg-3.top-space.pull-right,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .listing-row.border-styles .col-lg-3.top-space.pull-right {
    margin: 20px 0;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top {
    overflow-x: auto;
    overflow-y: hidden;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div {
    width: -moz-max-content;
    width: max-content;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div>.listing-row,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div>.listing-row,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div>.listing-row,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div>.listing-row,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div>.listing-row,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div>.listing-row,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div>.listing-row {
    padding-left: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div>.listing-row p,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div>.listing-row p,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div>.listing-row p,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div>.listing-row p,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div>.listing-row p,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div>.listing-row p,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div>.listing-row p {
    font-size: 16px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div>.listing-row .col-lg-1,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div>.listing-row .col-lg-1,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div>.listing-row .col-lg-1,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div>.listing-row .col-lg-1,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div>.listing-row .col-lg-1,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div>.listing-row .col-lg-1,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div>.listing-row .col-lg-1 {
    text-align: left;
    padding: 0 !important;
    width: 60%;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row {
    padding-left: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .profile,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .profile,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .profile,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile {
    display: flex !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .profile>a,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile>a,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile>a,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .profile>a,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .profile>a,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile>a,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile>a {
    display: block;
    margin-right: 10px;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .profile>a img,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile>a img,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile>a img,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .profile>a img,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .profile>a img,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile>a img,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile>a img {
    width: 32px !important;
    height: 32px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .profile .information h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile .information h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .profile .information h3,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .profile .information h3,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .profile .information h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile .information h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .profile .information h3 {
    font-size: 12px !important;
    margin: 0;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .col-lg-3 h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-3 h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-3 h3,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3 {
    font-size: 16px;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .col-lg-3 h3 span,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-3 h3 span,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-3 h3 span,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3 span,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3 span,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3 span,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-3 h3 span {
    font-size: 16px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .col-lg-1,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-1,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-1,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1 {
    padding: 0 !important;
    width: 60%;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content.card-style>div .topMembersLists .listing-row .col-lg-1 li,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-1 li,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content.card-style>div .topMembersLists .listing-row .col-lg-1 li,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1 li,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1 li,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1 li,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-style.card-content--top>div .topMembersLists .listing-row .col-lg-1 li {
    padding: 0;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content .col-lg-10.listing-col,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content .col-lg-10.listing-col,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content .col-lg-10.listing-col,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-content--top .col-lg-10.listing-col,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content--top .col-lg-10.listing-col,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content--top .col-lg-10.listing-col,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content--top .col-lg-10.listing-col {
    padding-left: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content .col-lg-10.listing-col p,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content .col-lg-10.listing-col p,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content .col-lg-10.listing-col p,
  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card .card-content--top .col-lg-10.listing-col p,
  .card #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .card-content--top .col-lg-10.listing-col p,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .card-content--top .col-lg-10.listing-col p,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .card-content--top .col-lg-10.listing-col p {
    font-size: 10px !important;
    color: #949baf !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time {
    padding-left: 0 !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .profile.no-hover,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover {
    display: flex !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .profile.no-hover .information,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover .information,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover .information {
    margin-left: 10px;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .profile.no-hover .information h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover .information h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover .information h3 {
    font-size: 17px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .profile.no-hover .information p,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover .information p,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .profile.no-hover .information p {
    font-size: 11px !important;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .col-lg-3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-3 {
    margin-top: -3px;
    text-align: right;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .col-lg-3 h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-3 h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-3 h3 {
    font-size: 16px;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .col-lg-4:last-child,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-4:last-child,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-4:last-child {
    position: absolute;
    right: 0;
    text-align: right;
    bottom: 23px;
    padding: 0;
  }

  #dashboard #fragment .col-sm-12 .card-section.market-watch.cs-sec .col-lg-12.listing-row.listing-all-time .col-lg-4:last-child h3,
  #dashboard #fragment .col-sm-12 .card .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-4:last-child h3,
  #dashboard .card #fragment .col-sm-12 .market-watch.cs-sec.card-section--header .col-lg-12.listing-row.listing-all-time .col-lg-4:last-child h3 {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  #fragment .col-lg-3.px-0.pull-right {
    display: flex;
    justify-content: space-around;
  }

  #fragment .col-lg-3.px-0.pull-right .checkbox-group {
    margin-right: 0 !important;
    margin-top: 10px;
  }

  #dashboard .card {
    background: transparent;
    border: 0;
  }

  #dashboard .listing-row .amount {
    width: 100%;
  }

  #dashboard .listing-row.listing-row--last.listing-all-time {
    display: block;
    min-height: 100px;
  }

  #dashboard .listing-row.listing-row--last.listing-all-time .col-lg-6 {
    width: 50%;
    float: left;
  }

  #dashboard .listing-row.listing-row--last.listing-all-time .col-lg-3 {
    width: 50%;
    float: right;
  }

  #dashboard .sidebar.collapsible .content .sidebar-section form .post-type #chose-post {
    padding: 7px 10px 8px 10px !important;
  }
}

.map .map-wrapper {
  border-radius: 5px;
  border: 1px solid #CED2DC;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  .map .map-wrapper {
    height: 400px;
  }
}

.map .map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.listing-text {
  margin-top: 16px;
  margin-bottom: 16px;
}

.listing-text *:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.fullwidth {
  width: 100%;
}

@media (max-width: 767.98px) {
  #listing .listing-price-wrap .color-block {
    padding: 8px;
  }

  .second-listing-row {
    padding: 0 20px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .single-listing .post-title {
    position: initial !important;
    padding-top: 3% !important;
    display: flex !important;
    /*page wants*/
  }

  .single-listing .post-title .post-title-header {
    align-items: end;
  }

  .single-listing .post-title .post-title-header .listing-price-wrap {
    flex-direction: column;
    align-items: flex-end;
  }

  .single-listing .post-title .post-title-header .listing-price-wrap .listing-price_text {
    margin: 0;
    margin-bottom: 20px;
  }

  .single-listing .post-title .post-title-header .listing-price-wrap .listing-price_text p {
    text-align: right;
    font-size: 20px !important;
  }

  .single-listing .post-title .post-title-header .listing-price-wrap .listing-price_btn>div {
    position: initial;
  }

  .single-listing .post-title .post-title-header_left {
    flex-direction: column;
    display: flex;
    align-items: end;
  }

  .single-listing .post-title .post-title-header_left .fancy-box label {
    display: flex;
    align-items: center;
  }

  .single-listing .post-title .post-title-header_left .fancy-box label span {
    margin-left: 5px;
  }

  .single-listing .post-title .post-title-header_left .pls-address h3 {
    font-size: 26px !important;
  }

  .single-listing .post-title .post-title-header_left .pls-address .listing_name,
  .single-listing .post-title .post-title-header_left .pls-address p,
  .single-listing .post-title .post-title-header_left .pls-address span {
    font-size: 18px !important;
  }

  .single-listing .post-title .post-content .kelcey-row .left-col {
    margin-bottom: 50px;
    padding: 0 20px;
  }

  .single-listing .post-title .post-content .kelcey-row .info-listing .blob {
    margin-bottom: 20px;
  }

  .single-listing .post-title .post-content .kelcey-row .info-listing .blob p {
    font-size: 18px !important;
  }

  .single-listing .post-title .post-content .kelcey-row .info-listing .blob h4 {
    font-size: 20px;
  }

  .single-listing .post-title .arch-listing-row-one {
    padding: 0;
  }

  .single-listing .post-title .arch-listing-row-one .post-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 0;
  }

  .single-listing .post-title .arch-listing-row-one .post-actions>a {
    margin: 0 !important;
    padding: 0 10px !important;
  }

  .single-listing .post-title .arch-listing-row-one .post-actions>a>.inline-b {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
  }

  .single-listing .post-title .arch-listing-row-one .post-actions>a>.inline-b .alert {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .single-listing .post-title .arch-listing-row-one .card.full {
    border: 0;
  }

  .single-listing .post-title .arch-listing-row-one .card.full p {
    font-size: 16px !important;
  }

  .single-listing .post-title .listing-text p {
    font-size: 16px !important;
  }

  .single-listing .post-title .listing-text .col-2 {
    padding: 20px 16px 0;
  }

  .single-listing .post-title .agent-footer .agent-wrap,
  .single-listing .post-title .agent-footer .agent-wrap--single {
    flex-direction: column;
  }

  .single-listing .post-title .agent-footer .agent-wrap .agent-info,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-info {
    flex: 0 0 100%;
    max-width: 100%;
    align-items: center;
    margin-bottom: 30px;
  }

  .single-listing .post-title .agent-footer .agent-wrap .agent-info .agent-info_image,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-info .agent-info_image {
    flex: 0 0 180px;
    max-width: 100%;
    height: 180px;
  }

  .single-listing .post-title .agent-footer .agent-wrap .agent-info .agent-info_desc .agent-info_name a span,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-info .agent-info_desc .agent-info_name a span {
    font-size: 24px !important;
  }

  .single-listing .post-title .agent-footer .agent-wrap .agent-info .agent-info_desc .agent-info_name p,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-info .agent-info_desc .agent-info_name p {
    font-size: 18px !important;
  }

  .single-listing .post-title .agent-footer .agent-wrap .agent-contacts,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-contacts {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .single-listing .post-title .agent-footer .agent-wrap .agent-contacts li span,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-contacts li span,
  .single-listing .post-title .agent-footer .agent-wrap .agent-contacts li a,
  .single-listing .post-title .agent-footer .agent-wrap--single .agent-contacts li a {
    font-size: 16px !important;
  }

  .single-listing .post-title .float-sm-left {
    width: 65%;
  }

  .single-listing .post-title .float-sm-left .inline-b span {
    font-size: 16px !important;
  }

  .single-listing .post-title .float-sm-left .fancy-box span {
    vertical-align: baseline;
  }

  .single-listing .post-title .float-sm-right {
    width: 35% !important;
    display: block;
    left: 0 !important;
  }

  .single-listing .post-title .float-sm-right .inline-b {
    display: block;
  }

  .single-listing .post-title .float-sm-right .inline-b p {
    text-align: right;
    font-size: 16px !important;
  }

  .single-listing .post-title .float-sm-right .inline-b h3 {
    font-size: 20px !important;
  }

  .single-listing .post-title .float-sm-right .color-block {
    position: initial;
    font-size: 18px !important;
  }

  .single-listing .post-content>.row .want__details__left {
    max-width: 50%;
    flex: 0 0 50%;
    padding: 24px;
  }

  .single-listing .post-content>.row .square-col.map {
    position: relative;
    max-width: 50%;
    flex: 0 0 50%;
  }

  .single-listing .post-content>.row .square-col.info-listing {
    padding: 20px 13px;
  }

  .single-listing .post-content>.row .square-col.info-listing .blob p {
    font-size: 18px !important;
  }

  .single-listing .post-content>.row .square-col.info-listing .blob h4 {
    font-size: 20px;
  }

  .single-listing .post-content>.row .left-col.col-sm {
    margin-bottom: 20px;
  }

  .single-listing .post-content>.row .post-actions {
    display: flex;
    padding: 0 20px;
  }

  .single-listing .post-content>.row .post-actions a {
    margin-right: 25px;
  }

  .single-listing .post-content>.row .post-actions a .inline-b {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 !important;
  }

  .single-listing .post-content>.row .post-actions a .inline-b .alert {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .single-listing .post-content>.row.listing-text {
    position: initial;
  }

  .single-listing .post-content>.row.listing-text .col-10 p {
    font-size: 16px !important;
  }

  .single-listing .post-content>.row.listing-text .col-2 {
    padding: 0;
  }

  .single-listing .post-content>.row.listing-text .col-2 p {
    margin: 0;
  }

  .single-listing .post-content>.row.listing-text p {
    font-size: 16px !important;
  }

  .single-listing .post-content>.row.agent-footer {
    padding: 0 20px;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-6 .profile {
    text-align: left;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-6 .profile img {
    width: 180px !important;
    height: 180px !important;
    margin-right: 40px !important;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-6 .profile .information h2 {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-6 .profile .information .agent-profile__rating ul {
    display: flex;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .single-listing .post-content>.row.agent-footer .col-sm-3 h3,
  .single-listing .post-content>.row.agent-footer .col-sm-3 p {
    font-size: 16px !important;
  }

  .single-listing .post-content>.row .col-4 .card.full,
  .single-listing .post-content>.row .col-6 .card.full {
    border: 0;
  }

  .single-listing .post-content>.row .col-4 .card.full .card-section,
  .single-listing .post-content>.row .col-4 #dashboard .card.full .card-section--header,
  #dashboard .single-listing .post-content>.row .col-4 .card.full .card-section--header,
  .single-listing .post-content>.row .col-6 .card.full .card-section,
  .single-listing .post-content>.row .col-6 #dashboard .card.full .card-section--header,
  #dashboard .single-listing .post-content>.row .col-6 .card.full .card-section--header {
    padding: 20px;
  }

  .single-listing .post-content>.row .col-4 .card.full .card-section p,
  .single-listing .post-content>.row .col-4 #dashboard .card.full .card-section--header p,
  #dashboard .single-listing .post-content>.row .col-4 .card.full .card-section--header p,
  .single-listing .post-content>.row .col-6 .card.full .card-section p,
  .single-listing .post-content>.row .col-6 #dashboard .card.full .card-section--header p,
  #dashboard .single-listing .post-content>.row .col-6 .card.full .card-section--header p {
    font-size: 16px !important;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer {
    padding: 0;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card {
    border: 0;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-6 {
    flex: 0 0 100%;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-6 .profile {
    display: flex !important;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-6 .profile img {
    position: initial;
    transform: none;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-6 .profile .information {
    padding: 0;
    margin: 0;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-3 {
    flex: 0 0 50%;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-3 h3,
  .single-listing .post-content>.row.profile-wrapper.agent-footer .card .col-sm-3 p {
    font-size: 16px !important;
  }

  #listing .arch-second-row {
    flex-direction: row;
    justify-content: space-between;
  }

  #listing .arch-second-row .col-5 {
    max-width: 50% !important;
    justify-content: space-between;
  }

  #listing .arch-second-row .col-5 .details {
    justify-content: space-between;
  }

  #listing .arch-second-row .col-5 .details .checkbox-group {
    position: initial;
  }

  #listing .arch-first-row {
    flex-direction: row;
  }

  #listing .arch-first-row .arch-print {
    flex: 0 0 50%;
  }

  #listing .arch-first-row .arch-aug {
    margin-bottom: 20px;
    flex: 0 0 100%;
  }

  #listing .arch-first-row .arch-repot {
    flex: 0 0 47%;
  }

  #listing .arch-first-row .arch-repot label {
    font-size: 16px !important;
  }

  #listing .profile-wrapper.agent-footer {
    padding: 0 20px;
  }

  .single-wants .my-listing-result-main header .first-listing-row {
    flex-direction: row;
  }

  .single-wants .my-listing-result-main header .first-listing-row .listing-result-btn {
    order: 2 !important;
    flex: 0 0 50%;
    max-width: 50% !important;
  }

  .single-wants .my-listing-result-main header .first-listing-row .listing-result-heading {
    order: 1 !important;
    flex: 0 0 100%;
    margin-bottom: 20px !important;
  }

  .single-wants .my-listing-result-main header .first-listing-row .listing-result-report {
    flex: 0 0 47%;
    max-width: 47% !important;
  }

  .single-wants .my-listing-result-main header .second-listing-row {
    flex-direction: row;
  }
}

#profile-listings .grey {
  background: #949BAF !important;
}

#profile-listings .page-header h2:before {
  display: none;
}

#profile-listings .listing-status .draft {
  background-color: #949BAF !important;
}

#profile-listings .listing-list {
  border: 1px solid #ced2dc;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 0;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}

#profile-listings .listing-list.pending {
  background-color: #eff0f8;
}

#profile-listings .listing-list .listing-agent {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #25a9e0;
}

#profile-listings .listing-list .listing_terms {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#profile-listings .listing-list .listing_terms li a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  padding: 0 20px;
}

#profile-listings .listing-list .listing_terms li:hover {
  background-color: #eff0f8;
  transition: all 0.3s ease-in-out;
}

#profile-listings .listing-list .listing_terms li.active-list {
  color: #ced2dc;
  background-color: #eff0f8;
  pointer-events: none;
}

#profile-listings .listing-list .listing_terms li:first-child:not(.active-list),
#profile-listings .listing-list .listing_terms li.list-disabled {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

#profile-listings .listing-list .row {
  padding: 20px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #profile-listings .listing-list .row .col-md-6 {
    padding: 0 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #profile-listings .listing-list .row {
    align-items: end;
  }
}

@media (max-width: 767.98px) {
  #profile-listings .listing-list .row {
    padding: 10px;
  }

  #profile-listings .listing-list .row .my-listing-img {
    height: auto;
    width: 100%;
  }

  #profile-listings .listing-list .row .listing__meta {
    padding-top: 19px;
    display: inline-block;
    width: 79%;
    padding-left: 0 !important;
  }

  #profile-listings .listing-list .row .listing__meta .bold {
    font-size: 16px;
  }

  #profile-listings .listing-list .row .listing__meta .f-12 {
    font-size: 9px !important;
    margin-bottom: 5px;
    line-height: normal;
  }

  #profile-listings .listing-list .row .listing__meta .listing-agent {
    font-size: 9px !important;
  }

  #profile-listings .listing-list .row .col-md-2.right {
    display: inline-block;
    width: auto;
    padding-top: 19px;
  }

  #profile-listings .listing-list .row .col-md-2.right .btn {
    width: 57px;
    height: 30px;
    font-size: 8px !important;
  }

  #profile-listings .listing-list .row .col-md-11 {
    width: 82%;
    display: inline-block;
    padding-left: 0;
  }

  #profile-listings .listing-list .row .col-md-11>div {
    font-size: 16px;
  }

  #profile-listings .listing-list .row .col-md-1.right {
    display: inline-block;
    width: 57px;
  }
}

#profile-listings .listing-list .row .archieved-div a {
  display: flex;
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

#profile-listings .listing-list.archived {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
  transition: all 0.6s ease-in-out;
}

#profile-listings .listing-list.archived:hover {
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #profile-listings .col-6.my-listing {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #profile-listings .col-6.my-listing .col-content--large {
    margin-top: 0;
  }

  #profile-listings .listing__controls .button__group>div {
    width: 135px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #profile-listings .col-md-3.left-col {
    display: block !important;
  }

  #profile-listings .col-md-6.my-listing,
  #profile-listings .col-md-9,
  #profile-listings .col-md-6.notifications {
    max-width: 69% !important;
    flex: 0 0 69% !important;
  }
}

@media (max-width: 767.98px) {
  #profile-listings .listing-list[type="wants"] .row:last-child {
    padding: 20px 10px;
    justify-content: space-between;
  }

  #profile-listings .listing-list[type="wants"] .row:last-child .col-md-2 {
    max-width: 33%;
    margin: 0 !important;
  }

  #profile-listings .listing-list[type="wants"] .row:last-child .col-md-2 .preview {
    font-size: 10px;
  }

  #profile-listings .listing-list[type="wants"] .row:last-child .col-md-2 .preview img {
    width: 16px;
    height: 16px;
    vertical-align: middle;
  }

  #profile-listings .listing__controls .button__group {
    width: 100%;
    margin-bottom: 20px;
  }

  #profile-listings .listing__controls .button__group>div {
    width: 33%;
  }

  #profile-listings .listing__controls .dropdown-button a {
    width: 80%;
    text-align: left;
  }

  #profile-listings .my-listings {
    position: relative;
  }

  #profile-listings .my-listings .row {
    position: relative;
  }

  #profile-listings .my-listings .col-md-2 {
    max-width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  #profile-listings .listing__meta .bold.c-text {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

#profile-listings .listing__controls {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ced2dc;
}

@media (max-width: 767.98px) {
  #profile-listings .listing__controls {
    padding: 20px 10px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #profile-listings .listing__meta {
    padding: 0 10px !important;
  }

  #profile-listings .listing__meta .c-text {
    font-size: 22px;
  }
}

#profile-listings .button__group {
  display: flex;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #profile-listings .button__group {
    width: 60%;
  }
}

#profile-listings .button__group div {
  width: 150px;
  height: 50px;
}

#profile-listings .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  height: 60px;
  border-radius: 3px;
  padding: 0 20px;
}

@media (max-width: 767.98px) {
  #profile-listings .btn {
    width: 57px;
    height: 30px;
    font-size: 8px !important;
  }
}

#profile-listings .preview-div,
#profile-listings .edit-div,
#profile-listings .archieved-div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
  border-radius: 3px;
  padding: 0 20px;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 992px) and (max-width: 1199.98px) {

  #profile-listings .preview-div,
  #profile-listings .edit-div,
  #profile-listings .archieved-div {
    width: 33%;
  }

  #profile-listings .preview-div a,
  #profile-listings .edit-div a,
  #profile-listings .archieved-div a {
    display: flex;
  }

  #profile-listings .preview-div a span,
  #profile-listings .edit-div a span,
  #profile-listings .archieved-div a span {
    font-size: 18px !important;
  }

  #profile-listings .preview-div a .preview,
  #profile-listings .edit-div a .preview,
  #profile-listings .archieved-div a .preview {
    display: flex;
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  #profile-listings .preview-div,
  #profile-listings .edit-div,
  #profile-listings .archieved-div {
    width: 33%;
  }

  #profile-listings .preview-div a,
  #profile-listings .edit-div a,
  #profile-listings .archieved-div a {
    display: flex;
  }

  #profile-listings .preview-div a span,
  #profile-listings .edit-div a span,
  #profile-listings .archieved-div a span {
    font-size: 18px !important;
  }

  #profile-listings .preview-div a .preview,
  #profile-listings .edit-div a .preview,
  #profile-listings .archieved-div a .preview {
    display: flex;
    font-size: 18px;
  }
}

#profile-listings .preview-div:hover,
#profile-listings .edit-div:hover,
#profile-listings .archieved-div:hover {
  background: #eff0f8;
  transition: all 0.1s ease-in-out;
}

#profile-listings .preview-div a,
#profile-listings .edit-div a,
#profile-listings .archieved-div a {
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
}

@media (max-width: 767.98px) {

  #profile-listings .preview-div a,
  #profile-listings .edit-div a,
  #profile-listings .archieved-div a {
    font-size: 10px;
  }

  #profile-listings .preview-div a img,
  #profile-listings .edit-div a img,
  #profile-listings .archieved-div a img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
}

#profile-listings .preview-div:hover,
#profile-listings .edit-div:hover,
#profile-listings .archieved-div:hover {
  background: #eff0f8;
}

@media (max-width: 767.98px) {

  #profile-listings .preview-div,
  #profile-listings .edit-div,
  #profile-listings .archieved-div {
    height: 16px !important;
    width: 33% !important;
    padding: 0;
    margin: 0;
  }

  #profile-listings .preview-div.edit-div,
  #profile-listings .preview-div.archieved-div,
  #profile-listings .edit-div.edit-div,
  #profile-listings .edit-div.archieved-div,
  #profile-listings .archieved-div.edit-div,
  #profile-listings .archieved-div.archieved-div {
    margin: 0 !important;
  }

  #profile-listings .preview-div.edit-div span,
  #profile-listings .preview-div.archieved-div span,
  #profile-listings .edit-div.edit-div span,
  #profile-listings .edit-div.archieved-div span,
  #profile-listings .archieved-div.edit-div span,
  #profile-listings .archieved-div.archieved-div span {
    font-size: 10px !important;
  }
}

#profile-listings .previe {
  margin-right: 10px;
}

#profile-listings .preview-link,
#profile-listings .edit,
#profile-listings .right-ul {
  display: flex;
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
}

#profile-listings .dropdown-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 220px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  background-color: #eff0f8;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  padding: 0 20px;
  transition: all 0.1s ease-in-out;
}

#profile-listings .dropdown-button a {
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
}

#profile-listings .dropdown-button a:hover {
  color: #4f536c;
}

@media (max-width: 767.98px) {
  #profile-listings .dropdown-button {
    width: 100%;
    justify-content: end;
    padding-left: 15px;
  }

  #profile-listings .dropdown-button a {
    font-size: 14px;
  }

  #profile-listings .dropdown-button .fa-chevron-down {
    font-size: 14px;
  }
}

#profile-listings .dropdown-style {
  position: absolute;
  display: block;
  margin-top: 18px;
  width: 220px;
  top: 30px;
  left: -1px;
  background: #fff;
  text-align: left;
  border-radius: 3px !important;
  box-shadow: 0 0 7px rgba(79, 83, 108, 0.3);
  transform-origin: center top;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  z-index: 9;
}

#profile-listings .dropdown-style.active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
  #profile-listings .dropdown-style {
    width: 100%;
  }
}

#profile-listings .right-ul {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #profile-listings .scoreBoard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0 0;
  }

  #profile-listings .scoreBoard h3 {
    display: block;
    order: 1;
    margin: 0;
    padding: 0;
  }

  #profile-listings .scoreBoard #status_filter {
    order: 3;
  }

  #profile-listings .scoreBoard .right.f-right.f-12 {
    order: 2;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #profile-listings .scoreBoard {
    margin-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  #profile-listings .page-content .col-md-3.left-col {
    display: none;
  }

  #profile-listings .page-content .col-md-6.middle-col {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

li.pagination-listing {
  cursor: pointer;
}

li.pagination-listing:hover {
  background-color: #ced2dc;
  border-color: #ced2dc;
  transition: all 0.2s ease-in-out;
}

img.listing-image {
  width: 100%;
}

.login {
  background-image: url("../img/thepls-member-login-laguna-beach.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  /* box-shadow: inset 21px 0px 20px -16px #0000009c; */
  box-shadow: inset 0 2.8px 2.2px rgba(0, 0, 0, 0.034), inset 0 5.7px 5.3px rgba(0, 0, 0, 0.048), inset 0 12.5px 10px rgba(0, 0, 0, 0.06), inset 0 22.3px 17.9px rgba(0, 0, 0, 0.072), inset 0 41.8px 33.4px rgba(0, 0, 0, 0.086), inset 0 100px 80px rgba(0, 0, 0, 0.12);
}

.login-wrapper {
  max-width: 500px;
  padding: 80px;
  background-color: #fff;
  border-radius: 3px;
  margin: 0 auto;
}

.login-wrapper .forgot {
  display: block;
  margin: 0px;
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  color: #4f536c;
}

.login-wrapper .forgot:hover {
  color: #ff1d4e;
}

.login-wrapper .forgot-form,
.login-wrapper .login-errors,
.login-wrapper .signup-errors,
.login-wrapper .password-reset-form {
  display: none;
}

.login-wrapper .forgot-form h3,
.login-wrapper .login-errors h3,
.login-wrapper .signup-errors h3,
.login-wrapper .password-reset-form h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 36px;
  margin: 0 0 16px;
  color: #131a25;
}

.login-wrapper .forgot-form p,
.login-wrapper .login-errors p,
.login-wrapper .signup-errors p,
.login-wrapper .password-reset-form p {
  font-weight: 600;
  color: #131a25;
}

.login-wrapper .login-errors,
.login-wrapper .signup-errors,
.login-wrapper .password-reset-form {
  display: block;
}

.login-wrapper .login-errors p.error,
.login-wrapper .login-errors p.success,
.login-wrapper .signup-errors p.error,
.login-wrapper .signup-errors p.success,
.login-wrapper .password-reset-form p.error,
.login-wrapper .password-reset-form p.success {
  background: #ff1d4d;
  border-radius: 3px;
  padding: 4px 8px;
}

.login-wrapper .login-errors p.error+.error,
.login-wrapper .login-errors p.error+.success,
.login-wrapper .login-errors p.success+.error,
.login-wrapper .login-errors p.success+.success,
.login-wrapper .signup-errors p.error+.error,
.login-wrapper .signup-errors p.error+.success,
.login-wrapper .signup-errors p.success+.error,
.login-wrapper .signup-errors p.success+.success,
.login-wrapper .password-reset-form p.error+.error,
.login-wrapper .password-reset-form p.error+.success,
.login-wrapper .password-reset-form p.success+.error,
.login-wrapper .password-reset-form p.success+.success {
  margin-top: 8px;
}

.login-wrapper .login-errors p.success,
.login-wrapper .signup-errors p.success,
.login-wrapper .password-reset-form p.success {
  background: #713895;
}

.login-wrapper .login-errors .error-arena,
.login-wrapper .signup-errors .error-arena,
.login-wrapper .password-reset-form .error-arena {
  margin-top: 16px;
}

.login-wrapper form p {
  margin: 0;
  position: relative;
}

.login-wrapper form input[type="text"],
.login-wrapper form input[type="password"] {
  position: relative;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #ced2dc;
  border-radius: 0;
  color: #131a25;
  font-size: 24px;
  padding-left: 32px;
  z-index: 1;
}

.login-wrapper form input[type="submit"] {
  width: 200px;
  display: block;
  margin: 16px auto 0;
  background: #ff1d4d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 16px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  margin: 16px 0px !important;
}

.login-wrapper form input[type="submit"]:hover {
  background: #713895;
}

.login-wrapper form .login-username {
  margin: 0 0 16px;
}

.login-wrapper form .login-username label,
.login-wrapper form .login-password label,
.login-wrapper form .new-pass label {
  position: absolute;
  margin: 0;
  font-weight: 600;
  line-height: 1;
  top: 15px;
  left: 0;
  right: 15px;
  padding-left: 32px;
  font-size: 24px;
  color: #ced2dc !important;
}

.login-wrapper form .login-username label::before,
.login-wrapper form .login-password label::before,
.login-wrapper form .new-pass label::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 25px;
  width: 25px;
  left: 0;
  top: 0px;
  font-family: "icomoon" !important;
  font-size: 24px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.login-wrapper form .login-username label::before {
  background: url(/wp-content/themes/premise/img/logo-icon.svg) no-repeat;
  z-index: 100;
  content: "" !important;
  display: inline-block;
  height: 25px;
  width: 25px;
  vertical-align: middle;
}

.login-wrapper form .login-password label::before,
.login-wrapper form .new-pass label::before {
  top: -6px;
  z-index: 100;
  content: "" !important;
  background: url(../img/lock.svg) no-repeat center;
  display: inline-block;
  height: 28px;
  width: 25px;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .login-wrapper {
    padding: 40px;
  }
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.8) !important;
  opacity: 1 !important;
  z-index: 500000 !important;
}

.modal.gen-login-form {
  background-color: transparent !important;
}

/* Public Login Form */
.public-login {
  display: flex;
  justify-content: center;
  align-self: center;
  height: 100vh;
  background-image: url("../img/public-login.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
}

.public-login__wrapper {
  width: 580px;
  height: auto;
  min-height: 600px;
  background-color: #fff;
  border-radius: 5px;
  padding: 30px 100px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 5.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
}

@media (max-width: 575.98px) {
  .public-login__wrapper {
    width: 100%;
    padding: 30px;
  }
}

.public-login__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.public-login__header svg {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

.public-login__header svg path {
  fill: #ff1d4d !important;
}

.public-login__header span {
  font-size: 32px;
  color: #131a25;
  font-weight: 800;
}

.public-login__body {
  margin: 40px auto;
  width: 100%;
  text-align: center;
}

.public-login .flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.public-login .forgot {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
  margin: 0px;
}

.public-login .forgot:hover {
  color: #ff1d4e;
}

.public-login .forget-submit {
  margin-bottom: 8px;
}

.public-login .forgot-form,
.public-login .login-errors,
.public-login .signup-errors,
.public-login .password-reset-form {
  display: none;
}

.public-login .forgot-form h3,
.public-login .login-errors h3,
.public-login .signup-errors h3,
.public-login .password-reset-form h3 {
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: #131a25;
}

.public-login .forgot-form p,
.public-login .login-errors p,
.public-login .signup-errors p,
.public-login .password-reset-form p {
  font-weight: 600;
  color: #131a25;
}

.public-login .login-errors,
.public-login .signup-errors,
.public-login .password-reset-form {
  display: block;
}

.public-login .login-errors p.error,
.public-login .login-errors p.success,
.public-login .signup-errors p.error,
.public-login .signup-errors p.success,
.public-login .password-reset-form p.error,
.public-login .password-reset-form p.success {
  color: #fff;
  background: #ff1d4d;
  border-radius: 3px;
  padding: 4px 8px;
}

.public-login .login-errors p.error+.error,
.public-login .login-errors p.error+.success,
.public-login .login-errors p.success+.error,
.public-login .login-errors p.success+.success,
.public-login .signup-errors p.error+.error,
.public-login .signup-errors p.error+.success,
.public-login .signup-errors p.success+.error,
.public-login .signup-errors p.success+.success,
.public-login .password-reset-form p.error+.error,
.public-login .password-reset-form p.error+.success,
.public-login .password-reset-form p.success+.error,
.public-login .password-reset-form p.success+.success {
  margin-top: 8px;
}

.public-login .login-errors p.success,
.public-login .signup-errors p.success,
.public-login .password-reset-form p.success {
  background: #713895;
}

.public-login .login-errors .error-arena,
.public-login .signup-errors .error-arena,
.public-login .password-reset-form .error-arena {
  margin-top: 16px;
}

.public-login form {
  width: 100%;
}

.public-login form p {
  position: relative;
  margin: 0;
}

.public-login form input[type="text"],
.public-login form input[type="password"] {
  width: 100%;
  height: 50px;
  padding: 5px 20px 5px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  border: none;
  border-bottom: 1px solid #ced2dc;
  border-radius: 0px;
}

.public-login form input[type="text"]::-moz-placeholder,
.public-login form input[type="password"]::-moz-placeholder {
  color: #949baf;
  font-size: 24px;
}

.public-login form input[type="text"]::placeholder,
.public-login form input[type="password"]::placeholder {
  color: #949baf;
  font-size: 24px;
}

.public-login form input[type="submit"] {
  width: 100%;
  display: block;
  margin: 16px auto 0;
  background: #ff1d4d;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.public-login form input[type="submit"]:hover {
  background: #713895;
}

.public-login form .login-username,
.public-login form .login-password {
  margin-bottom: 13px;
}

.public-login form .login-username img,
.public-login form .login-password img {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 12px;
  left: 0px;
}

.public-login form .login-username label,
.public-login form .login-password label,
.public-login form .new-pass label {
  color: #fff;
  position: absolute;
  margin: 0;
  font-weight: 600;
  line-height: 1;
  top: 15px;
  left: 0;
  right: 15px;
  padding-left: 32px;
  font-size: 24px;
}

.public-login form .login-username label::before,
.public-login form .login-password label::before,
.public-login form .new-pass label::before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 25px;
  width: 25px;
  left: 0;
  top: 0px;
  font-family: "icomoon" !important;
  font-size: 24px;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.full-height {
  height: calc(100vh - 88px);
}

@media screen and (max-width: 991px) {
  .full-height {
    height: calc(100vh - 72px);
  }
}

.hidden {
  display: none !important;
}

#login-wrapper-form.login-wrapper {
  padding: 0;
}

#login-wrapper-form.login-wrapper .login-h1 {
  font-size: 36px;
  line-height: 36px;
  color: #1a2330;
  font-weight: 900;
  margin-bottom: 11px;
  padding-bottom: 5px;
}

#login-wrapper-form.login-wrapper .signup-info {
  margin-bottom: 40px;
  color: #131a25;
}

#login-wrapper-form.login-wrapper .signup-info a {
  color: #1b75b5;
}

#login-wrapper-form.login-wrapper .login-form {
  margin-top: 40px;
  font-family: "Open Sans", helvetica, arial, sans-serif;
}

#login-wrapper-form.login-wrapper .login-form form p {
  margin: 0 !important;
  margin-bottom: 20px !important;
}

#login-wrapper-form.login-wrapper .login-form form p label {
  padding-left: 40px;
}

#login-wrapper-form.login-wrapper .login-form form p label:before {
  top: auto;
}

#login-wrapper-form.login-wrapper .login-form form p input {
  width: 100%;
  padding-left: 40px;
}

#login-wrapper-form.login-wrapper .login-form form .forgot {
  font-size: 18px;
}

#login-wrapper-form.login-wrapper .login-form form .login-password {
  margin-bottom: 10px !important;
}

#login-wrapper-form.login-wrapper .login-form form .login-submit {
  margin: 0 !important;
}

#login-wrapper-form.login-wrapper .login-form form .login-submit input {
  margin-bottom: 0 !important;
  width: 220px;
  height: 50px;
  margin-top: 20px !important;
  padding: 0;
  font-size: 16px;
}

#login-wrapper-form.login-wrapper .forgot-form {
  margin-top: 40px;
  font-family: "Open Sans", helvetica, arial, sans-serif;
}

#login-wrapper-form.login-wrapper .forgot-form h3 {
  margin-bottom: 40px;
  color: #1a2330;
}

#login-wrapper-form.login-wrapper .forgot-form p {
  line-height: 28px;
}

#login-wrapper-form.login-wrapper .forgot-form .login-username {
  margin: 30px 0 50px !important;
}

#login-wrapper-form.login-wrapper .forgot-form .login-username label {
  padding-left: 40px;
}

#login-wrapper-form.login-wrapper .forgot-form .login-username input {
  width: 100%;
  height: 61px;
  padding-left: 40px;
  font-size: 24px;
  color: #1a2330;
}

#login-wrapper-form.login-wrapper .forgot-form input[type="submit"] {
  width: 220px;
  height: 50px;
  padding: 0;
  font-size: 16px;
}

#login-wrapper-form.login-wrapper .success-reset {
  margin-top: 0;
}

#login-wrapper-form.login-wrapper .success-reset .login-h1 {
  margin-bottom: 40px;
}

#login-wrapper-form.login-wrapper .success-reset .signup-info {
  margin-bottom: 30px;
}

#login-wrapper-form.login-wrapper .success-reset .signup-info a {
  text-decoration: underline;
}

#login-wrapper-form.login-wrapper .success-reset .signup-info:last-child {
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  #login .row .col-lg-6:first-child {
    position: absolute;
    z-index: 9;
    padding: 20px;
  }

  #login .row .col-lg-6:first-child .login-wrapper {
    padding: 30px;
    text-align: center;
  }

  #login .row .col-lg-6:first-child .login-wrapper svg {
    width: 100px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form {
    margin-top: 20px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form .login-h1 {
    font-size: 30px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form .signup-info {
    font-size: 15px;
    margin-bottom: 30px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form .signup-info a {
    font-size: 15px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form form input {
    font-size: 18px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form form .forgot {
    font-size: 15px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form form .login-submit input {
    width: 100% !important;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form form label {
    font-size: 18px !important;
    text-align: left;
  }

  #login .row .col-lg-6:first-child .login-wrapper .login-form form label:before {
    height: 24px;
    background-size: contain;
  }

  #login .row .col-lg-6:first-child .login-wrapper .forgot-form {
    margin-top: 20px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .forgot-form h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .forgot-form p {
    line-height: 24px;
    font-size: 16px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .forgot-form input[type="submit"] {
    width: 100%;
  }

  #login .row .col-lg-6:first-child .login-wrapper .forgot-form .login-username label {
    font-size: 18px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .forgot-form .login-username input {
    font-size: 18px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .success-reset h1 {
    font-size: 30px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .success-reset .signup-info {
    font-size: 16px;
    margin-bottom: 25px;
  }

  #login .row .col-lg-6:first-child .login-wrapper .success-reset .signup-info span {
    font-size: 16px !important;
  }

  #login .row .col-lg-6:first-child .login-wrapper .success-reset .signup-info a {
    font-size: 16px;
  }
}

#loginform input[type="text"],
#loginform input[type="password"],
.login-username input {
  font-size: 24px;
}

#profile-listings .filter-bar {
  height: 50px;
  border-bottom: 1px solid #CED2DC;
  line-height: 50px;
}

.signup {
  background: #fff;
}

.signup .signup-form {
  max-width: 640px;
  margin: 64px auto 0;
}

.signup h3 {
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
}

.signup form .acf-form-submit {
  margin-top: 0;
}

.signup form .acf-form-submit .button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  display: block;
  float: right;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #ff1d4d;
  border-radius: 3px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0;
}

.signup form .acf-form-submit .button:hover {
  background: #713895;
}

.signup form .acf-fields {
  margin: 0;
}

.signup form .acf-fields .acf-field {
  display: flex;
  align-items: center;
  margin: 0 0 8px;
}

.signup form .acf-fields .acf-field+.acf-field.acf-field-message {
  margin-top: 20px;
}

.signup form .acf-fields .acf-field input {
  margin: 0;
}

.signup form .acf-fields .acf-field input[type="checkbox"] {
  width: 14px;
}

.signup form .acf-fields .acf-field .acf-label {
  width: 30%;
  padding-right: 16px;
  font-weight: 600;
}

.signup form .acf-fields .acf-field .acf-label .acf-required {
  color: #ff1d4d;
}

.signup form .acf-fields .acf-field .acf-input {
  width: 70%;
}

.signup form .acf-fields .acf-field.acf-field-message .acf-input {
  width: 100%;
}

.signup__navigation {
  width: 100%;
  margin-top: 20px;
}

.features .c-right img {
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out !important;
}

.wants-filter {
  max-width: 700px;
  color: #131a25;
  margin: 0 auto;
}

.wants-filter__map {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 700px;
  height: 360px;
  border: 1px solid #ced2dc;
  border-radius: 5px;
}

@media (max-width: 767.98px) {
  .wants-filter__map {
    width: 100%;
  }
}

.wants-filter__placeholder {
  width: 100%;
  height: 100%;
}

.wants-filter__heading {
  display: flex;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  padding: 80px 0 50px;
  margin: 0;
}

.wants-filter__subheading {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  padding: 60px 0;
}

@media (max-width: 767.98px) {
  .wants-filter__subheading {
    font-size: 20px;
    line-height: 1.2;
    padding: 60px 16px;
  }
}

.wants-filter__type {
  border-radius: 3px;
  max-width: 340px;
}

.wants-filter__type:first-child {
  margin-right: 20px;
}

.wants-filter__label,
.wants-filter__label--center {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 28px;
  margin-bottom: 0;
}

.wants-filter__label--center {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.wants-filter__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #ced2dc;
  padding: 40px 0;
}

.wants-filter__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  height: 50px;
  color: #fff;
  background-color: #8bc53f;
  border-radius: 3px;
  margin: 0 auto;
}

.wants-filter .connect__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ced2dc;
  margin-left: 0;
  margin-right: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 767.98px) {
  .wants-filter .connect__question {
    justify-content: center;
    padding: 30px 16px;
  }
}

.wants-filter .connect__question .pull-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wants-filter .connect__question input {
  font-weight: 800;
}

.wants-filter .connect__question .price-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 0;
}

.wants-filter .connect__question .checkbox-custom-toggle {
  margin-left: 10px;
  margin-right: 10px;
}

.wants-filter .connect__question .yesno {
  font-weight: 600;
}

.wants-filter .connect__form {
  grid-column-start: 2;
}

.wants-filter .connect__form p {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 30px;
}

.wants-filter .connect__form .no-gutters {
  width: 100%;
}

@media (max-width: 575.98px) {
  .connect__form .row>.no-gutters {
    padding: 0 16px;
  }

  .connect__form .pull-left {
    margin-bottom: 10px;
  }

  .connect__form .com-beds,
  .connect__form .com-baths,
  .connect__form .com-pool {
    flex-direction: column;
  }
}

.welcome {
  background: #eff0f8;
  padding-bottom: 200px;
}

@media (max-width: 991.98px) {
  .welcome .container {
    background: transparent !important;
  }
}

.welcome .welcome-banner {
  position: relative;
  height: 700px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.welcome .welcome-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.welcome .welcome-slider {
  margin: -550px 0 0;
}

.welcome .welcome-slider .slide {
  margin: 0;
  padding: 0;
}

.welcome .welcome-slider .slick-dots {
  transition: none !important;
}

.welcome .welcome-slider .slick-dots li {
  position: relative;
  transition: none !important;
}

.welcome .welcome-slider .slick-dots li:not(:last-child) {
  margin-right: 40px;
  transition: none !important;
}

.welcome .welcome-slider .slick-dots li:not(:last-child):after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 24px;
  height: 1px;
  background: #ced2dc;
  width: 44px;
  transition: none !important;
}

.welcome .welcome-slider .slick-dots li button:before {
  position: absolute;
  left: 5px;
  top: 3px;
  width: 14px;
  height: 14px;
  opacity: 1;
  font-size: 0;
  transition: none !important;
}

.welcome .welcome-slider .slick-dots li:not(.slick-active) button:before {
  position: absolute !important;
  left: 0px;
  top: 0px;
  width: 20px;
  height: 20px;
  border: 1px solid #ced2dc !important;
  background: transparent !important;
  transition: none !important;
}

.welcome .welcome-slider .slick-dots li.slick-active button:after {
  content: "" !important;
  position: absolute;
  top: 3px;
  width: 20px;
  height: 20px;
  display: block;
  border: 1px solid #ced2dc;
  border-radius: 50%;
}

.welcome .welcome-slider .slick-dots:after {
  display: none;
}

@media (max-width: 991.98px) {
  .welcome .welcome-slider .slick-dots {
    position: initial;
  }
}

.welcome .welcome-slider .slick-track {
  align-items: flex-start !important;
}

.welcome .welcome-slider .slick-slide {
  justify-content: end;
}

.welcome .welcome-slider .slide-1 {
  height: -moz-max-content;
  height: max-content;
}

.welcome .welcome-slider .slide-2 {
  height: -moz-max-content;
  height: max-content;
}

.welcome .welcome-slider .slider-3 {
  height: -moz-max-content;
  height: max-content;
}

.welcome .welcome-header {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.welcome .welcome-header h1 {
  font-size: 60px;
  line-height: 72px;
  font-weight: 800;
  margin: 0 0 20px;
  padding: 0;
}

.welcome .welcome-header h2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  margin: 0;
  padding: 0;
}

.welcome .welcome-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100% !important;
  text-align: left;
  background: #fff;
  border-radius: 3px;
  padding: 60px;
}

@media (max-width: 991.98px) {
  .welcome .welcome-content {
    min-height: 435px;
  }
}

.welcome .welcome-content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #131a25;
  margin: 0 0 40px;
  padding: 0;
}

@media (max-width: 767.98px) {
  .welcome .welcome-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

.welcome .welcome-content p.note {
  font-size: 10px;
  line-height: 14px;
  color: #949baf;
  margin: 10px 0;
  padding: 0;
}

.welcome .welcome-content .welcome-list {
  counter-reset: listItemCounter;
}

.welcome .welcome-content .welcome-list li {
  min-height: 40px;
  font-weight: 600 !important;
  font-size: 18px;
  line-height: 28px;
  color: #131a25;
  list-style: none;
  position: relative;
  padding-left: 60px;
}

@media (max-width: 767.98px) {
  .welcome .welcome-content .welcome-list li {
    font-size: 16px;
    line-height: 24px;
  }
}

.welcome .welcome-content .welcome-list li:not(:last-child) {
  margin-bottom: 20px;
}

.welcome .welcome-content .welcome-list li:before {
  counter-increment: listItemCounter;
  content: counter(listItemCounter);
  background: #ff1d4e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  color: #fff;
  font-size: 22px;
  /* Same font size as before */
  font-weight: 600;
  /* Same font weight as before */
}

.welcome .welcome-content .welcome-form {
  width: 700px;
  margin: 0 auto 60px;
}

@media (max-width: 767.98px) {
  .welcome .welcome-content .welcome-form {
    width: 100%;
    margin: 0 auto 40px;
  }
}

.welcome .welcome-content .welcome-form form .acf-fields {
  margin: 0 !important;
}

@media (max-width: 767.98px) {
  .welcome .welcome-content .welcome-form form .acf-fields .acf-label label {
    font-size: 16px !important;
  }
}

.welcome .welcome-content .welcome-form form .acf-input input {
  background: transparent;
}

.welcome .welcome-content .welcome-form form .acf-form-submit {
  margin: 0;
}

.welcome .welcome-content .welcome-form form .acf-field-5cd9bdcee0630 {
  margin-bottom: 0 !important;
}

.welcome .welcome-content .membership-col {
  padding-left: 0 !important;
  margin: auto !important;
}

.welcome .founder {
  display: flex;
  align-items: center;
  margin: 0 0 44px;
}

.welcome .founder .founder-image {
  width: 100px;
  border: 0;
}

.welcome .founder .founder-image img {
  border: 1px solid #eff0f8;
  border-radius: 50%;
}

.welcome .founder .founder-information {
  width: calc(100% - 100px);
  padding-left: 16px;
}

.welcome .founder .founder-information h3 {
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0;
}

.welcome .founder .founder-information h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  font-style: italic;
  margin: 0;
}

.welcome .welcome-paging {
  position: relative;
  margin: 20px 0 0;
}

.welcome .welcome-paging a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  float: right;
  font-size: 18px;
  font-weight: 600;
  background: #ff1d4e;
  color: #fff;
  border-radius: 3px;
}

.welcome .welcome-paging a.button.next {
  display: flex;
  float: right;
}

.welcome .welcome-paging a.button.prev {
  display: flex;
  float: left;
}

.welcome .welcome-paging a.button:hover {
  background: #713895;
}

.welcome .welcome-paging a.button.advance-to-3 {
  display: none;
}

.welcome .welcome-paging .slide-three-back i {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ced2dd;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 3px;
}

/*
.welcome {
    background: $saos-lightest-gray;
    padding-bottom: 200px;

    .welcome-banner {
        height: 700px;
        width: 100%;
        background-image: url('../img/welcome-bg.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .welcome-slider {
        margin-top: -200px;
        text-align: center;

        .slide {
            padding: 0 $spacing-lx;
            text-align: left;
        }
    }
    .welcome-header {
        color: $white;
        text-align: center;
        text-transform: uppercase;
        margin: 0 0 $spacing;

        h1 {
            font-size: 46px;
            line-height: 1;
            font-weight: $heavy;
            margin: 0 0 $spacing-sm;
        }
        h2 {
            font-weight: $heavy;
            font-size: 17px;
            margin: 0;
        }
    }
    .welcome-content {
        background: $white;
        border-radius: $border-radius-small;
        padding: $spacing-lx;
        position: relative;

        p {
            font-weight: $medium;
            font-size: 17px;
            line-height: 1.71em;

            &.note {
                font-size: 14px;
            }
        }
    }
    .founder {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 0 $spacing-xl;

        .founder-image {
            width: 100px;

            img {
                border: 1px solid $saos-lightest-gray;
                border-radius: 50%;
            }
        }
        .founder-information {
            width: calc(100% - 100px);
            padding-left: $spacing-sm;

            h3 {
                text-transform: uppercase;
                font-weight: $heavy;
                margin: 0 0 $spacing-xs;
            }
            h4 {
                font-size: 17px;
                font-weight: $medium;
                margin: 0;
            }
        }
    }

    .welcome-paging {
        position: relative;
        padding: 0 $spacing-lx;
        margin-top: -65px;

        a.button {
            position: absolute;
            display: block;
            background: $saos-pink;
            color: $white;
            border-radius: $border-radius-small;
            font-weight: $medium;
            font-size: 15px;
            color: $saos-lightest-gray;
            padding: $spacing-sm;
            width: 180px;
            text-align: center;
    
            &.next {
                right: $spacing-lx;
            }
            &.prev {
                left: $spacing-lx;
            }
            &:hover {
                background: $purple;
            }
            &.advance-to-3 {
                display: none;
            }
        }
    }
}
*/
.home-hero {
  margin: 100px 0 140px;
}

.home-hero h2,
.home-hero h3 {
  font-weight: 800;
  color: #131a25;
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1.27;
}

.home-hero h3 {
  font-size: 34px;
}

.home-hero p {
  color: #4F536C;
  font-size: 22px;
  line-height: 1.47;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

.home-hero .buyers {
  margin-top: 100px;
  text-align: center;
}

.home-hero .buyers p {
  max-width: 90%;
  margin: 0 auto;
}

.home-hero .video {
  position: relative;
  color: #fff;
  text-align: center;
}

.home-hero .video iframe {
  width: 100%;
  height: 196px;
}

.home-hero .video .start {
  position: absolute;
  top: 50%;
  margin-top: -52px;
  width: 100px;
  left: 50%;
  margin-left: -50px;
  cursor: pointer;
}

.home-hero .video .start img {
  display: block;
  width: 60px;
  margin: 0 auto 8px;
}

.home-hero .video .start span {
  display: block;
}

.property__toggle div {
  width: 130px;
  height: 30px;
  font-size: 12px;
  line-height: 34px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #4F536C;
  overflow: hidden;
}

.property__toggle div span {
  width: 100%;
}

.property__toggle div input {
  position: absolute;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  cursor: pointer;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.property__toggle div:first-child {
  border-radius: 15px 0px 0px 15px;
}

.property__toggle div:last-child {
  border-radius: 0px 15px 15px 0px;
}

.property__toggle input[type=radio]:checked+span {
  background: #FF1D4E;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.property__toggle input[type=checkbox]:checked+span {
  background: #FF1D4E;
  transition: background-color 0.3s linear, color 0.3s linear;
}

.agent-profile,
.agent-profile--properties {
  background: #1a2330;
  padding: 70px 0 0 0;
  line-height: 1.2;
  color: #fff;
}

.agent-profile--properties {
  padding: 40px;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {

  .agent-profile,
  .agent-profile--properties {
    padding: 40px 20px;
  }
}

.agent-profile__container,
.agent-profile__container--properties,
.agent-profile__container--members {
  display: grid;
  grid-template-columns: 250px 470px auto;
  grid-template-rows: 250px auto;
  grid-template-areas: "agent-profile__image-container agent-profile__information agent-profile__contact" "agent-profile__bio agent-profile__bio agent-profile__social-media";
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
  align-items: center;
  padding-bottom: 200px;
  /*
        @include media-breakpoint-down(sm) {
            grid-template-columns: 50% auto;
            grid-template-rows: 250px auto auto;
            grid-template-areas:
                "agent-profile__image-container agent-profile__information"
                "agent-profile__bio agent-profile__bio"
                "agent-profile__contact agent-profile__contact"
                "agent-profile__socia-media agent-profile__socia-media";
            align-items: center;
            column-gap: 20px;
            row-gap: 20px;
            padding-bottom: 0;
        }
        */
}

@media (max-width: 767.98px) {

  .agent-profile__container,
  .agent-profile__container--properties,
  .agent-profile__container--members {
    grid-template-columns: 40% 60%;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "agent-profile__image-container agent-profile__information" "agent-profile__bio agent-profile__bio" "agent-profile__contact agent-profile__contact" "agent-profile__social-media agent-profile__social-media";
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
    padding-bottom: 40px;
  }
}

.agent-profile__container--properties {
  grid-template-columns: 180px 440px auto;
  grid-template-areas: "agent-profile__image-container agent-profile__information agent-profile__contact" "agent-profile__bio agent-profile__bio agent-profile__social-media";
  grid-template-rows: 180px;
  row-gap: 0;
  padding-bottom: 0;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .agent-profile__container--properties {
    grid-template-columns: 180px 200px auto;
  }
}

.agent-profile__container--members {
  padding-bottom: 50px;
}

.agent-profile__image-container {
  grid-area: agent-profile__image-container;
}

.agent-profile__information {
  grid-area: agent-profile__information;
}

.agent-profile__bio {
  grid-area: agent-profile__bio;
  grid-column: 1 / span 2;
  grid-row: 2 / span 2;
}

@media (max-width: 767.98px) {
  .agent-profile__bio {
    grid-column: 1 / span 2;
    grid-row: inherit;
  }
}

.agent-profile__bio p {
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  line-height: 25px;
  color: #fff;
}

@media (max-width: 767.98px) {
  .agent-profile__social-media {
    grid-column: 1 / span 2 !important;
  }
}

.agent-profile__image {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: auto;
  border-radius: 50%;
}

.agent-profile__state-tags {
  display: inline-block;
  box-sizing: border-box;
  list-style: none;
  width: 100%;
  font-size: 24px;
  margin-bottom: 30px;
  padding: 0;
}

.agent-profile__state-tags__label {
  max-width: 180px;
  line-height: 50px;
  border: 1px solid #949baf;
  border-radius: 5px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
}

.agent-profile__link h2:hover {
  color: #25a9e0;
  transition: all 0.3s ease-in-out;
}

.agent-profile__name {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.agent-profile__agency {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.agent-profile__rating {
  margin-bottom: 20px;
}

.agent-profile__rating .stars {
  cursor: pointer;
  display: flex;
}

.agent-profile__rating .stars:hover .star polygon {
  fill: #ff1d4e;
}

.agent-profile__rating .stars .star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .stars .star:hover~.star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .stars[data-stars] .star polygon {
  fill: #ff1d4e;
}

.agent-profile__rating .stars[data-stars="1"] .star:nth-child(1)~.star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .stars[data-stars="2"] .star:nth-child(2)~.star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .stars[data-stars="3"] .star:nth-child(3)~.star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .stars[data-stars="4"] .star:nth-child(4)~.star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .stars[data-stars="5"] .star:nth-child(5)~.star polygon {
  fill: #ced2dc;
}

.agent-profile__rating .placeholder {
  width: auto;
  max-width: 156px;
  margin-bottom: 22.2px;
  fill: #ff1d4e;
}

.agent-profile__reviews {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.agent-profile__reviews a {
  color: #fff;
}

.agent-profile__reviews svg,
.agent-profile__reviews img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.agent-profile__reviews .review__count {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: #ff1d4e;
  margin-left: 8px;
}

.agent-profile__reviews ul {
  margin-bottom: 0;
}

.agent-profile__reviews li {
  list-style-type: none;
  display: inline-block;
  margin: 0;
}

.agent-profile__reviews li svg,
.agent-profile__reviews li img {
  margin: 0;
}

@media (max-width: 991.98px) {
  .agent-profile__state-tags {
    font-size: 20px;
  }

  .agent-profile__name {
    font-size: 18px;
    line-height: 1.2;
  }

  .agent-profile__agency {
    font-size: 14px;
  }

  .agent-profile__reviews {
    font-size: 16px;
  }
}

@media (max-width: 1199.98px) {

  .agent-profile .agent-profile-right-container,
  .agent-profile--properties .agent-profile-right-container {
    display: flex;
    flex-direction: column;
  }
}

.agent-profile__contact,
.agent-profile__contact--properties {
  grid-area: agent-profile__contact;
  display: flex;
  align-items: flex-end;
  font-size: 15px;
  font-weight: 600;
}

.agent-profile__contact--properties {
  align-items: flex-start;
}

@media (max-width: 767.98px) {

  .agent-profile__contact,
  .agent-profile__contact--properties {
    grid-column: 1 / span 2;
  }
}

.agent-profile__contact a,
.agent-profile__contact--properties a {
  color: #fff;
}

.agent-profile__contact__list {
  margin-bottom: 0;
}

.agent-profile__contact__icon {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0 0 15px 0;
  /*
            &::before {
                content: "";
                display: inline-block;
                width: 46px;
                height: 26px;
                vertical-align: middle;
            }
            */
}

.agent-profile__contact__icon svg,
.agent-profile__contact__icon img {
  height: 26px;
}

.agent-profile__contact__icon svg path,
.agent-profile__contact__icon img path {
  fill: white;
}

.agent-profile__contact__icon .contact__icon--center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28.91px;
  margin-right: 20px;
}

.agent-profile__contact__icon .contact__label {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

.agent-profile__contact__icon .contact__label:hover {
  color: #fff;
}

.agent-profile__contact__icon:last-of-type {
  margin-bottom: 0;
}

.agent-profile__contact .large,
.agent-profile__contact--properties .large {
  font-size: 18px;
}

.agent-profile__social-media {
  grid-area: agent-profile__social-media;
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  list-style: none;
  max-width: 270px;
  margin: 0;
}

.agent-profile__social-media .social-media__icon {
  margin: 0 10px 20px 0;
}

.agent-profile__social-media .social-media__icon svg,
.agent-profile__social-media .social-media__icon img {
  width: 50px;
  height: 50px;
}

.agent-profile__social-media .social-media__icon path,
.agent-profile__social-media .social-media__icon polygon {
  fill: #949baf;
  transition: fill ease-in-out 0.3s;
}

.agent-profile__social-media .social-media__icon:hover:not(.inactive-icon) path,
.agent-profile__social-media .social-media__icon:hover:not(.inactive-icon) polygon {
  fill: #949baf;
  transition: fill ease-in-out 0.3s;
}

.agent-profile__social-media .social-media__icon.inactive-icon a {
  pointer-events: none;
}

.agent-profile__social-media .social-media__icon.inactive-icon path,
.agent-profile__social-media .social-media__icon.inactive-icon polygon {
  fill: #343a4c;
}

@media (min-width: 992px) {
  .agent-profile__social-media .social-media__icon:nth-child(4) {
    margin-right: 0;
  }
}

.agent-tabs-members {
  border-bottom: 1px solid #4f536c;
}

.agent-tabs-members__label {
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.agent-tabs-members__count {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ff1d4e;
  padding: 0px 10px;
  margin-bottom: 20px;
}

.agent-tabs-members__tabs {
  display: flex;
  flex-direction: row;
}

.agent-tabs-members__tabs__listing,
.agent-tabs-members__tabs__wants {
  display: flex;
  align-items: center;
  margin-right: 40px;
  line-height: 40px;
  border-bottom: 5px solid transparent;
}

.agent-tabs-members__tabs__listing:hover,
.agent-tabs-members__tabs__wants:hover {
  cursor: pointer;
}

.agent-tabs-members__tabs--active {
  border-bottom: 5px solid #4f536c;
}

.agent-filters--sticky {
  float: left;
  margin-top: 21px;
}

.agent-filters__container {
  display: flex;
  height: 140px;
  padding: 30px 0;
}

.agent-filters__container--sticky {
  display: flex;
}

.agent-filters__item,
.agent-filters__item--exclusive,
.agent-filters__item--active,
.agent-filters__item--contract,
.agent-filters__item--pending,
.agent-filters__item--sold,
.agent-filters__item--expired,
.agent-filters__item--withdrawn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
  color: #fff;
  background-color: #949baf;
  border-radius: 3px;
  margin-right: 10px;
}

.agent-filters__item:hover,
.agent-filters__item--exclusive:hover,
.agent-filters__item--active:hover,
.agent-filters__item--contract:hover,
.agent-filters__item--pending:hover,
.agent-filters__item--sold:hover,
.agent-filters__item--expired:hover,
.agent-filters__item--withdrawn:hover {
  color: #fff;
}

.agent-filters__item--exclusive {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  border-radius: 3px;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
}

.agent-filters__item--exclusive .agent-filters__status,
.agent-filters__item--exclusive .agent-filters__count {
  text-shadow: -1px -1px 0 rgba(194, 163, 64, 0.4), 1px -1px 0 rgba(194, 163, 64, 0.4), -1px 1px 0 rgba(194, 163, 64, 0.4), 1px 1px 0 rgba(194, 163, 64, 0.4);
}

.agent-filters__item--active {
  background-color: #8bc53f;
}

.agent-filters__item--contract {
  background-color: #29abe2;
}

.agent-filters__item--pending {
  background-color: #f6921e;
}

.agent-filters__item--sold {
  background-color: #ff1d4e;
}

.agent-filters__item--expired {
  background-color: #949baf;
}

.agent-filters__item--withdrawn {
  background-color: #662d91;
}

.agent-filters__status {
  border-right: 1px solid #fff;
  margin-right: 10px;
  padding-right: 10px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-listing .profile {
    text-align: left;
  }
}

#new-listing .profile__avatar--large {
  width: 100px;
  height: 100px;
  margin: 30px 0 20px;
  overflow: hidden;
  border: none;
}

@media (max-width: 767.98px) {
  #new-listing .profile__avatar--large {
    margin: 20px 0;
  }
}

#new-listing .profile__avatar--image {
  width: 100px;
  height: 100px;
  margin: 64px 0 20px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  #new-listing .profile__avatar--image {
    margin: 20px 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-listing .profile__avatar--image {
    margin-top: 27px;
  }
}

#new-listing .page-header h2:before {
  font-family: "icomoon" !important;
  content: "\e901";
  font-weight: 600;
  position: relative;
  font-size: 40px;
  margin-right: 20px;
  color: #131a25;
  border-radius: 50px;
}

@media (max-width: 767.98px) {
  #new-listing .page-header h2:before {
    top: 0;
    font-size: 26px;
    margin-right: 15px;
  }
}

#new-listing #listing-agents-but {
  position: relative;
  list-style: none;
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  #new-listing #listing-agents-but {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

#new-listing #listing-agents-but .agent-btn {
  border: 1px solid #ced2dc;
  border-radius: 3px !important;
  width: 150px;
  background-color: transparent !important;
  color: #4f536c !important;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  #new-listing #listing-agents-but .agent-btn {
    width: 100%;
    font-size: 16px;
    background: #8bc53f;
    color: #fff !important;
  }
}

#new-listing #listing-agents-but .agent-btn:hover {
  color: #8cc63f !important;
  border-color: #8cc63f;
}

#new-listing #listing-agents-but .dropdown-style {
  display: block;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(79, 83, 108, 0.5);
  /* position: absolute; */
  bottom: -130px;
  position: relative;
  width: 250px;
  left: 0;
  bottom: -15px;
  z-index: 2;
  padding: 10px 0;
}

#new-listing #listing-agents-but .dropdown-style .triangle-up {
  left: 22%;
}

#new-listing #listing-agents-but .dropdown-style .triangle-up {
  position: absolute;
  width: 0;
  height: 0;
  top: 2px;
  right: 20px;
  box-sizing: border-box;
  border: 6px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.1);
}

#new-listing #listing-agents-but #agents-li li {
  font-size: 16px;
  color: #4f536c;
  font-weight: normal !important;
  cursor: pointer;
  pointer-events: all;
  padding: 10px 16px;
}

#new-listing input.error-input,
#new-listing input.hasDatepicker.error-input {
  border: 1px solid #f33b28;
}

@media (max-width: 767.98px) {
  #new-listing .plstype ul {
    display: flex;
  }
}

#new-listing .plstype ul li {
  width: auto !important;
  margin-right: 0;
}

#new-listing .plstype ul li:first-child label {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

#new-listing .plstype ul li:last-child label {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-left: none !important;
}

#new-listing .plstype ul label {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 50px;
  font-size: 16px;
  line-height: 34px;
  color: #131a25;
  text-align: center;
  position: relative;
  background: #fff;
  border: 1px solid #ced2dc !important;
  overflow: hidden;
  font-weight: 700;
  cursor: pointer;
}

#new-listing .plstype ul label input {
  position: absolute;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  cursor: pointer;
  transition: background-color 0.3s linear, color 0.3s linear;
}

#new-listing .plstype ul label.selected {
  color: #fff;
  background: #4f536c;
  transition: background-color 0.3s linear, color 0.3s linear;
}

#new-listing .plstype ul .acf-radio-list {
  display: flex;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-listing .col-3.left-col.pro-users {
    width: 100%;
    max-width: 83% !important;
    padding: 10px !important;
  }

  #new-listing .col-3.left-col.pro-users .col-content,
  #new-listing .col-3.left-col.pro-users .page-content .middle-col .col-content--large,
  .page-content .middle-col #new-listing .col-3.left-col.pro-users .col-content--large {
    width: 100% !important;
    position: initial;
  }

  #new-listing .col-3.left-col.pro-users .col-content .agent-data-list .agnt-name,
  #new-listing .col-3.left-col.pro-users .page-content .middle-col .col-content--large .agent-data-list .agnt-name,
  .page-content .middle-col #new-listing .col-3.left-col.pro-users .col-content--large .agent-data-list .agnt-name,
  #new-listing .col-3.left-col.pro-users .col-content .agent-data-list .agnt-agency,
  #new-listing .col-3.left-col.pro-users .page-content .middle-col .col-content--large .agent-data-list .agnt-agency,
  .page-content .middle-col #new-listing .col-3.left-col.pro-users .col-content--large .agent-data-list .agnt-agency {
    left: 10%;
  }

  #new-listing .col-3.right-col {
    max-width: 100%;
  }

  #new-listing .col-6.middle-col.middle-col-edit .somecollapse {
    margin-top: 30px;
  }
}

@media (max-width: 1199.98px) {
  #new-listing form .acf-fields .acf-field .acf-label label {
    font-size: 14px;
  }
}

#listing_status .acf-listing-status {
  margin-bottom: 0;
}

#listing_status label {
  margin-bottom: 20px;
}

.congrats {
  display: flex !important;
  background-image: url("../img/confetti-light.gif");
  height: 65px;
  background-size: cover;
  border: solid 1px #ced2dc !important;
  border-radius: 6px;
  padding: 10px 0 0 50px !important;
}

.congrats input {
  background: #fff;
  border-radius: 3px !important;
  width: 100% !important;
}

.congrats .acf-label {
  margin-right: 70px !important;
}

.congrats .acf-input-append {
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  top: 8px;
}

.sold-price-contracts {
  display: none !important;
}

@media (max-width: 767.98px) {
  #new-listing .page-header .page-header__left-col {
    padding: 0;
  }

  #new-listing .page-header .page-header__left-col h2 {
    padding: 20px 0 !important;
  }

  #new-listing .page-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  #new-listing .page-content form .acf-fields .acf-field .acf-label {
    position: initial;
  }

  #new-listing .page-content form .acf-fields .acf-field.collapse::after {
    margin-top: 2px;
  }

  #new-listing #create_listing #zip-state {
    width: 217px !important;
  }

  #new-listing #create_listing #zip-state .acf-input {
    width: 37% !important;
  }

  #new-listing #create_listing #zipState-input {
    margin-left: 0 !important;
  }

  .fileuploader-input {
    width: 100% !important;
  }

  .fileuploader-item.file-type-image {
    width: 100% !important;
    margin-right: 0 !important;
  }
}

.split-address {
  width: calc(80% - 20px) !important;
  clear: none !important;
  float: left !important;
}

.split-address .acf-label {
  width: 45% !important;
}

.split-hide-address {
  display: flex !important;
  align-items: center !important;
}

.split-hide-address .acf-label {
  width: 189px !important;
}

.split-hide-address .acf-input {
  width: auto !important;
}

.split-hide-address .label-text::before {
  position: unset !important;
  width: 20px !important;
}

.split-hide-address .label-text {
  padding-left: 20px !important;
}

.split-hide-address .acf-checkbox-list li {
  margin-bottom: unset !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-want .profile {
    text-align: left;
  }
}

#new-want .profile__avatar--large {
  width: 100px;
  height: 100px;
  margin: 30px 0 20px;
  overflow: hidden;
  border: none;
}

@media (max-width: 575.98px) {
  #new-want .profile__avatar--large {
    margin: 20px 0;
  }
}

#new-want .profile__avatar--image {
  width: 100px;
  height: 100px;
  margin: 64px 0 20px;
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-want .profile__avatar--image {
    margin-top: 27px;
  }
}

#new-want #listing-agents .acf-label {
  display: none;
}

#new-want #wants-status form .acf-fields .acf-field {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-want .col-3.left-col {
    width: 100%;
    max-width: 93% !important;
    flex: 0 0 100%;
    padding: 10px;
  }

  #new-want .col-3.left-col .col-content,
  #new-want .col-3.left-col .page-content .middle-col .col-content--large,
  .page-content .middle-col #new-want .col-3.left-col .col-content--large {
    width: 100% !important;
    max-width: 100%;
  }

  #new-want .col-3.left-col .col-content .agent-data-list .agnt-name,
  #new-want .col-3.left-col .page-content .middle-col .col-content--large .agent-data-list .agnt-name,
  .page-content .middle-col #new-want .col-3.left-col .col-content--large .agent-data-list .agnt-name,
  #new-want .col-3.left-col .col-content .agent-data-list .agnt-agency,
  #new-want .col-3.left-col .page-content .middle-col .col-content--large .agent-data-list .agnt-agency,
  .page-content .middle-col #new-want .col-3.left-col .col-content--large .agent-data-list .agnt-agency {
    left: 10%;
  }

  #new-want .col-3.right-col {
    max-width: 100%;
    flex: 0 0 100%;
  }

  #new-want .col-6.middle-col.center-div.middle-col-edit {
    border: 0;
  }
}

@media (max-width: 1199.98px) {

  #new-want .select2.select2-container.select2-container--default,
  #new-want .select2-container.select2-container--default.select2--public,
  #new-want .select2-container.select2-container--default.select2--public2 {
    width: 100%;
  }
}

.agent-data-list {
  position: relative;
}

@media (max-width: 575.98px) {

  .agent-data-list.single-select .select2,
  .agent-data-list.single-select .select2--public,
  .agent-data-list.single-select .select2--public2 {
    height: 35px;
  }

  .agent-data-list.single-select .select2 .select2-selection__rendered,
  .agent-data-list.single-select .select2--public .select2-selection__rendered,
  .agent-data-list.single-select .select2--public2 .select2-selection__rendered {
    font-size: 16px !important;
    line-height: normal;
  }

  .agent-data-list .agent-information {
    border-bottom: 1px solid #ced2dc;
    margin-bottom: 20px;
  }

  .agent-data-list .agent-inform:not(:last-child) {
    border-bottom: 1px solid #ced2dc;
    margin-bottom: 20px;
  }
}

.agent-data-list .agnt-name-list {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

@media (max-width: 575.98px) {
  .agent-data-list .agnt-name-list {
    font-size: 14px !important;
  }
}

.agent-data-list .agent-imge {
  border-radius: 50%;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 575.98px) {
  .agent-data-list .agent-imge {
    width: 105px !important;
    height: 105px !important;
    margin-top: 15px;
    margin-bottom: 40px;
    max-width: 105px;
    margin-left: 20px;
  }
}

.agent-data-list .agnt-name {
  font-size: 16px;
  font-weight: 800;
}

@media (max-width: 575.98px) {
  .agent-data-list .agnt-name {
    top: 33px;
    margin: 0;
  }
}

.agent-data-list .agnt-agency {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  margin: 10px 0px 15px;
}

@media (max-width: 575.98px) {
  .agent-data-list .agnt-agency {
    font-size: 14px !important;
    margin: 0;
    top: 50px;
  }
}

.agent-data-list .agent-information p,
.agent-data-list .agent-inform p {
  margin-bottom: 6px;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .agent-data-list .agent-information p,
  .agent-data-list .agent-inform p {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {

  .agent-data-list .agent-information p,
  .agent-data-list .agent-inform p {
    font-size: 14px;
  }
}

.agent-data-list .agent-information,
.agent-data-list .agent-infor,
.agent-data-list .agent-inform {
  padding-bottom: 20px;
}

.agent-data-list .agent-info,
.agent-data-list .agent-info a {
  font-size: 12px;
  font-weight: 600;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .agent-data-list .agent-info,
  .agent-data-list .agent-info a {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {

  .agent-data-list .agent-info,
  .agent-data-list .agent-info a {
    font-size: 14px;
  }
}

.agent-data-list .agnt-agency,
.agent-data-list .agent-info,
.agent-data-list .agent-info a {
  color: #131a25;
}

.agent-data-list .hide-agent-info {
  cursor: pointer;
}

.agent-data-list .edit-option {
  text-decoration: underline !important;
  color: #131a25 !important;
}

@media (max-width: 575.98px) {
  .agent-data-list .edit-option {
    padding: 6px;
    text-decoration: none !important;
  }
}

.agent-data-list .edit-option {
  font-size: 16px;
  font-weight: 600;
}

.remove-agent-info {
  cursor: pointer;
}

#listing-agents-but {
  position: relative;
  list-style: none;
  margin-top: 40px;
}

@media (max-width: 575.98px) {
  #listing-agents-but {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

#listing-agents-but .agent-btn {
  border: 1px solid #ced2dc;
  border-radius: 3px !important;
  width: 150px;
  color: #4f536c !important;
  font-weight: 600;
}

@media (max-width: 575.98px) {
  #listing-agents-but .agent-btn {
    width: 100%;
    font-size: 16px;
    background: #8bc53f;
    color: #fff !important;
  }
}

#listing-agents-but .agent-btn:hover {
  color: #8cc63f !important;
  border-color: #8cc63f;
}

#listing-agents-but .dropdown-style {
  display: block;
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(79, 83, 108, 0.5);
  /* position: absolute; */
  bottom: -130px;
  position: relative;
  width: 250px;
  left: 0;
  bottom: -15px;
  z-index: 2;
  padding: 10px 0;
}

#listing-agents-but .dropdown-style .triangle-up {
  left: 22%;
}

#listing-agents-but .dropdown-style .triangle-up {
  position: absolute;
  width: 0;
  height: 0;
  top: 2px;
  right: 20px;
  box-sizing: border-box;
  border: 6px solid black;
  border-color: transparent transparent #ffffff #ffffff;
  transform-origin: 0 0;
  transform: rotate(135deg);
  box-shadow: -2px 2px 3px 0 rgba(0, 0, 0, 0.1);
}

#listing-agents-but #agents-li li {
  font-size: 16px;
  color: #4f536c;
  font-weight: normal !important;
  cursor: pointer;
  pointer-events: all;
  padding: 10px 16px;
}

#listing-content {
  position: relative;
}

@media (max-width: 575.98px) {
  #listing-content {
    margin: 0 !important;
    max-width: 100% !important;
  }
}

#new-want .page-header h2:before {
  font-family: "icomoon" !important;
  content: "\e901";
  font-weight: 600;
  position: relative;
  font-size: 40px;
  margin-right: 20px;
  color: #131a25;
  border-radius: 50px;
}

@media (max-width: 575.98px) {
  #new-want .page-header h2:before {
    top: 0;
    font-size: 26px;
    margin-right: 15px;
  }
}

.listing-agents-info--wants .agent-imge {
  margin-top: 0px;
}

.profile__avatar--large {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  background-color: #ced2dc;
  border-radius: 100%;
  margin: 60px 0 20px;
}

#new-want .p-10 {
  padding: 5px 0 10px;
}

#new-want .fixed-width {
  min-height: unset !important;
  margin: 0 0 16px;
}

#wants_status label {
  margin-bottom: 20px;
}

p.message-text {
  text-align: left;
  font-size: 11px;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-weight: 500;
  color: #4f536c;
}

@media (max-width: 575.98px) {
  .select2-results__options {
    top: 0 !important;
  }

  .select2-results__options .select2-results__option {
    height: 35px;
  }
}

@media (max-width: 575.98px) {
  #new-want .page-header .page-header__left-col {
    padding: 0;
  }

  #new-want .page-header .page-header__left-col h2 {
    padding: 20px 0 !important;
  }

  #new-want .page-header .page-header__right-col {
    padding: 0;
  }

  #new-want .page-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  #new-want .page-content form .acf-fields .acf-field .acf-label {
    position: initial;
  }

  #new-want .page-content form .acf-fields .acf-field.collapse::after {
    margin-top: 2px;
  }
}

#profile-rating .page-header h2:before,
#edit-profile .page-header h2:before {
  display: none;
}

.my-subscription {
  margin-bottom: 0px;
}

.main-content {
  padding: 0px 0px 20px;
}

.scoreBoard {
  margin: 0 auto;
  width: 100%;
  margin-bottom: 30px !important;
}

.scoreBoard h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #131a25;
  margin-bottom: 30px;
}

.scoreBoard .labelAgent {
  font-size: 16px;
  font-weight: 600;
  margin: 0px !important;
  color: #131a25;
}

.scoreBoard .a-details {
  border: 1px solid #CED2DC;
  border-radius: 10px;
  text-transform: capitalize;
  padding: 10px 30px 30px;
}

.scoreBoard .a-details .a-details__header {
  font-size: 16px;
  font-weight: 800;
  color: #131a25;
  text-transform: uppercase;
}

.scoreBoard .a-details p,
.scoreBoard .a-details .pinkColor,
.scoreBoard .a-details .b-600 {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin: 0px;
}

.scoreBoard .a-details .pinkColor {
  font-style: normal;
  color: #ff1d4e;
  font-weight: 800;
}

@media (max-width: 575.98px) {
  .scoreBoard form {
    margin-top: 5px !important;
  }
}

.add-pay-method .row {
  display: flex;
  align-items: center;
}

.add-pay-method input {
  width: 100%;
}

#formCard .basic-info-code[data-title]:hover::after {
  left: 63% !important;
}

#formCard .basic-info-code[data-title]:hover::after {
  bottom: -10px;
  left: 70%;
}

#formCard .basic-info-code[data-title]:hover::before {
  left: -10% !important;
}

#formCard .basic-info-code[data-title]:hover::before {
  bottom: -100px;
  left: -36%;
  width: 200px;
}

#formCard button {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  background: none #8cc63f;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: none;
  margin-bottom: 30px;
}

.s-offer .spl_offer {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #131a25;
  margin-bottom: 10px;
}

.s-offer .offer-p p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: #131a25;
}

.member-right__button button {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  background: none #8cc63f;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: none;
  margin-bottom: 30px;
}

.member-right__change a {
  font-size: 11px;
  font-weight: 600;
  color: #131a25;
  text-decoration: underline;
}

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

/*Notification Block */
.notification-style h2 {
  font-size: 20px;
  color: #131a25;
  font-weight: 800;
  padding: 0px 0 35px 0;
  flex: 0 0 100%;
}

.notification-style p {
  padding-bottom: 25px;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: block;
}

.notification-style .form-group {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-style label {
  padding: 0;
  font-size: 16px;
  font-weight: 600;
}

.notification-style input:not([type=range]) {
  padding: 10px 5px;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  text-align: center;
  font-size: 11px !important;
  width: 110px;
  height: 30px;
  transition: all 0.3s;
}

.notification-style input:not([type=range]):hover {
  color: #8cc63f;
  border-color: #8cc63f;
}

.notification-style ul {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}

@media (max-width: 575.98px) {
  .notification-style ul {
    margin-top: 15px;
  }

  .notification-style ul.notification_type li,
  .notification-style ul.userEmails li {
    padding: 10px;
  }
}

.notification-style ul li {
  border-bottom: 1px solid #ced2dc;
  list-style: none;
  padding: 12px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.notification-style ul li span {
  padding: 0 10px;
}

@media (max-width: 575.98px) {
  .notification-style ul li span {
    padding: 0;
  }

  .notification-style ul li span.deleteCurrentPhoneItem {
    padding-right: 10px;
  }
}

.notification-style span {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
}

.notification-style img {
  width: 20px;
}

.notification-style input[type="checkbox"]+.label-text:before {
  content: "\f096";
  font-family: "FontAwesome";
  line-height: 1;
  font-weight: 100;
  -webkit-font-smoothing: antialiased;
  width: 1em;
  font-size: 20px;
  display: inline-block;
  margin-right: 5px;
}

.notification-style input[type="checkbox"]:checked+.label-text:before {
  content: "\f14a";
  color: #131a25;
  font-weight: 900;
}

.notification-style .switch-checkbox-style input {
  opacity: 0;
  width: 0;
  height: 0;
}

.notification-style input:checked+.slider,
.notification-style input:checked+.slider--large {
  background-color: #8cc540 !important;
}

.notification-style input:focus+.slider,
.notification-style input:focus+.slider--large {
  box-shadow: 0 0 1px #2196F3;
}

.notification-style inputchecked+.slider:before,
.notification-style inputchecked+.slider--large:before {
  transform: translateX(38px);
  transition: all 0.4s ease-in-out;
}

.notification-style .slider,
.notification-style .slider--large {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ced2dc;
  transition: .4s;
  border: none;
  opacity: 1 !important;
  transition: all 0.4s ease-in-out;
}

.notification-style .slider:before,
.notification-style .slider--large:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
}

.notification-style .slider.round,
.notification-style .round.slider--large {
  border-radius: 34px;
  border: 0;
}

.notification-style .slider.round:before,
.notification-style .round.slider--large:before {
  border-radius: 50%;
}

.notification-style .add_new_email_item.form-group,
.notification-style .add_new_number_item.form-group {
  width: 100%;
  margin-top: 20px !important;
  justify-content: flex-start;
}

@media (max-width: 575.98px) {

  .notification-style .add_new_email_item.form-group .col-form-label,
  .notification-style .add_new_number_item.form-group .col-form-label {
    width: 100%;
    margin-bottom: 10px;
  }

  .notification-style .add_new_email_item.form-group .field--add,
  .notification-style .add_new_number_item.form-group .field--add {
    margin-left: 0 !important;
    width: 55%;
  }
}

.notification-style .add_new_email_item.form-group .btn--add,
.notification-style .add_new_number_item.form-group .btn--add {
  margin-left: auto;
}

.notification-style .add_new_email_item.form-group .btn--add button,
.notification-style .add_new_number_item.form-group .btn--add button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 3px;
  padding: 0;
  transition: all 0.3s;
}

.notification-style .add_new_email_item.form-group .btn--add button:hover,
.notification-style .add_new_number_item.form-group .btn--add button:hover {
  background-color: #25a9e0;
  color: #fff;
}

.notification-style .add_new_email_item.form-group .field--add,
.notification-style .add_new_number_item.form-group .field--add {
  margin-left: 30px;
  margin-right: 30px;
  flex: 1 1 auto;
}

.notification-style .add_new_email_item.form-group .field--add input,
.notification-style .add_new_number_item.form-group .field--add input {
  text-align: left;
  width: 100%;
  height: 40px;
  padding: 10px;
  font-size: 16px !important;
  border-radius: 5px;
}

.notification-style .notification_type li {
  border: 1px solid #ced2dc;
  border-radius: 10px;
  list-style: none;
  padding: 30px 40px;
  margin-bottom: 20px;
}

.switch-checkbox-style {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 26px;
  margin-left: auto;
}

.checkbox-notification-style ul {
  border: 1px solid #ced2dc;
  border-radius: 5px;
  padding: 30px;
}

.checkbox-notification-style ul li {
  display: flex;
  align-items: center;
  padding: 0px 0;
  margin: 5px 0;
}

.checkbox-notification-style ul li p {
  padding: 2px 0px;
  width: 50%;
}

.checkbox-notification-style label {
  cursor: pointer;
  float: left;
  margin: 0;
}

/* I don't see this being used anywhere besides the /pricing-plans/ page but we need to review

.page-id-1511 .slider { // TODO: revise and remove page IDs
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4F536C;
    -webkit-transition: .4s;
    transition: .4s;
    border: none;

    &:before{
    	position: absolute;
	    content: "";
	    height: 34px;
	    width: 34px;
	    left: 3px;
	    bottom: 3px;
	    background-color: #ffffff !important;
	    -webkit-transition: .4s;
	    transition: .4s;
	}
	
	.form-check{
		border-left:1px solid #ced2dc;
		padding:0 10px;
		width:50%;
	}
}
*/
.slider.round,
.round.slider--large {
  border-radius: 36px;
  transition: all 0.4s ease-in-out;
}

input:checked+.slider:before,
input:checked+.slider--large:before,
.page-id-1511 input:checked+.slider:before,
.page-id-1511 input:checked+.slider--large:before {
  transform: translateX(39px);
  transition: all 0.4s ease-in-out;
}

.scoreBoard--top-pad {
  padding-top: 40px;
  width: unset;
  margin: 0px;
}

@media (max-width: 767.98px) {
  .payment-method .p-5 {
    padding: 5px !important;
  }
}

.wrapIt {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.wrapIt p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.wrapIt .show-hide-txt {
  position: relative;
  display: flex;
}

.wrapIt .updown-collapse.active:after {
  transform: rotate(180deg);
  transition: all 0.5s ease 0s;
}

.wrapIt .updown-collapse:before {
  content: "Show / Hide";
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  padding-right: 16px;
}

.wrapIt .updown-collapse:after {
  content: url(../img/caret.svg);
  position: absolute;
  top: 0;
  right: 0;
  line-height: 0;
  margin-top: 8px;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}

.profileImage-heading {
  font-size: 20px;
  font-weight: 800;
  color: #131a25;
  text-transform: uppercase;
  margin: 0px;
}

.profile-avtar {
  border: 2px dashed #ced2dc;
  border-radius: 10px;
  position: relative;
  margin-bottom: 50px;
  padding: 40px;
}

.profile-avtar .profile-name-style {
  text-align: center;
  padding: 0 0 30px;
}

.profile-avtar .profile-name-style h2 {
  font-size: 16px;
  color: #131a25;
  font-weight: 600;
  margin: 0px;
}

.file-upload-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.file-upload-image {
  clip-path: circle(100px at center);
  padding: 0 !important;
  max-height: 300px;
  margin: auto;
  margin-top: -50px;
  padding: 20px;
}

.enlarge-image {
  max-height: 300px;
  margin-top: -50px;
}

.file-upload {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 20px 20px 0;
  width: 100% !important;
  bottom: 2em;
  opacity: 0;
  right: 0;
  top: 0;
  position: relative;
}

.image-upload-wrap {
  border-radius: 50%;
  width: 100%;
  height: 200px !important;
}

.file-upload-input {
  position: absolute;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  outline: none;
  opacity: 0;
  cursor: pointer;
}

.image-style {
  text-align: center;
  padding: 30px 0 0;
}

.image-style span {
  font-size: 16px;
  color: #131a25;
  font-weight: 600;
}

.image-style i {
  color: #25a9e0;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
}

.image-style .browseimg {
  cursor: pointer;
}

.image-style p {
  color: #4f536c;
  font-size: 11px;
  font-weight: 600;
  font-style: normal;
}

#update_user .acf-field-5cd9bdcee0630,
#update_user .acf-field-5cd9be0de0632 {
  display: flex;
  width: 65% !important;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 767.98px) {
  #update_user .acf-field-5cd9bdcee0630 .acf-label {
    width: 85% !important;
  }
}

#update_user .acf-field-5cd9be0de0632 {
  margin-bottom: 15px;
}

#update_user .acf-field-5cd9bdcee0630 .acf-input,
#update_user .acf-field-5cd9be0de0632 .acf-input {
  left: 0% !important;
  width: 54% !important;
}

#update_user .acf-field-5d15f32985bf8 {
  margin-bottom: 0px !important;
  padding-left: 10px;
  width: 35% !important;
}

#update_user .acf-field-5d15f32985bf8 .acf-input {
  width: 100% !important;
}

#update_user .acf-field-5d144cf80c955 {
  margin-bottom: 0px !important;
  padding-left: 10px;
  width: 35% !important;
  display: flex;
  justify-content: space-between;
}

#update_user .acf-field-5d144cf80c955 .acf-input {
  width: 52%;
}

#update_user .acf-field-5e936f404a995,
#update_user .acf-field-5e936fd54a996 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#update_user .acf-field-5e936f404a995 .acf-label,
#update_user .acf-field-5e936fd54a996 .acf-label {
  margin: 0px;
}

#update_user .acf-field-5e936f404a995 .acf-input,
#update_user .acf-field-5e936fd54a996 .acf-input {
  width: 70%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .edit-profile {
    margin: auto !important;
  }
}

.edit-profile button {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 5px;
  padding: 10px;
  background: none #8cc63f;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: none;
  margin-bottom: 20px;
}

.edit-profile button:hover {
  color: #fff;
  background-color: #96dd26;
}

.edit-profile .edit-up {
  padding-top: 28px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .edit-profile .edit-up {
    display: block !important;
  }
}

.edit-profile .last-up {
  font-size: 16px;
  font-weight: 800;
  color: #131a25;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .edit-profile .last-up::after {
    content: ": ";
  }
}

.edit-profile p {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 767.98px) {

  #edit-profile .page-header .page-header__left-col,
  #profile-listings .page-header .page-header__left-col {
    padding-left: 0;
  }

  #edit-profile .page-header .page-header__left-col h2,
  #profile-listings .page-header .page-header__left-col h2 {
    padding: 0 !important;
  }

  #edit-profile .page-content,
  #profile-listings .page-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  #edit-profile .page-content form .acf-fields .acf-field.fixed-width .acf-label,
  #profile-listings .page-content form .acf-fields .acf-field.fixed-width .acf-label {
    position: initial;
  }

  #edit-profile .page-content form .acf-fields .acf-field.collapse::after,
  #profile-listings .page-content form .acf-fields .acf-field.collapse::after {
    margin-top: 2px;
  }

  #edit-profile .page-content .left-col,
  #profile-listings .page-content .left-col {
    z-index: 9;
  }

  #edit-profile .page-content .col-md-6.notifications,
  #profile-listings .page-content .col-md-6.notifications {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  #edit-profile .page-content .sidebar ul .dropdown a:hover:before,
  #edit-profile .page-content .sidebar ul .dropdown li:hover:before,
  #profile-listings .page-content .sidebar ul .dropdown a:hover:before,
  #profile-listings .page-content .sidebar ul .dropdown li:hover:before {
    display: none;
  }

  #edit-profile .page-content ul.dropdown li a:hover,
  #profile-listings .page-content ul.dropdown li a:hover {
    padding-left: 0;
  }

  #edit-profile .page-content .left-col.userp,
  #profile-listings .page-content .left-col.userp {
    padding: 0;
  }

  #edit-profile .page-content .file-upload-image,
  #profile-listings .page-content .file-upload-image {
    margin-top: 0;
    max-height: 236px;
  }

  #edit-profile .page-content .acf-field-5e4697fa47506[data-name="bio"] .acf-label,
  #profile-listings .page-content .acf-field-5e4697fa47506[data-name="bio"] .acf-label {
    display: none;
  }

  #edit-profile .page-content .acf-field-5e4697fa47506[data-name="bio"] .acf-input,
  #profile-listings .page-content .acf-field-5e4697fa47506[data-name="bio"] .acf-input {
    width: 100% !important;
  }

  #edit-profile .scoreBoard.pos-inline,
  #profile-listings .scoreBoard.pos-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #edit-profile .scoreBoard.pos-inline .dropdown-menu,
  #edit-profile .scoreBoard.pos-inline .dropdown-public .dropdown-menu--large,
  .dropdown-public #edit-profile .scoreBoard.pos-inline .dropdown-menu--large,
  #profile-listings .scoreBoard.pos-inline .dropdown-menu,
  #profile-listings .scoreBoard.pos-inline .dropdown-public .dropdown-menu--large,
  .dropdown-public #profile-listings .scoreBoard.pos-inline .dropdown-menu--large {
    margin: 0 0 0 -148px;
    width: 360px;
  }

  #edit-profile .scoreBoard.pos-inline h3,
  #profile-listings .scoreBoard.pos-inline h3 {
    padding: 0;
    line-height: normal;
  }

  #edit-profile .scoreBoard .userNumber .switch-checkbox-style,
  #edit-profile .scoreBoard .notification_type .switch-checkbox-style,
  #profile-listings .scoreBoard .userNumber .switch-checkbox-style,
  #profile-listings .scoreBoard .notification_type .switch-checkbox-style {
    margin-bottom: 0;
  }

  #edit-profile .userEmails .switch-checkbox-style,
  #profile-listings .userEmails .switch-checkbox-style {
    margin-bottom: 0;
  }

  #edit-profile .row.my-wants__controls .col-md-2.preview-div .preview,
  #profile-listings .row.my-wants__controls .col-md-2.preview-div .preview {
    height: auto;
    padding: 0;
    width: auto;
  }

  #edit-profile .row.my-wants__controls .col-md-4,
  #profile-listings .row.my-wants__controls .col-md-4 {
    margin-top: 20px;
  }

  #edit-profile .row.my-wants__controls .col-md-4 .dropdown-button,
  #profile-listings .row.my-wants__controls .col-md-4 .dropdown-button {
    padding-right: 15px;
  }

  #edit-profile .row.my-wants__controls .col-md-4 .dropdown-button i,
  #profile-listings .row.my-wants__controls .col-md-4 .dropdown-button i {
    margin-left: auto;
  }

  #profile-rating .page-header .page-header__left-col {
    padding: 0;
  }

  #profile-rating .page-header .page-header__left-col h2 {
    padding: 20px 0 !important;
  }

  #profile-rating .page-header .page-header__right-col {
    padding: 0;
  }

  #profile-rating .page-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  #profile-rating .page-content .col-3.left-col.userp {
    display: none;
  }

  #profile-rating .page-content .profile-rating__collapse .profile-rating__right {
    max-width: 100%;
    margin-top: 10px;
  }

  #profile-rating .page-content .profile-rating__collapse .profile-rating__right button {
    margin-left: 10px;
  }

  #profile-rating .page-content .profile-rating__collapse .profile-rating__right ul {
    margin-right: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #profile-fields .somecollapse {
    margin-bottom: 16px;
  }

  #profile-listings .col-6.middle-col.property-second .scoreBoard,
  #profile-listings .col-md-9.account-details.middle-col.property-second .scoreBoard {
    display: block;
  }

  #profile-listings .col-6.middle-col.property-second .scoreBoard .a-details,
  #profile-listings .col-md-9.account-details.middle-col.property-second .scoreBoard .a-details {
    margin: 20px 0;
  }

  #profile-listings .col-6.middle-col.property-second.payment-method {
    flex: 0 0 100%;
    border: 0;
  }

  #profile-listings .col-6.middle-col.property-second.payment-method form .row:not(:last-child) {
    margin-bottom: 20px !important;
  }

  #profile-listings .col-3.right-col.property-third {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #profile-fields .somecollapse {
    margin-bottom: 16px;
  }
}

.page-content .middle-col.saved-search .col-content,
.page-content .middle-col.saved-search .col-content--large {
  max-width: 720px;
}

.saved-search__header {
  display: block;
  width: 100%;
}

.saved-search__header h3 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 800;
  color: #131A25;
}

.saved-search__header p {
  font-size: 11px;
  font-weight: 600;
  color: #4F536C;
  margin-top: 20px;
  margin-bottom: 0px;
}

#public .checkk-box span:after {
  border-left: 3px solid #eff0f8;
  border-bottom: 3px solid #eff0f8;
}

.saved-search__wrap {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0px;
}

@media (max-width: 767.98px) {
  .saved-search__wrap {
    flex-direction: column;
  }

  .saved-search__wrap .saved-search__check {
    width: 100%;
  }
}

.saved-search__wrap .checkbox-group .checkk-box {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-right: 20px;
  cursor: pointer;
}

.saved-search__wrap .checkbox-group .checkk-box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
}

.saved-search__wrap .checkbox-group .checkk-box input:checked~span:before {
  background-color: #131A25;
  border: 1px solid #131A25;
}

.saved-search__wrap .checkbox-group .checkk-box input:checked~span:after {
  display: block;
}

.saved-search__wrap .checkbox-group .checkk-box span {
  position: relative;
  font-weight: 600;
  color: #131A25;
  font-size: 16px;
  margin-left: 0px;
  padding-left: 30px;
  /*

				&:before{
					content: '';
					display: block;
					position: absolute;
					top: 3px;
					left: 0px;
					height: 20px;
					width: 20px;
					background-color: transparent;
					border-radius: 3px;
					border: 1px solid #131A25;
				}

				&:after{
					position: absolute;
					content: '';
					display: none;
					left: 7px;
					top: 6px;
					width: 7px;
					height: 11px;
					border: solid #fff;
					border-width: 0 2px 2px 0;
					transform: rotate(45deg);
				}

				*/
}

.saved-search__wrap .checkbox-group .checkk-box span:before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 0px;
  height: 20px;
  width: 20px;
  background-color: transparent;
  border-radius: 3px;
  border: 1px solid #131A25;
}

.saved-search__wrap .checkbox-group .checkk-box span:after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 6.5px;
  left: 4px;
  transform: rotate(-45deg);
  transition: all 100ms ease 100ms;
}

.saved-search__wrap .saved-search__show {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 767.98px) {
  .saved-search__wrap .saved-search__show {
    width: 100%;
    justify-content: space-between !important;
    margin-top: 10px;
  }
}

.saved-search__wrap .saved-search__show .select2-hidden-accessible {
  display: none;
}

.saved-search__wrap .saved-search__show .listing-count {
  display: flex;
  align-items: center;
}

.saved-search__wrap .saved-search__show .listing-count label {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 600;
  margin-right: 8px;
}

@media (max-width: 767.98px) {
  .saved-search__wrap .saved-search__show .listing-count label {
    font-size: 14px !important;
  }
}

.saved-search__wrap .saved-search__show .listing-count .select2,
.saved-search__wrap .saved-search__show .listing-count .select2--public,
.saved-search__wrap .saved-search__show .listing-count .select2--public2 {
  width: 70px !important;
  min-width: 70px;
  max-width: 70px !important;
  height: 30px;
  border: 1px solid #CED2DC;
  border-radius: 4px;
  text-align: center;
  padding: 0 10px;
}

.saved-search__wrap .saved-search__show .listing-count .select2-selection {
  height: auto;
}

.saved-search__wrap .saved-search__show .listing-count .selection {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.saved-search__wrap .saved-search__show .listing-count .selection:after {
  position: relative;
  margin-left: auto !important;
}

.saved-search__wrap .saved-search__show .total_searches {
  font-size: 16px;
  font-weight: 600;
  color: #131A25;
  margin-right: 10px;
}

#select2-getFilterLimit-results {
  width: 70px;
}

.saved-search-list .listing-list {
  position: relative;
  border: 1px solid #ced2dc;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 0;
  /*
		.pinkRound {
			width: 60px;
			height: 60px;
			font-size: 22px;
		}
		*/
}

.saved-search-list .listing-list .row {
  padding: 30px !important;
}

@media (max-width: 767.98px) {
  .saved-search-list .listing-list .row:last-child {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .saved-search-list .listing-list .row .saved-search-list__controls .list-view-o {
    width: 38% !important;
    padding: 0;
  }

  .saved-search-list .listing-list .row .saved-search-list__controls .list-view-o .view-listing {
    background: transparent;
    font-size: 11px !important;
  }

  .saved-search-list .listing-list .row .saved-search-list__controls .edit-o,
  .saved-search-list .listing-list .row .saved-search-list__controls .arch-o {
    width: 32%;
    padding: 0;
  }

  .saved-search-list .listing-list .row .saved-search-list__controls .edit-o a,
  .saved-search-list .listing-list .row .saved-search-list__controls .edit-o div,
  .saved-search-list .listing-list .row .saved-search-list__controls .arch-o a,
  .saved-search-list .listing-list .row .saved-search-list__controls .arch-o div {
    font-size: 11px !important;
    width: 100%;
  }
}

.saved-search-list .listing-list .row .edit-o a {
  color: #4f536c;
  font-weight: 600;
  font-size: 18px;
}

.saved-search-list .listing-list .row:first-child {
  padding-bottom: 0px !important;
  padding: 20px 20px 0 !important;
}

@media (max-width: 767.98px) {
  .saved-search-list .listing-list .row:first-child {
    flex-wrap: nowrap;
  }

  .saved-search-list .listing-list .row:first-child .col-md-8,
  .saved-search-list .listing-list .row:first-child .col-md-2 {
    padding: 0;
  }

  .saved-search-list .listing-list .row:first-child .saved-s-right {
    width: 25%;
  }

  .saved-search-list .listing-list .row:first-child .saved-s-left {
    width: 20%;
  }

  .saved-search-list .listing-list .row:first-child .saved-s-left object {
    width: 30px;
    height: 50px;
  }

  .saved-search-list .listing-list .row:first-child .saved-s-cen {
    width: 60%;
  }

  .saved-search-list .listing-list .row:first-child .saved-search-title a {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  .saved-search-list .listing-list .row:nth-child(2) {
    padding: 10px 20px 20px !important;
  }

  .saved-search-list .listing-list .row:nth-child(2) .col-md-12 {
    padding: 0;
  }

  .saved-search-list .listing-list .row:nth-child(2) .col-md-12 .saved-search-list__param {
    display: flex;
    flex-wrap: wrap;
  }

  .saved-search-list .listing-list .row:nth-child(2) .col-md-12 .saved-search-list__param .bold {
    margin: 0;
    margin-right: 10px;
  }

  .saved-search-list .listing-list .row:nth-child(2) .col-md-12 .saved-search-list__param .ml-20 {
    margin: 0;
  }
}

.saved-search-list .listing-list object {
  height: 50px;
  width: 50px;
}

.saved-search-list .listing-list .c-text {
  font-size: 24px;
  margin-bottom: 0px;
}

.saved-search-list__param span {
  font-size: 16px;
  font-weight: 600;
}

.saved-search-list__param .bold {
  font-weight: 800;
}

.saved-search-list__footer {
  border-top: 1px solid #ced2dc;
}

.saved-search-list__controls {
  display: flex;
  align-items: center;
}

.saved-search-list .list-view-o,
.saved-search-list .edit-o,
.saved-search-list .arch-o {
  background: transparent !important;
  border-radius: 3px;
  height: 50px;
  color: #4f536c;
  line-height: 50px;
  text-align: center;
  padding: 0px 20px;
  font-size: 18px;
  font-weight: 600;
  flex: 0 0 auto;
  transition: all 0.3s;
}

.saved-search-list .list-view-o .view-listing,
.saved-search-list .edit-o .view-listing,
.saved-search-list .arch-o .view-listing {
  font-size: 18px;
  font-weight: 600;
  color: #4f536c;
}

.saved-search-list .list-view-o:hover,
.saved-search-list .edit-o:hover,
.saved-search-list .arch-o:hover {
  background: #eff0f8 !important;
  cursor: pointer;
}

.saved-search-list .list-view-o:hover a,
.saved-search-list .edit-o:hover a,
.saved-search-list .arch-o:hover a {
  color: #4f536c;
}

.saved-search-list .list-view-o .previe,
.saved-search-list .edit-o .previe,
.saved-search-list .arch-o .previe {
  margin-right: 10px;
}

.saved-search-list .list-view-o #archivePost,
.saved-search-list .edit-o #archivePost,
.saved-search-list .arch-o #archivePost {
  width: unset !important;
  cursor: pointer;
}

.pagination-list .pagination {
  padding: 10px;
  display: block;
}

.pagination-list .pagination li {
  padding: 5px 10px;
  border: 1px solid #e0e0e0;
  list-style: none;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}

.pagination-list .pagination li.disabled {
  pointer-events: none;
  background: #f5f5f5;
}

.filter__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.property-select label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 40px;
  color: #fff;
  background: #fff;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .property-select label {
    border: 0;
    width: auto;
    background: transparent !important;
  }
}

.property-select label .label-text {
  font-size: 16px;
  font-weight: 600;
  width: 28px;
}

@media (max-width: 575.98px) {
  .property-select label .label-text {
    color: #131a25;
  }
}

.property-select label .label-text--dark {
  color: #131a25;
}

.property-select label .checkbox {
  content: "";
  display: inline-block;
  position: relative;
  background-color: #fff;
  width: 20px;
  height: 20px;
  transform-origin: center;
  border: 1px solid #131a25;
  border-radius: 3px;
  vertical-align: -6px;
  margin-right: 10px;
  transition: background-color 100ms, transform 250ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}

.property-select input[type="checkbox"] {
  display: none;
  outline: 0;
}

.property-select .checked span {
  background-color: #131a25;
}

.property-select .checked span:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 4px;
  left: 2.5px;
  transform: rotate(-45deg);
  transition: all 100ms ease 100ms;
}

.property-select .checked:hover span {
  background-color: #131a25;
}

.property-select .checked:hover span:before {
  transition: width 100ms ease 100ms;
}

@media (max-width: 767.98px) {

  .page-id-3537.page-template-single-my-listing-result .details .checkbox-group,
  .page-id-2270.page-template-single-search-result .details .checkbox-group {
    position: absolute;
    top: 158px !important;
    left: 0;
    z-index: 10;
  }

  .page-id-3537.page-template-single-my-listing-result .details .checkbox-group .label-text,
  .page-id-2270.page-template-single-search-result .details .checkbox-group .label-text {
    font-size: 12px !important;
  }

  .page-id-3537.page-template-single-my-listing-result .listing-result-detail .details,
  .page-id-2270.page-template-single-search-result .listing-result-detail .details {
    text-align: center;
    justify-content: center;
  }

  .page-id-3537.page-template-single-my-listing-result .listing-result-detail .details .found-listings,
  .page-id-2270.page-template-single-search-result .listing-result-detail .details .found-listings {
    margin: 0;
  }
}

@media (max-width: 575.98px) {
  .single-listing.content.agent-listing.want__details__area .profile-wrapper.agent-footer .profile.full.inline .agent-profile__rating li {
    width: 20%;
  }

  .container-fluid.listing-watchlist .want-number,
  .listing-watchlist.container-sm .want-number,
  .listing-watchlist.container-md .want-number,
  .listing-watchlist.container-lg .want-number,
  .listing-watchlist.container-xl .want-number {
    padding: 0;
    width: 20%;
  }

  .container-fluid.listing-watchlist .want-number .label-text,
  .listing-watchlist.container-sm .want-number .label-text,
  .listing-watchlist.container-md .want-number .label-text,
  .listing-watchlist.container-lg .want-number .label-text,
  .listing-watchlist.container-xl .want-number .label-text {
    padding: 0;
    border: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
  }

  .container-fluid.listing-watchlist .want-number .label-text:before,
  .listing-watchlist.container-sm .want-number .label-text:before,
  .listing-watchlist.container-md .want-number .label-text:before,
  .listing-watchlist.container-lg .want-number .label-text:before,
  .listing-watchlist.container-xl .want-number .label-text:before {
    width: auto;
  }

  .container-fluid.listing-watchlist .want-status,
  .listing-watchlist.container-sm .want-status,
  .listing-watchlist.container-md .want-status,
  .listing-watchlist.container-lg .want-status,
  .listing-watchlist.container-xl .want-status,
  .container-fluid.listing-watchlist .want-type,
  .listing-watchlist.container-sm .want-type,
  .listing-watchlist.container-md .want-type,
  .listing-watchlist.container-lg .want-type,
  .listing-watchlist.container-xl .want-type,
  .container-fluid.listing-watchlist .want-bedroom,
  .listing-watchlist.container-sm .want-bedroom,
  .listing-watchlist.container-md .want-bedroom,
  .listing-watchlist.container-lg .want-bedroom,
  .listing-watchlist.container-xl .want-bedroom,
  .container-fluid.listing-watchlist .want-bath,
  .listing-watchlist.container-sm .want-bath,
  .listing-watchlist.container-md .want-bath,
  .listing-watchlist.container-lg .want-bath,
  .listing-watchlist.container-xl .want-bath,
  .container-fluid.listing-watchlist .want-sqft,
  .listing-watchlist.container-sm .want-sqft,
  .listing-watchlist.container-md .want-sqft,
  .listing-watchlist.container-lg .want-sqft,
  .listing-watchlist.container-xl .want-sqft,
  .container-fluid.listing-watchlist .want-days,
  .listing-watchlist.container-sm .want-days,
  .listing-watchlist.container-md .want-days,
  .listing-watchlist.container-lg .want-days,
  .listing-watchlist.container-xl .want-days,
  .container-fluid.listing-watchlist .want-pool,
  .listing-watchlist.container-sm .want-pool,
  .listing-watchlist.container-md .want-pool,
  .listing-watchlist.container-lg .want-pool,
  .listing-watchlist.container-xl .want-pool,
  .container-fluid.listing-watchlist .want-row-col:last-child,
  .listing-watchlist.container-sm .want-row-col:last-child,
  .listing-watchlist.container-md .want-row-col:last-child,
  .listing-watchlist.container-lg .want-row-col:last-child,
  .listing-watchlist.container-xl .want-row-col:last-child {
    display: none;
  }

  .container-fluid.listing-watchlist .want-price,
  .listing-watchlist.container-sm .want-price,
  .listing-watchlist.container-md .want-price,
  .listing-watchlist.container-lg .want-price,
  .listing-watchlist.container-xl .want-price {
    width: 50%;
    padding: 0;
    justify-content: flex-end;
  }

  .container-fluid.listing-watchlist .want-price a,
  .listing-watchlist.container-sm .want-price a,
  .listing-watchlist.container-md .want-price a,
  .listing-watchlist.container-lg .want-price a,
  .listing-watchlist.container-xl .want-price a {
    font-size: 15px !important;
  }

  .container-fluid.listing-watchlist .want-address a,
  .listing-watchlist.container-sm .want-address a,
  .listing-watchlist.container-md .want-address a,
  .listing-watchlist.container-lg .want-address a,
  .listing-watchlist.container-xl .want-address a {
    font-size: 15px !important;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .listing-header .col-2,
  .listing-header .col-md-2 {
    display: none;
  }

  .listing-header .col-5.filter__nav {
    margin-left: auto;
  }

  .listing-header .col-md-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .listing-header .col-md-5 .listing-count {
    justify-content: space-between;
    align-items: center;
    float: none;
    margin-top: 8px;
    padding: 0.5em 0 0.8em;
  }

  .listing-header .col-md-5 .listing-count span {
    position: initial;
    margin: 0;
  }

  .listing-header .col-md-5 .details {
    justify-content: space-between;
  }

  .desktop-view-section.wants-row .want-number {
    padding: 0;
  }

  .desktop-view-section.wants-row .want-number .label-text {
    display: flex;
    justify-content: center;
  }

  .desktop-view-section.wants-row .want-status,
  .desktop-view-section.wants-row .want-type,
  .desktop-view-section.wants-row .want-bedroom,
  .desktop-view-section.wants-row .want-bath,
  .desktop-view-section.wants-row .want-sqft,
  .desktop-view-section.wants-row .want-days,
  .desktop-view-section.wants-row .want-pool,
  .desktop-view-section.wants-row .col-lg-1:last-child {
    display: none;
  }

  .desktop-view-section.wants-row .want-address {
    max-width: 60%;
    padding: 0;
    padding-left: 20px;
    flex: 0 0 60%;
  }

  .desktop-view-section.wants-row .want-price {
    margin-left: auto;
    padding: 0;
    max-width: 100%;
  }

  .desktop-view-section.wants-row .property-select {
    padding: 0;
    max-width: 10%;
    flex: 0 0 10%;
  }

  .property.excerpt .mobile-property {
    width: 45%;
  }

  .property.excerpt .mobile-property>div {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .property.excerpt .property-image {
    max-width: 17%;
    flex: 0 0 17%;
  }

  .property.excerpt .property-cost {
    max-width: 10%;
    flex: 0 0 10%;
  }

  .property.excerpt .property-select label {
    background: transparent;
    border: 0;
  }

  .property.excerpt .property-select label .label-text {
    display: flex;
    justify-content: center;
    color: #000;
    font-size: 14px !important;
    flex-direction: row;
    width: auto;
    padding: 8px 8px !important;
    border: 1px solid #ced2dc !important;
    border-radius: 5px;
    background: #fff !important;
    vertical-align: middle;
  }

  .property.excerpt .property-select label .label-text:before {
    content: "\f096";
    font-family: "FontAwesome";
    line-height: 1;
    font-weight: 100 !important;
    -webkit-font-smoothing: antialiased;
    width: 1em;
    display: inline-block;
    margin-right: 0px;
    font-size: 25px;
    vertical-align: middle;
    color: #131a25;
  }

  .oneLineHeader .sort .header-label-status,
  .oneLineHeader .sort .header-label-want-type,
  .oneLineHeader .sort .header-label-bedroom,
  .oneLineHeader .sort .header-label-bath,
  .oneLineHeader .sort .header-label-sqft,
  .oneLineHeader .sort .header-label-days,
  .oneLineHeader .sort .header-label-pool {
    display: none;
  }

  .oneLineHeader .sort .header-label-price {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .oneLineHeader .sort .address-label {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .my-listing-result-main header .first-listing-row {
    align-items: flex-end;
    padding-bottom: 20px;
  }

  .my-listing-result-main header .first-listing-row .listing-result-btn {
    order: 1;
  }

  .my-listing-result-main header .first-listing-row .listing-result-heading {
    order: 2;
    margin-bottom: 70px;
  }

  .my-listing-result-main header .first-listing-row .listing-result-report {
    padding-top: 0;
    padding-bottom: 0;
  }

  .my-listing-result-main header .first-listing-row .listing-result-report .reports label {
    font-size: 18px !important;
  }

  .listing-watchlist.listing-header .reports label {
    font-size: 18px !important;
  }

  .second-listing-row .listing-result-detail .details .checkbox-group {
    position: initial;
  }

  #select2-accountType-results {
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .listing-header>.row {
    justify-content: space-between;
    margin-bottom: 20px !important;
  }

  .listing-header>.row .listing-result-heading,
  .listing-header>.row .arch-aug {
    max-width: 100%;
    flex: 0 0 100%;
    order: 1;
    margin-bottom: 20px;
  }

  .listing-header>.row .listing-result-btn,
  .listing-header>.row .arch-print {
    order: 2;
  }

  .listing-header>.row .listing-result-report,
  .listing-header>.row .arch-repot {
    order: 3;
  }

  .listing-header>.row .listing-result-select,
  .listing-header>.row .arch-cen {
    display: none;
  }

  .oneLine .wants-row .want-row-col {
    padding: 20px 10px;
  }

  .oneLine .wants-row .want-row-col.want-type {
    flex: 0 0 12%;
    max-width: 12%;
  }

  .oneLine .wants-row .want-row-col.want-price {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .oneLine article {
    padding: 20px 10px !important;
  }

  .oneLineHeader .sort .col-lg-2,
  .oneLineHeader .sort .col-lg-1 {
    padding: 0;
  }

  .oneLineHeader .sort .col-lg-2.header-label-want-type,
  .oneLineHeader .sort .col-lg-1.header-label-want-type {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .oneLineHeader .sort .col-lg-2.header-label-bath,
  .oneLineHeader .sort .col-lg-1.header-label-bath {
    flex: 0 0 10%;
    max-width: 10%;
  }

  .single-listing .post-title {
    padding: 0 18px;
  }

  .single-listing .post-content>.row .want__details__left,
  .single-listing .post-content>.row .square-col.map {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .single-listing .post-content>.row .square-col.info-listing {
    margin: 20px 0;
    padding-left: 0;
    margin-left: -5px;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section>.row,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header>.row,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header>.row {
    justify-content: space-between;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section>.row .col-sm-6,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header>.row .col-sm-6,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header>.row .col-sm-6 {
    padding: 33px 0;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section>.row .col-sm-6 img,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header>.row .col-sm-6 img,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header>.row .col-sm-6 img {
    width: 180px;
    height: 180px;
    position: initial;
    transform: none;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section>.row .col-sm-6 .information,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header>.row .col-sm-6 .information,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header>.row .col-sm-6 .information {
    margin: 0;
    padding: 0;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section>.row .col-sm-6 h2,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header>.row .col-sm-6 h2,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header>.row .col-sm-6 h2 {
    font-size: 20px !important;
  }

  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section h3,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header h3,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header h3,
  .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section p,
  .single-listing .post-content>.row.profile-wrapper.agent-footer #dashboard .card .card-section--header p,
  #dashboard .card .single-listing .post-content>.row.profile-wrapper.agent-footer .card-section--header p {
    font-size: 18px !important;
  }

  .single-listing .post-content>.row.kelcey-row .left-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .single-listing .post-content>.row.kelcey-row .square-col.info-listing {
    position: relative;
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0 5px;
    margin-left: 0;
  }

  .single-listing .listing-text.arch-listing-row-one {
    padding: 0 18px;
  }

  .single-listing .agent-footer .agent-info_image {
    width: 180px;
    height: 180px;
    max-width: 180px;
    flex: 0 0 180px;
  }

  .single-listing .agent-footer .agent-info_name span {
    font-size: 20px !important;
  }

  .single-listing .card.full {
    border: 0;
  }

  .single-listing .post-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .single-listing .post-actions a .inline-b {
    display: flex;
    align-items: center;
  }

  .single-listing .post-actions a .inline-b .alert {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #select2-accountType-results {
    width: 186px;
  }
}

@media (max-width: 767.98px) {
  .agent-listing.agent-listing--dashboard .header-pagination {
    margin: 0;
  }

  .agent-listing.agent-listing--dashboard .header-pagination .header-pagination__interest {
    width: 100%;
  }

  .agent-listing.agent-listing--dashboard .header-pagination .header-pagination__interest .header-pagination__location {
    padding: 0;
  }

  .agent-listing.agent-listing--dashboard .header-pagination .header-pagination__select {
    padding: 0 !important;
  }
}

@media (max-width: 575.98px) {
  .listing-result-btn .button-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .listing-result-btn .button-group .header-pagination__location {
    width: 100%;
    justify-content: center;
  }

  .listing-result-btn .button-group .header-pagination__location .watchlist__toggle {
    margin: 0;
  }

  .listing-result-btn .button-group .listing-header__button--small {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .listing-result-btn .button-group .listing-header__button--small:last-child {
    margin-right: 0;
  }
}

/*
.property-select {
     
    label {
        display: inline-block;
        color: #fff;
        cursor: pointer;
        position: relative;
        
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70px;
        height: 40px;
        background: $white;
        border: 1px solid $mischka;
        border-radius: 3px;

        .label-text {
            font-size: 16px;
            font-weight: $semibold;
            width: 20px;

            &--dark {
                color: $mirage;
            }
        }
      
        .checkbox {
            display: inline-block;
            position: relative;
            background-color: #fff;
            width: 20px;
            height: 20px;
            transform-origin: center;
            border: 1px solid #131A25;
            border-radius: 3px;
            vertical-align: -6px;
            transition: background-color 150ms 200ms, transform 350ms cubic-bezier(.78,-1.22,.17,1.89);
      
            /*
            
            &:before {
                content: "";
                width: 0px;
                height: 2px;
                border-radius: 2px;
                background: #131A25;
                position: absolute;
                transform: rotate(45deg);
                top: 10px;
                left: 4px; 
                transition: width 50ms ease 50ms;
                transform-origin: 0% 0%;
            }
            
            &:after {
                content: "";
                width: 0;
                height: 2px;
                border-radius: 2px;
                background: #131A25;
                position: absolute;
                transform: rotate(305deg);
                top: 14px;
                left: 7px;
                transition: width 50ms ease;
                transform-origin: 0% 0%;
            }
        }
      
        &:hover {
            span {
                &:before {
                    width: 6px;
                    transition: width 100ms ease;
                }
                
                &:after {
                    width: 12px;
                    transition: width 150ms ease 100ms;
                }
            }
        }
    }

    input[type="checkbox"] {
        display: none;
        outline:0;
    }
    
    .checked {
        span {
            background-color: #131A25;
            transform: scale(1); // enlarge the box
            
            &:after {
                width: 12px;
                background: #fff;
                transition: width 150ms ease 100ms; // enlarge the tick
            }
            
            &:before {
                width: 6px;
                background: #fff;
                transition: width 150ms ease 100ms; // enlarge the tick
            }
        }
            
        &:hover { // copy the states for onMouseOver to avoid flickering
            span {
                background-color: #131A25;
                transform: scale(1); // enlarge the box
                    
                &:after {
                    width: 13px;
                    background: #fff;
                    transition: width 150ms ease 100ms; // enlarge the tick
                }
                    
                &:before {
                    width: 6px;
                    background: #fff;
                    transition: width 150ms ease 100ms; // enlarge the tick
                }
            }
        }
    }
}

*/
#new-search .page-header h2:before {
  display: none;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #new-search .col-3.left-col.property-first {
    max-width: 100% !important;
  }

  #new-search .col-3.left-col.property-first .col-content,
  #new-search .col-3.left-col.property-first .page-content .middle-col .col-content--large,
  .page-content .middle-col #new-search .col-3.left-col.property-first .col-content--large {
    width: 83% !important;
    margin: auto;
  }

  #new-search .col-3.right-col.property-third {
    max-width: 100%;
  }

  #new-search .page-header .page-header__wrap {
    position: relative;
  }

  #new-search .page-header .page-header__wrap .dropdown-list {
    left: 8%;
    top: 65px;
  }

  #new-search .page-header.page-header--new-want .dropdown-list {
    left: -2%;
  }
}

/*New styles*/
@media (max-width: 575.98px) {
  #new-search .page-header .page-header__left-col {
    padding: 0;
  }

  #new-search .page-header .page-header__left-col h2 {
    padding: 20px 0 !important;
  }

  #new-search .page-header .page-header__right-col {
    padding: 0;
  }

  #new-search .page-header .dropdown-list {
    left: 98px;
    top: 79px;
  }

  #new-search .page-header.page-header--new-want .dropdown-list {
    left: 53px;
    top: 38px;
  }

  #new-search .page-content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  #new-search .page-content form .acf-fields .acf-field .acf-label {
    position: initial;
  }

  #new-search .page-content form .acf-fields .acf-field.collapse::after {
    margin-top: 2px;
  }

  .my-listing-result-main .listing-result-count .listing-count {
    padding-top: 50px;
  }

  .my-listing-result-main .listing-result-detail .checkk-box {
    display: flex;
    line-height: 22px;
  }

  .clients_details.single-listing.content .card.full,
  .clients_details.single-listing.content .card.dark {
    border: 0;
  }

  .clients_details.single-listing.content .profile-wrapper.agent-footer .profile.full.inline img {
    position: initial;
    transform: none;
  }

  /*

	.sub-nav {
		.sub-nav__container {
			height: auto;
			padding: 20px;

			>.row {
				justify-content: center;
			}

			.sub-nav__location {
				max-width: 100%;
				flex: 0 0 100%;
				justify-content: center;

				.sub-nav__area {
					display: flex;
				}
			}

			.sub-nav__search--center {
				margin: 20px 0;

				form {
					padding: 0;

					label {
						display: none;
					}
				}
			}

			.sub-nav__save {
				max-width: 100%;
			}
		}
	}

	*/
  .listing .listing__container {
    padding: 20px;
    grid-template-columns: repeat(auto-fill, minmax(auto, 100%));
  }

  .listing .listing__container .listing .listing__thumbnail {
    width: auto;
  }

  .cta__container {
    padding: 20px;
    height: auto !important;
  }

  .cta__container .cta__btn {
    font-size: 17px;
    line-height: normal;
  }
}

.profile-rating {
  padding-bottom: 100px !important;
}

.profile-rating__header {
  display: flex;
  justify-content: space-between;
}

.profile-rating__header h3 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: #131a25;
  margin-bottom: 20px;
}

.profile-rating__header p {
  font-size: 16px;
  font-weight: 600;
  margin: 0px;
}

.profile-rating__header p:hover {
  cursor: pointer;
}

.profile-rating__header .updown-collapse {
  font-size: 9px;
  position: relative;
  bottom: 2px;
  cursor: pointer;
  font-weight: 100;
  color: #808080c9;
}

.profile-rating__block {
  margin-bottom: 30px;
}

.profile-rating__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.profile-rating__main input {
  font-size: 16px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 3px;
  border: #CED2DC 1px solid;
  height: 40px;
  color: #131a25;
}

.profile-rating__main span {
  font-size: 16px;
  font-weight: 600;
}

.profile-rating__main--link input {
  flex: 0 0 65%;
  max-width: 65%;
  color: #CED2DC;
}

.profile-rating__main--link button.green {
  transition: all 0.3s;
  width: 150px;
  padding: 0px 20px;
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
}

.profile-rating__main--link button.green:hover {
  background-color: #25a9e0;
  color: #fff;
}

.profile-rating__right {
  flex: 0 0 70%;
  max-width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-rating__right svg {
  width: 21px;
  height: 21px;
  fill: #ff1d4e;
}

.profile-rating__right li,
.profile-rating__right ul {
  list-style-type: none;
  margin: 0px;
  display: flex;
}

.profile-rating__rating input {
  width: 200px;
}

.profile-rating__field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.profile-rating__field input {
  flex: 0 0 70%;
  max-width: 70%;
}

.profile-rating__bl {
  position: relative;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #profile-rating .col-3.left-col.userp {
    display: none;
  }

  #profile-rating .col-6.middle-col {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.listing-details,
.single-listing-view__modal .listing-details--vcenter {
  display: flex;
  flex-direction: column;
  max-width: 1160px;
  background: #fff;
  padding: 0 40px 40px;
}

@media (max-width: 991.98px) {

  .listing-details,
  .single-listing-view__modal .listing-details--vcenter {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
}

@media (max-width: 767.98px) {

  .listing-details,
  .single-listing-view__modal .listing-details--vcenter {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
  }
}

.listing-details__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  overflow-y: scroll;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  z-index: 10;
}

.listing-details__modal {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  max-width: 1160px;
  height: 100%;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
  z-index: 100000;
}

@media (max-width: 767.98px) {
  .listing-details__modal {
    width: 100vw;
    max-width: 100vw;
  }
}

.listing-details__modal--is-visible {
  visibility: visible;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
}

.listing-details__modal--is-visible .listing-details__overlay {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s linear 0.3s, opacity 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
  .listing-details__modal .listing-photo_address {
    display: block;
    font-size: 16px;
    padding: 20px;
  }
}

.listing-details__header {
  display: grid;
  grid-template-columns: 45% 10% 45%;
  align-items: center;
  height: 100px;
  line-height: 1.2;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .listing-details__header {
    grid-template-columns: 45% 10% 38%;
  }
}

@media (max-width: 767.98px) {
  .listing-details__header {
    padding: 20px;
  }
}

.listing-details__close {
  display: flex;
  position: absolute;
  align-items: center;
  width: 40px;
  height: 40px;
  top: 0;
  right: -50px;
  color: #fff;
  border-width: 1px;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 8px 24px;
  z-index: 100;
}

@media (max-width: 767.98px) {
  .listing-details__close {
    top: -50px !important;
    right: 10px;
  }
}

.listing-details__close.public {
  top: 0px;
  right: -90px;
}

.listing-details__close.review {
  top: 0px;
  right: -50px;
  border: none;
}

.listing-details__close.new-save-search__close {
  top: 0;
}

.listing-details__close.public-save-search__close {
  top: -40px;
  right: -90px;
}

.listing-details__close.public-create-account__close,
.listing-details__close.public-login-modal__close {
  top: 0px;
  right: 0px;
}

.listing-details__close:before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-color: #eff0f8;
  border-radius: 50%;
  opacity: 0;
  animation: icon-background-fade 0.3s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-details__close:after {
  content: '\d7';
  position: absolute;
  color: #fff;
  width: 40px;
  height: 42px;
  font-size: 30px;
  line-height: 40px;
  opacity: 0.7;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991.98px) {
  .listing-details__close:after {
    color: #4f536c;
  }
}

.listing-details__close:active {
  outline: none;
  background-color: #ced2dc;
}

.listing-details__close:focus {
  outline: 0;
}

.listing-details__close:focus:after {
  opacity: 1;
}

.listing-details__close:hover:before {
  opacity: 1;
  overflow: visible;
  transform: scale(1);
  animation: icon-background-expand 0.15s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.listing-details__close:hover:after {
  color: #4f536c;
  opacity: 1;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 991.98px) {
  .listing-details__close {
    top: 10px;
    right: 10px;
  }
}

.listing-details__meta,
.listing-details__meta--left,
.listing-details__meta--right {
  display: grid;
  grid-template-areas: 'grid__status grid__address';
  align-items: center;
}

.listing-details__meta--left {
  grid-template-columns: 60px auto;
}

.listing-details__meta--right {
  grid-template-columns: auto 70px;
  justify-content: flex-end;
}

.listing-details__status {
  grid-area: grid__status;
  margin-right: 20px;
}

.listing-details__status svg,
.listing-details__status img {
  width: 40px;
  height: 40px;
}

.listing-details__address {
  grid-area: grid__address;
}

.listing-details__street {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.listing-details__location {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .listing-details__location {
    font-size: 14px;
  }
}

.listing-details__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.listing-details__logo svg,
.listing-details__logo img {
  height: 80px;
}

.listing-details__logo svg path,
.listing-details__logo img path {
  fill: #ff1d4e;
}

.listing-details__info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.listing-details__price {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #131a25;
}

.listing-details__contact {
  cursor: pointer;
}

.listing-details__category {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.listing-details__wishlist {
  margin-left: 20px;
}

.listing-details__photo {
  position: relative;
  border-radius: 3px;
}

@media (max-width: 767.98px) {
  .listing-details__photo {
    padding: 20px 0 0;
  }
}

.listing-details__photo img {
  width: 100vw;
}

.listing-details__counter {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  color: #fff;
  pointer-events: none;
  z-index: 999999;
}

@media (max-width: 767.98px) {
  .listing-details__counter {
    left: 15px;
    bottom: 5px;
  }
}

.listing-details__container {
  display: flex;
  justify-content: center;
}

.listing-details__subheader {
  display: grid;
  grid-template-columns: 690px 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 30px;
  column-gap: 30px;
  align-items: center;
  padding: 40px 0 0;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .listing-details__subheader {
    grid-template-columns: 70% 26%;
    padding-left: 16px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .listing-details__subheader {
    grid-template-columns: 60% 35%;
    padding-left: 16px;
  }
}

@media (max-width: 767.98px) {
  .listing-details__subheader {
    padding: 20px 20px 0;
  }
}

.listing-details__heading {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 22px;
}

.listing-details__content {
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
  color: #131a25;
  overflow: hidden;
  margin: 10px 0 0;
}

.listing-details__see-more {
  font-size: 16px;
  font-weight: 600;
  font-stretch: condensed;
  text-align: center;
  letter-spacing: -0.6px;
  margin-top: 10px;
}

.listing-details__see-more-btn {
  pointer-events: all;
  cursor: pointer;
}

.listing-details__carat {
  font-size: 11px;
}

.listing-details .btn,
.single-listing-view__modal .listing-details--vcenter .btn {
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 3px;
  transition: background 0.3s ease-in-out;
}

@media (max-width: 767.98px) {

  .listing-details .btn,
  .single-listing-view__modal .listing-details--vcenter .btn {
    font-size: 12px;
    padding: 12px;
  }
}

.listing-details .btn--light,
.single-listing-view__modal .listing-details--vcenter .btn--light {
  background: #fff;
  border: 1px solid #ced2dc;
}

.listing-details .btn--light:hover,
.single-listing-view__modal .listing-details--vcenter .btn--light:hover {
  background: #4f536c;
  border-color: #4f536c;
  color: #fff;
}

.listing-details .btn--primary,
.single-listing-view__modal .listing-details--vcenter .btn--primary {
  background: #ff1d4e;
  width: 160px;
  border: 1px solid #ff1d4e;
  color: #fff;
}

.listing-details .btn--primary:hover,
.single-listing-view__modal .listing-details--vcenter .btn--primary:hover {
  background: #fff;
  border-color: #ff1d4e;
  color: #ff1d4e;
}

@media (max-width: 767.98px) {

  .listing-details .btn--primary,
  .single-listing-view__modal .listing-details--vcenter .btn--primary {
    width: auto;
  }
}

.page-template-single-search-result .listing-details__close::before {
  opacity: 1 !important;
}

.data {
  margin-bottom: 20px;
}

.data__container {
  display: grid;
  grid-template-columns: repeat(2, 530px);
  grid-template-rows: 250px;
  grid-gap: 20px;
  margin-bottom: 20px;
}

.data__section {
  border: 1px solid #ced2dc;
  border-radius: 10px;
  padding: 40px;
}

.info {
  width: 100%;
  line-height: 1.2;
}

.info__heading {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.info__label {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #eff0f8;
  border-right: 1px solid #eff0f8;
  padding: 0 20px 10px 0;
}

.info__details {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #eff0f8;
  padding: 0 0 10px 20px;
}

.info__table {
  width: 100%;
}

.info__spacer {
  height: 10px;
}

.message--properties .gfield_checkbox>li,
.message .gfield_checkbox>li,
.message--properties .gfield_checkbox>li {
  margin-bottom: 10px;
}

.message--properties .gform_confirmation_wrapper,
.message .gform_confirmation_wrapper,
.message--properties .gform_confirmation_wrapper {
  width: 720px;
  margin: auto;
  padding: 0 20px;
}

.message--properties .gform_confirmation_wrapper>div:before,
.message .gform_confirmation_wrapper>div:before,
.message--properties .gform_confirmation_wrapper>div:before {
  content: "";
  background: url("../assets/public/images/message-successful.svg");
  width: 48px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.message--properties .gform_confirmation_wrapper div,
.message .gform_confirmation_wrapper div,
.message--properties .gform_confirmation_wrapper div {
  font-size: 18px;
  line-height: 28px;
  color: #131a25;
  font-weight: 600;
  text-align: center;
}

.message--properties .gform_confirmation_wrapper div strong,
.message .gform_confirmation_wrapper div strong,
.message--properties .gform_confirmation_wrapper div strong {
  font-size: 24px;
  color: #131a25;
  font-weight: 900;
  margin-bottom: 20px;
}

.message--properties .return__link,
.message .return__link,
.message--properties .return__link {
  display: block;
  background: #37B34A;
  border-radius: 3px;
  width: 220px;
  height: 50px;
  color: #fff;
  border: 0;
  font-size: 18px;
  margin: auto;
  margin-top: 50px;
}

.message--properties .return__link svg,
.message .return__link svg,
.message--properties .return__link svg {
  margin-right: 15px;
}

.message--properties .return__link svg polygon,
.message .return__link svg polygon,
.message--properties .return__link svg polygon {
  fill: #fff;
}

.result__labels .label__left {
  font-weight: 600;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 15px;
  letter-spacing: -0.3px;
  line-height: 18px;
}

.result__labels .label__image {
  display: inline-block;
  height: 26px;
  vertical-align: sub;
  margin-right: 10px;
}

.wants__item--single .share--overlay {
  position: static;
}

.want-details__subheader .public__wishlist {
  text-align: end;
}

.details__map.want-type iframe {
  border-radius: 3px;
}

.wants__item--tags .agent__rating polygon {
  width: 20px !important;
  height: 20px;
  fill: #ff1d4e !important;
}

@media (max-width: 767.98px) {
  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .data.row {
    width: 100%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .data.row .data__container {
    display: block;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .data.row .data__container .data__section:not(:last-child) {
    margin-bottom: 20px;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .result__container--no-border {
    padding: 0;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .result__container--no-border .result__details--properties {
    display: flex;
    flex-wrap: wrap;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .result__container--no-border .result__details--properties .details__map {
    width: 100%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .result__container--no-border .result__details--properties .details__map iframe {
    width: 100%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .result__container--no-border .result__details--properties .details__grid {
    width: 47%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__header {
    display: flex;
    flex-wrap: wrap;
    height: auto;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__header .listing-details__meta--left {
    width: 100%;
    order: 2;
    margin: 40px 0;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__header .listing-details__logo {
    width: 100%;
    order: 1;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__header .listing-details__meta--right {
    width: 100%;
    justify-content: space-between;
    order: 3;
    display: flex;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__header .listing-details__meta--right .listing-details__info {
    align-items: baseline;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__subheader {
    display: block;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .message--properties.row .message__header {
    max-width: 100%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .gform_wrapper .gform_body .gform_fields>li {
    margin-right: 0;
    float: none;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .gform_wrapper .gform_body .gform_fields>li .ginput_container_checkbox .gfield_checkbox {
    flex-direction: column;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .gform_wrapper .gform_body .gform_fields>li input {
    max-width: 100%;
    width: 100%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .agent-profile--properties .agent-profile__container--properties {
    display: flex;
    flex-wrap: wrap;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .agent-profile--properties .agent-profile__image-container {
    width: 40%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .agent-profile--properties .agent-profile__information {
    width: 47%;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .agent-profile--properties .agent-profile__contact--properties {
    margin-top: 30px;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__close {
    right: 10px;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible .listing-details__close:after {
    color: #212529;
  }

  .listing-details__modal.single-listing-view__modal.listing-details__modal--is-visible #modal-slider {
    max-width: 100%;
  }
}

.listing-details__close:after {
  color: #212529;
}

.my-wants__image {
  width: 250px;
  height: 140px;
}

@media (max-width: 767.98px) {
  .my-wants__image {
    height: 212px;
  }
}

.my-wants__controls {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ced2dc;
}

@media (max-width: 767.98px) {
  .my-wants__controls .button__group {
    justify-content: space-between;
    width: 100%;
  }
}

.my-wants .listing-list.archived {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
  transition: all 0.6s ease-in-out;
}

.my-wants .listing-list.archived:hover {
  opacity: 1;
  transition: all 0.6s ease-in-out;
}

.my-wants .button__group div {
  width: 150px;
  height: 50px;
}

.my-wants .button__group .archieved-div a {
  display: flex;
  cursor: pointer;
  pointer-events: all;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.my-wants .filter__item {
  display: flex;
}

.my-wants .filter__item span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.my-wants .filter.active {
  display: flex;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #my-wants {
    margin-top: 0;
  }

  #my-wants .my-wants__controls {
    justify-content: space-between;
  }

  #my-wants .my-wants__controls>div {
    margin: 0 !important;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  #listing-post .my-wants .my-wants__controls>div {
    padding: 0;
  }

  #listing-post .my-wants .my-wants__controls a {
    display: flex;
    align-items: center;
  }

  #listing-post .my-wants .my-wants__controls a .preview {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  main#profile-listings #listing-post .my-wants .my-wants__meta {
    padding-top: 19px;
    display: inline-block;
    width: 79%;
    padding-left: 0 !important;
  }

  main#profile-listings #listing-post .my-wants .my-wants__meta .bold {
    font-size: 16px;
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  main#profile-listings #listing-post .my-wants .my-wants__meta .list-txt,
  main#profile-listings #listing-post .my-wants .my-wants__meta .b-600,
  main#profile-listings #listing-post .my-wants .my-wants__meta .b-600 span,
  main#profile-listings #listing-post .my-wants .my-wants__meta .b-600 a {
    font-size: 9px !important;
    line-height: normal;
    margin-bottom: 5px;
  }
}

.pages1,
.pages2,
.pages3,
.pages4,
.pages5 {
  height: 20px;
  width: 20px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid #ced2dc;
}

.agentInfoStep1,
.pricing-plans {
  margin-bottom: 90px;
  max-width: 100%;
}

.agentInfoStep1 h3,
.pricing-plans h3 {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding: 0;
}

.agentInfoStep1 .labelAgent,
.pricing-plans .labelAgent {
  display: flex;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  vertical-align: middle;
}

.agentInfoStep1 .labelAgent a,
.pricing-plans .labelAgent a {
  margin: 0 5px;
}

@media (max-width: 575.98px) {

  .agentInfoStep1 .labelAgent,
  .pricing-plans .labelAgent {
    display: block !important;
    font-size: 13px;
    line-height: normal !important;
  }

  .agentInfoStep1 .labelAgent a,
  .pricing-plans .labelAgent a {
    font-size: 13px !important;
  }

  .checkbox-group .checkk-box span,
  .form-checkk .checkk-box span {
    font-size: 13px !important;
  }

  .pricing-plans .termsConditions,
  .pricing-plans .privacyPolicy {
    font-size: 13px !important;
  }

  .pro {
    font-size: 13px !important;
  }
}

.agentInfoStep1 .back-button,
.pricing-plans .back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #ced2dc;
  border-radius: 3px;
}

.agentInfoStep1 svg polygon,
.pricing-plans svg polygon {
  fill: #fff;
}

.agentInfoStep1 .cvc-plan .basic-info-code,
.pricing-plans .cvc-plan .basic-info-code {
  margin-left: 10px;
}

.agentInfoStep1 .cvc-plan .basic-info-code [data-title]:hover::before,
.pricing-plans .cvc-plan .basic-info-code [data-title]:hover::before {
  width: -moz-max-content;
  width: max-content;
  height: auto;
  max-width: 350px;
  max-height: 120px;
}

#step_1,
#step_3,
#step_4,
#step_5 {
  margin-top: 50px;
  max-width: 700px;
  margin: 0 auto;
}

.mainPage {
  width: 420px;
  position: relative;
  margin: 40px auto;
}

@media (max-width: 1199.98px) {
  .mainPage {
    left: 0;
    max-width: 100%;
    margin: 50px auto !important;
  }

  .mainPage>.row {
    align-items: center;
  }
}

.mainPage .currentPage {
  flex: 0 0 20%;
  max-width: 20%;
}

.mainPage .currentPage:last-child {
  width: 20px;
  max-width: 20px !important;
}

@media (max-width: 1199.98px) {
  .mainPage .currentPage {
    margin: 0;
    align-items: center;
    justify-content: center;
  }
}

.mainPage .row {
  display: flex;
  justify-content: center;
}

.mainPage .straight-line {
  position: absolute;
  width: 336px;
  height: 1px;
  left: 40px;
  background: #ced2dc;
  bottom: 10.5px;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .mainPage .straight-line {
    width: 280px;
  }
}

@media (max-width: 1199.98px) {
  .mainPage .straight-line {
    margin: auto;
    left: 0;
    right: 0;
  }
}

.mainPage .innerCircle {
  height: 14px;
  width: 14px;
  background: #ff1d4d;
  border-radius: 50%;
  margin: 2px;
}

.border-style {
  border: 1px solid #ced2dc;
  border-radius: 10px;
  padding: 40px;
  margin: 20px 0 !important;
}

.switch--large {
  width: 120px;
  height: 40px;
}

.slider--large {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 80px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #4f536c;
  margin: 0 auto;
}

.slider--large:before {
  content: "";
  display: block;
  position: absolute;
  height: 30px;
  width: 30px;
  bottom: 4.5px;
  left: 5px;
  background-color: #4f536c;
  border-radius: 100%;
  transition: all 0.4s ease-in-out;
}

input:checked+.slider--large {
  background-color: #fff;
  transition: all 0.4s ease-in-out;
}

.plans {
  display: flex;
  flex-direction: column;
  border: 1px solid #ced2dc;
  border-radius: 10px;
}

.plans h2 {
  font-weight: 900;
  font-size: 20px;
  color: #ff1d4d;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.plans h1 {
  font-weight: 900;
  font-size: 30px;
  color: #131a25;
  text-align: center;
  margin-bottom: 0px;
}

.plans p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin-bottom: 10px;
}

.plan-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  color: #fff;
  background-color: #ff1d4e;
  border-radius: 3px;
  margin: 0 auto;
}

.features {
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 50px;
  color: #131a25;
  font-weight: 600;
  background: #eff0f8;
  cursor: pointer;
  padding: 0 20px;
}

@media (max-width: 991.98px) {
  .features {
    margin-bottom: 0 !important;
  }
}

/*
.features-list:before {
	content: "";
	height: 1px;
	background: $mischka;
	width: 100%;
	position: absolute;
	z-index: 32000;
	top: 0;
}
*/
.features-list {
  position: relative;
  padding: 20px;
  background: #eff0f8;
  border-top: 1px solid #ced2dc;
  margin-bottom: 0 !important;
}

.features-list li {
  display: flex;
  position: relative;
  list-style: none;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 31px;
  color: #131a25;
}

.features-list li span {
  font-size: 14px;
  font-weight: 600 !important;
  color: #131a25;
  display: block;
}

.features-list li img {
  width: 14px !important;
  height: 14px !important;
}

.features-list a {
  color: #ff1d4e;
  font-size: 11px;
  font-weight: 900;
}

.features-list span {
  font-weight: #000;
  color: #ff1d4e;
}

.plan-overview {
  position: relative;
  padding: 20px;
  background: #eff0f8;
  border-bottom: 1px solid #ced2dc;
  margin: 20px 0 0;
}

.plan-overview li {
  display: flex;
  justify-content: space-between;
  position: relative;
  list-style: none;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 31px;
  color: #131a25;
}

.plan-overview li span {
  font-size: 14px;
  color: #131a25;
  display: block;
}

.plan-overview li img {
  width: 14px !important;
  height: 14px !important;
}

.plan-overview a {
  color: #ff1d4e;
  font-size: 11px;
  font-weight: 900;
}

.plan-overview span {
  color: #ff1d4e;
}

.plans-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 20px auto 0;
}

@media (max-width: 991.98px) {
  .plans-icon {
    margin-bottom: 0 !important;
  }
}

.plans-icon__text {
  font-size: 20px;
  font-weight: 800;
  line-height: 28px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .plans-icon__text {
    margin-bottom: 20px !important;
  }
}

.promoCode {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 30px auto;
}

@media (max-width: 991.98px) {
  .promoCode {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
}

.promoCode .promo-input {
  width: 320px;
  height: 40px;
  color: #131a25;
  border-radius: 5px;
  border: 1px solid #ced2dc;
}

@media (max-width: 991.98px) {
  .promoCode .promo-input {
    width: 56% !important;
  }
}

.promoCode .promo-text {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin-right: 20px;
}

@media (max-width: 991.98px) {
  .promoCode .promo-text {
    margin-right: 0;
  }
}

.promoCode .plans-update {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #343a4c;
  border-radius: 3px;
  margin-left: 20px;
}

@media (max-width: 991.98px) {
  .promoCode .plans-update {
    width: 41%;
  }
}

@media (max-width: 575.98px) {
  .promoCode .plans-update {
    width: 38%;
  }
}

.user-basic-info__input {
  height: 40px;
  border: 1px solid #ced2dc;
  border-radius: 5px;
}

.user-basic-info__promo-code {
  margin-bottom: 40px;
}

.user-basic-info .form-control {
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 600;
  color: #4f536c;
}

.user-login-info__input {
  height: 40px;
  border: 1px solid #ced2dc;
  border-radius: 5px;
}

.update-style-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #949baf;
  border-radius: 3px;
  margin-left: 20px;
}

.update-style-btn:hover {
  color: #fff;
}

.form-inline--nowrap {
  display: block !important;
}

.form-inline--nowrap .form-control {
  width: 100%;
}

.form-inline .labelAgent,
.form-inline--nowrap .labelAgent {
  line-height: 40px;
}

.button.red {
  padding: 0;
  border-radius: 3px;
  font-size: 18px;
}

@media (max-width: 575.98px) {
  .pricing-plans .signup__navigation .col-md-6 {
    margin-bottom: 20px;
    padding: 0;
    order: 2;
  }

  .pricing-plans .signup__navigation .col-md-6.submit-style-btn {
    order: 1;
  }

  .pricing-plans .signup__navigation .col-md-6 button,
  .pricing-plans .signup__navigation .col-md-6 a,
  .pricing-plans .signup__navigation .col-md-6 a i {
    height: 48px !important;
    width: 100%;
    text-align: center;
  }

  .pricing-plans #step_1 .col-md-6 {
    padding: 0;
    margin-bottom: 20px;
  }

  .pricing-plans #step_1 .col-md-6:nth-child(11) {
    order: 2;
  }

  .pricing-plans #step_1 .col-md-6.right {
    order: 1;
  }

  .pricing-plans #step_1 .col-md-6 button {
    height: 50px !important;
    width: 100%;
  }

  .pricing-plans #step_1 .col-md-3 {
    width: 33%;
    padding: 0;
    padding-right: 10px;
    margin-bottom: 20px;
  }

  .pricing-plans #step_1 .col-md-9 {
    width: 67%;
    padding: 0;
    margin-bottom: 20px;
  }

  .pricing-plans #step_1 .col-md-9 input {
    margin: 0;
  }

  .pricing-plans #step_3 form>.row {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .pricing-plans #step_3 .col-md-6 {
    padding: 0 !important;
  }

  .pricing-plans #step_3 .row.m-50 {
    margin: 0 !important;
  }

  .pricing-plans #step_3 .row.m-50 .col-md-6 {
    order: 2;
    margin-bottom: 20px;
  }

  .pricing-plans #step_3 .row.m-50 .col-md-6.right {
    order: 1;
  }

  .pricing-plans #step_3 .row.m-50 .col-md-6 button {
    height: 50px !important;
    width: 100%;
  }

  .pricing-plans #step_4 .border-style {
    padding: 14px;
  }

  .pricing-plans #step_4 .border-style>.col-md-4 {
    width: 33%;
    padding: 0;
    padding-right: 10px;
  }

  .pricing-plans #step_4 .border-style>.col-md-8 {
    width: 67%;
    margin-bottom: 20px;
  }

  .pricing-plans #step_4 .border-style .col-md-12.lazy-col .col-md-4 {
    width: 33%;
    padding: 0;
    padding-right: 10px;
    display: flex;
    align-items: center;
  }

  .pricing-plans #step_4 .border-style .col-md-12.lazy-col .col-md-8 {
    width: 67%;
    margin-bottom: 20px;
  }

  .pricing-plans #step_4 .border-style .col-md-12 .col-md-6 {
    width: 33%;
    padding: 0;
    padding-right: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .pricing-plans #step_4 .border-style .col-md-12 .col-md-6.p-0 {
    width: 67%;
  }

  .pricing-plans #step_4 .border-style .col-md-12 .col-md-4 {
    padding-left: 0;
  }

  .pricing-plans #step_4 .border-style .col-md-12 .col-md-4 .col-md-5 {
    width: 33%;
    padding-right: 10px !important;
    display: flex;
    align-items: center;
  }

  .pricing-plans #step_4 .border-style .col-md-12 .col-md-4 .col-md-7 {
    width: 67%;
    margin-bottom: 20px;
  }

  .pricing-plans #step_4 .border-style input {
    margin: 0;
  }

  .pricing-plans #step_5 .border-style {
    padding: 20px;
  }

  .pricing-plans #step_5 .border-style>.col-md-12 {
    padding: 0;
  }

  .pricing-plans #step_5 .border-style>.col-md-12.user-basic-info__promo-code .col-md-6 {
    padding: 0;
  }

  .pricing-plans #step_5 .border-style>.col-md-12 .col-md-4 {
    width: 62%;
  }

  .pricing-plans #step_5 .border-style>.col-md-12 .col-md-2 {
    width: 38%;
  }

  .pricing-plans #step_5 .border-style>.col-md-12 .col-md-6 {
    width: 50%;
  }

  .pricing-plans #step_5 .border-style>.col-md-12 .col-md-12 {
    padding: 0;
  }

  .pricing-plans .pages3,
  .pricing-plans .pages4,
  .pricing-plans .pages5 {
    width: 20px;
    height: 20px;
  }

  .pricing-plans .termsConditions,
  .pricing-plans .privacyPolicy {
    font-size: 14px;
  }
}

#user_basic_info_country {
  margin-bottom: 20px !important;
}

@media (max-width: 767.98px) {
  #user_basic_info_country {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .pricing-plans #step_3 .checkboxRow {
    padding-left: 15px;
  }

  .pricing-plans #step_4 .border-style .col-md-12.p-0>.row {
    flex-direction: column;
  }

  .pricing-plans #step_4 .border-style .col-md-12.p-0 .col-md-4 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
    padding: 0;
  }

  .pricing-plans #step_4 .border-style .col-md-12.p-0 .col-md-4 .col-md-5 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  .pricing-plans #step_4 .border-style .col-md-12.p-0 .col-md-4 .col-md-7 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .pricing-plans .pages3,
  .pricing-plans .pages4,
  .pricing-plans .pages5 {
    width: 15px;
    height: 15px;
  }
}

.w-6 {
  width: calc(100% - 100px);
}

.w-3 {
  width: 50px;
  text-align: center;
}

.w-3 {
  width: 50px;
  text-align: center;
}

.purgatory {
  font-family: "Open Sans", helvetica, arial, sans-serif;
  padding-top: 0 !important;
}

.purgatory__container {
  width: 700px;
  margin: 0 auto;
}

@media (max-width: 575.98px) {
  .purgatory__container {
    width: 100%;
  }

  .purgatory__container .purgatory__container {
    padding: 0 15px;
  }
}

.purgatory__members {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  width: 700px;
  height: 300px;
  background-size: cover !important;
  background-position: center center !important;
  color: white;
  text-align: center;
}

@media (max-width: 575.98px) {
  .purgatory__members {
    width: 100%;
  }
}

.purgatory__heading,
.purgatory__heading--large {
  font-size: 20px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding: 0;
}

.purgatory__heading--large {
  font-size: 40px;
  line-height: 48px;
}

.purgatory__caption {
  position: absolute;
  bottom: 0;
  font-size: 9px;
  font-weight: 600;
  line-height: 36px;
  text-align: center;
}

.purgatory__content {
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  text-align: center;
  margin: 30px 0 50px;
}

.purgatory__card {
  border: 1px solid #ced2dc;
  border-radius: 10px;
  margin: 0 0 60px;
  padding: 40px;
}

@media (max-width: 575.98px) {
  .purgatory__card {
    margin-left: 15px;
    margin-right: 15px;
    padding: 20px;
  }
}

.purgatory__card:last-child {
  margin: 0;
}

.purgatory__card .table {
  margin: 0;
  padding: 0;
  border-collapse: separate;
}

.purgatory__card .table th,
.purgatory__card .table td {
  border-top: none;
}

@media (max-width: 991.98px) {

  .purgatory__card .table th,
  .purgatory__card .table td {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {

  .purgatory__card .table th,
  .purgatory__card .table td {
    font-size: 14px !important;
  }
}

.purgatory__card .table tr {
  border-top: 10px solid #fff;
}

.purgatory .toggle-plans {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

.purgatory .text--position-bottom {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.purgatory .text--position-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.purgatory .membership-data .features {
  text-align: left !important;
}

.purgatory .membership-data .features-list {
  text-align: left !important;
  margin-bottom: 0 !important;
}

.purgatory .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 40px;
  color: #fff;
  border-radius: 3px;
}

.purgatory .promoCode {
  margin: 30px auto 60px;
}

.purgatory .promo-code-update {
  background-color: #8bc53f;
}

.purgatory .promo-code-update:hover {
  background: #96dd26 !important;
}

.purgatory .membership-info-submit {
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
  height: 50px;
  background: #4f536c;
  transition: all 0.2s ease-in-out;
}

.purgatory .membership-info-submit.checked {
  background-color: #ff1d4e;
}

.purgatory .membership-info-submit:hover {
  color: #fff;
  background: #ff1d4e;
  transition: all 0.2s ease-in-out;
}

.purgatory .secure-stripe-payment-logo-container {
  width: 500px;
  margin: 30px auto 100px;
}

@media (max-width: 575.98px) {
  .purgatory .secure-stripe-payment-logo-container {
    width: 100%;
  }
}

.purgatory .agree-container {
  font-size: 18px;
  font-weight: 600;
}

.purgatory .agree-container label {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.purgatory .agree-container .checkbox {
  content: "";
  display: inline-block;
  position: relative;
  background-color: #fff;
  width: 20px;
  height: 20px;
  transform-origin: center;
  border: 1px solid #131a25;
  border-radius: 3px;
  vertical-align: -6px;
  margin-right: 10px;
  transition: background-color 100ms, transform 250ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}

.purgatory .agree-container .label-text {
  display: inline-block;
}

.purgatory .agree-container .label-text span {
  background-color: white !important;
}

.purgatory .agree-container .checked span:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  top: 4px;
  left: 2.5px;
  transform: rotate(-45deg);
  transition: all 100ms ease 100ms;
}

.purgatory .agree-container .checked a {
  color: #131a25;
  text-decoration: underline;
}

.purgatory .agree-container .checked span {
  background-color: #131a25;
}

.card-information,
.membership-details {
  color: #131a25 !important;
}

.card-information__label,
.membership-details__label {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.card-information .membership-level,
.membership-details .membership-level {
  font-weight: 800;
  color: #ff1d4e;
}

.card-information .td-value,
.membership-details .td-value {
  font-weight: 600;
}

.card-information td,
.membership-details td {
  border-bottom: 1px solid #eff0f8;
  padding: 0 0 10px !important;
}

.card-information td:last-child,
.membership-details td:last-child {
  border-left: 1px solid #eff0f8;
  padding: 0 0 10px 20px !important;
}

@media (max-width: 575.98px) {
  .purgatory .user-payment-plans .plans {
    width: 100%;
  }

  .purgatory .purgatory__card form>.form-row:first-child .col-3.col {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .purgatory .purgatory__card form>.form-row:first-child .col {
    flex: 0 0 60%;
  }

  .purgatory .purgatory__card form>.form-row:last-child>.col.col-3 {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .purgatory .purgatory__card form>.form-row:last-child>.col>.form-row>.col:first-child {
    flex: 0 0 42%;
  }

  .purgatory .purgatory__card form>.form-row:last-child>.col>.form-row>.col:last-child .form-row .col.col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center !important;
  }

  .purgatory .purgatory__card form>.form-row:last-child>.col>.form-row>.col:last-child .form-row .col:last-child {
    flex: 0 0 50%;
  }
}

.listing-header__count {
  color: #ff1d4e;
}

.profile__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.profile__agency {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  margin-top: 4px;
}

.want-header__count {
  color: #ff1d4e;
}

.profile__name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.profile__agency {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Public Pages */
.main-nav {
  background: #fff;
  box-sizing: border-box;
}

.main-nav__container {
  display: flex;
  align-items: center;
  height: 100px;
}

@media (max-width: 767.98px) {
  .main-nav__container-left {
    padding-left: 20px;
  }
}

.main-nav__menu {
  display: inline-block;
  list-style: none;
  margin: 0 0 0 50px;
  padding: 0;
}

@media (max-width: 1199.98px) {
  .main-nav__menu {
    display: none;
  }
}

.main-nav__item {
  display: inline-block;
  font-size: 15px;
  margin: 0 40px 0 0;
  padding: 0;
}

.main-nav__link {
  font-weight: 600;
  text-decoration: none;
  color: #4f536c;
}

.main-nav__link:hover {
  text-decoration: none;
  color: #ff1d4e;
}

.main-nav .hamburger {
  padding: 0;
  padding: 20px;
}

@media (min-width: 1200px) {
  .main-nav .hamburger {
    display: none;
  }
}

.main-nav .hamburger .hamburger-inner {
  background-color: #ff1d4e;
}

.main-nav .hamburger .hamburger-inner:before,
.main-nav .hamburger .hamburger-inner:after {
  background-color: #ff1d4e;
}

.main-nav__menu-mobile {
  display: none;
}

.main-nav__logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-nav__logo-container svg,
.main-nav__logo-container img {
  height: 80px;
}

.main-nav__logo-container svg path,
.main-nav__logo-container img path {
  fill: #ff1d4e;
}

.main-nav__container-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.main-nav__buttons {
  padding-right: 50px;
}

@media (max-width: 991.98px) {
  .main-nav__buttons {
    padding-right: 20px;
  }
}

.main-nav__buttons a {
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  color: #4f536c;
}

.main-nav__buttons a:last-of-type {
  margin: 0;
}

@media (max-width: 991.98px) {
  .main-nav__buttons a {
    margin-right: 5px;
  }
}

.main-nav__buttons .btn {
  font-size: 16px;
  padding: 12px 26px;
  border-radius: 3px;
  transition: background 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
  .main-nav__buttons .btn {
    font-size: 12px;
    padding: 12px;
  }
}

.main-nav .btn--light {
  background: #fff;
  border: 1px solid #ced2dc;
}

.main-nav .btn--light:hover {
  background: #4f536c;
  border-color: #4f536c;
  color: #fff;
}

.main-nav .btn--primary {
  background: #ff1d4e;
  width: 170px;
  border: 1px solid #ff1d4e;
  color: #fff;
}

.main-nav .btn--primary:hover {
  background: #fff;
  border-color: #ff1d4e;
  color: #ff1d4e;
}

@media (max-width: 767.98px) {
  .main-nav .btn--primary {
    width: auto;
  }
}

.result__container,
.result__container--no-border {
  border: 1px solid #ced2dc;
  border-bottom: none;
  padding: 40px;
}

.result__container--no-border {
  border: none;
  padding: 0;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .result__container--no-border {
    padding-left: 0;
    padding-right: 0;
  }
}

.result__subheading {
  display: block;
  font-size: 15px;
  color: #4f536c;
  margin-bottom: 30px;
}

.result__description {
  position: relative;
  width: 100%;
}

.result__wishlist {
  position: absolute;
  right: 0;
  top: 0;
  margin-top: -12px;
}

.result__heading {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: #131a25;
  margin-bottom: 26px;
}

@media (max-width: 767.98px) {
  .result__heading {
    width: 80%;
  }
}

.result__information {
  font-size: 18px;
  font-weight: 600;
  color: #131a25;
  margin-bottom: 40px;
}

.result__labels {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
  color: #4f536c;
}

.result__labels .label__left {
  width: 620px;
}

.result__labels .label__right {
  width: calc(100% - 620px);
}

.result__details,
.result__details--properties {
  display: grid;
  grid-template-columns: 600px repeat(auto-fit, 140px);
  grid-template-areas: "result-details-map result-details-1 result-details-2 result-details-3" ". result-details-4 result-details-5 result-details-6";
  grid-template-rows: 190px;
  grid-gap: 20px;
  color: #131a25;
  margin-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {

  .result__details,
  .result__details--properties {
    grid-template-columns: 510px repeat(auto-fit, 140px);
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .result__details,
  .result__details--properties {
    grid-template-columns: 255px repeat(auto-fit, 140px);
  }
}

.result__details--properties {
  margin-bottom: 20px;
}

.result .details {
  /*
        &__type {
            .details__icon {
                background: url("../assets/public/images/type-icon.svg") no-repeat;
                width: 30px;
                height: 30px;
            }
        }

        &__price {
            .details__icon {
                background: url("../assets/public/images/price-icon.svg") no-repeat;
                width: 30px;
                height: 30px;
            }
        }

        &__beds {
            .details__icon {
                background: url("../assets/public/images/beds-icon.svg") no-repeat;
                width: 30px;
                height: 30px;
            }
        }

        &__baths {
            .details__icon {
                background: url("../assets/public/images/baths-icon.svg") no-repeat;
                width: 30px;
                height: 30px;
            }
        }

        &__sqft {
            .details__icon {
                background: url("../assets/public/images/sqft-icon.svg") no-repeat;
                width: 30px;
                height: 30px;
            }
        }

        &__pool {
            .details__icon {
                background: url("../assets/public/images/pool-icon.svg") no-repeat;
                width: 30px;
                height: 30px;
            }
        }
        */
}

.result .details__map {
  background-size: cover;
  border-radius: 5px;
  grid-column: 1 / 1;
  grid-row: 1 / span 2;
  max-height: 600px;
  margin: 0;
}

@media (min-width: 768px) {
  .result .details__map iframe {
    width: 100%;
  }
}

.result .details__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  height: 190px;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  padding: 20px;
}

.result .details__label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.result .details__sub-label {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.result .details__icon {
  width: 30px;
  height: 30px;
}

.result .details__data {
  font-size: 22px;
  font-weight: 600;
}

.return__link {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 50px;
  font-size: 15px;
  font-weight: 600;
  line-height: 48px;
  border-left: 1px solid #ced2dc;
  border-right: 1px solid #ced2dc;
  padding: 0 32px;
  color: #4f536c;
}

.return__icon {
  width: auto;
  height: 11.314px;
  margin-right: 10px;
}

.search-panel {
  width: 100%;
  padding: 0 32px;
}

@media (max-width: 767.98px) {
  .search-panel {
    top: 80px !important;
    transform: translateX(-50%) !important;
  }
}

.connect {
  /*
    &__submit {
        position: relative;
        min-width: 160px;
        height: 50px;
        vertical-align: middle;
        font-size: 18px;
        font-weight: $semibold;
        color: $white;
        background: $sushi;
        border: none;
        border-radius: 3px;
        overflow: hidden;
        transform-origin: 100% 0%;
        transition-property: transform;
        transition-duration: 0.3s;
        transition-timing-function: cubic-bezier(.25,.75,.5,1.25);
        z-index: 1;
        
        &:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: $atlantis;
            transform: scaleX(0);
            transform-origin: 0% 100%;
            transition-property: transform;
            transition-duration: 0.3s;
            transition-timing-function: cubic-bezier(.25,.75,.5,1.25);
            border-radius: 3px;
            z-index: -1;
        }
        */
}

.connect__slogan {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-top: 105px;
}

@media (max-width: 575.98px) {
  .connect__slogan {
    display: none;
  }
}

.connect form {
  padding-bottom: 0;
}

.connect__container {
  display: flex;
  background: #131a25;
  background: url("../assets/images/nls-hero.jpg") no-repeat;
  background-position: center center !important;
  background-size: cover !important;
  height: 100vh;
  margin-top: -100px;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .connect__container {
    height: calc(100vh - 100px);
    background-position: center bottom;
    margin-top: 0;
  }
}

.connect__overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent); */
  z-index: 0;
}

.connect__header {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  z-index: 10;
}

@media (max-width: 575.98px) {
  .connect__header {
    margin: 50px 0 50px;
  }
}

.connect__heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 48px 0 0;
}

@media (max-width: 767.98px) {
  .connect__heading {
    font-size: 50px;
  }
}

.connect__heading.subtext {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 767.98px) {
  .connect__heading.subtext {
    font-size: 14px;
  }
}

.connect__subheading {
  max-width: 700px;
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 60px;
  text-align: center;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .connect__subheading {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 575.98px) {
  .connect__subheading {
    font-size: 40px;
    line-height: 40px;
    margin: 10px 0 0;
  }
}

.connect__tabs {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 110px auto;
  grid-template-areas: "search-properties find-a-buyer" "connect-search connect-search";
  max-width: 700px;
  min-height: 367px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .connect__tabs {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .connect__tabs {
    grid-template-rows: 100px auto;
    width: 100%;
  }
}

.connect__tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #eff0f8;
  color: #4f536c;
  z-index: 10;
}

.connect__tab:hover:not(.connect__tab--active) {
  background-color: #fff;
}

.connect__tab--active {
  background: #ff1d4e;
  color: #fff;
  transition: all 0.3s linear;
}

.connect__tab--active .connect__icon path {
  fill: #fff;
}

.connect__tab--active::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ff1d4e transparent transparent transparent;
  transform: rotate(360deg);
  top: calc(100% - 1px);
  transition: all linear 0.3s;
  z-index: 10;
}

.connect .property__toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.connect .property__toggle .yesno {
  font-size: 14px;
  color: #ced2dc;
  padding: 0 20px;
}

.connect .property__toggle .checkbox-custom-toggle {
  width: 52px;
  height: 26px;
  border-radius: 13px;
}

.connect .property__toggle .checkbox-custom-toggle input:checked+.slider:before,
.connect .property__toggle .checkbox-custom-toggle input:checked+.slider--large:before {
  transform: translateX(24px);
}

.connect .property__toggle .checkbox-custom-toggle .slider,
.connect .property__toggle .checkbox-custom-toggle .slider--large {
  background-color: #4f536c;
}

.connect .property__toggle .checkbox-custom-toggle .slider:before,
.connect .property__toggle .checkbox-custom-toggle .slider--large:before {
  width: 20px;
  height: 20px;
  left: 4px;
  bottom: 3px;
  background-color: #ced2dc;
}

.connect__icon {
  width: 26px;
  height: 26px;
  margin: 0 0 10px;
}

.connect__icon path {
  fill: #4f536c;
}

.connect__input {
  font-size: 15px;
}

.connect__input::-moz-placeholder {
  font-size: 15px;
  color: #949baf;
  margin-bottom: 0;
}

.connect__input::placeholder {
  font-size: 15px;
  color: #949baf;
  margin-bottom: 0;
}

.connect__search {
  grid-column: 1 / span 2;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  background: rgba(19, 26, 37, 0.9);
  padding: 30px 50px 50px;
  z-index: 9;
}

@media (max-width: 767.98px) {
  .connect__search {
    width: 100%;
    padding: 30px;
  }
}

.connect__input {
  width: auto;
  min-width: calc(100% - 175px);
  height: 50px;
  color: #131a25;
  border: none;
  border-radius: 3px;
  margin-right: 10px;
  padding: 20px;
}

@media (max-width: 767.98px) {
  .connect__input {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}

.connect__submit {
  position: relative;
  min-width: 160px;
  height: 50px;
  vertical-align: middle;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #8bc53f;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

.connect__submit:hover {
  background: #96dd26;
  transition: all 0.3s ease-in-out;
}

.connect__submit:hover:before,
.connect__submit:hover:focus,
.connect__submit:hover:active {
  transform: scaleX(1);
}

@media (max-width: 575.98px) {
  .connect__submit {
    width: 100%;
    margin: 10px 0 0 0;
  }
}

.connect__instructions {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: #fff;
  margin: 35px 0 0;
  padding: 0;
}

@media (max-width: 575.98px) {
  .connect__instructions {
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0 0;
  }
}

.scroller {
  position: absolute;
  left: 0;
  bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 50px;
}

.scroller__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroller__label {
  font-size: 18px;
  font-weight: 600;
  line-height: 34px;
  color: #fff;
  margin-bottom: 10px;
}

.tab__label {
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .tab__label {
    font-size: 12px;
    text-align: center;
    padding: 0 20px;
  }
}

.agent {
  padding: 0;
  margin-bottom: 40px;
}

.agent .agent__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 120px;
  grid-template-areas: "agent-wants agent-listings";
  margin: -120px 0 20px;
}

@media (max-width: 767.98px) {
  .agent .agent__tabs {
    margin-top: 0;
  }
}

.agent .agent__tabs .agent__tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #eff0f8;
  color: #131a25;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

.agent .agent__tabs .agent__tab--active {
  background: #ff1d4e;
  color: #fff;
}

.agent .agent__tabs .agent__tab--active .tab__count {
  color: #ff1d4e;
}

.agent .agent__tabs .agent__tab--active::after {
  content: "";
  position: absolute;
  grid: 1 / 2;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #ff1d4e transparent transparent transparent;
  transition: all linear 0.3s;
  transform: rotate(360deg);
  top: calc(100% - 21px);
}

.agent .agent__tabs .agent__tab:hover:not(.agent__tab--active) {
  background-color: #fff;
  transition: background 0.3s linear;
}

.agent .agent__tabs .agent__tab:hover:not(.agent__tab--active) .tab__count {
  background-color: #ff1d4e;
  color: #fff;
  transition: background 0.3s ease-in-out;
}

.agent .agent__tabs .tab__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .agent .agent__tabs .tab__title {
    text-align: center;
  }
}

.agent .agent__tabs .tab__count {
  display: inline-block;
  background: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

.wants {
  padding: 0;
  /* .agent-listing-profile, */
}

.wants__item,
.wants__item--tags,
.wants__item--single {
  position: relative;
  display: grid;
  grid-template-columns: 330px 2fr 160px 120px;
  grid-auto-columns: auto;
  grid-template-rows: 1fr 150px;
  grid-template-areas: "wants-listing-title wants-listing-title wants-listing-title wants-listing-title" "wants-listing-profile wants-listing-match wants-listing-age wants-listing-details";
  grid-gap: 0 40px;
  justify-items: center;
  align-items: center;
  border: 1px solid #ced2dc;
  color: #131a25;
  background-color: #fff;
  margin: 0 0 20px;
  padding: 0 40px;
}

.wants__item--tags {
  grid-template-columns: 330px 2fr 160px 110px;
  grid-template-rows: 150px;
  grid-template-areas: "wants-listing-profile wants-listing-match wants-listing-age wants-listing-details";
}

.wants__item--tags .wants__property {
  align-items: flex-start;
  width: 100%;
}

.wants__item--single {
  border-bottom: none;
  margin: 20px 0 0;
}

@media (min-width: 992px) and (max-width: 1199.98px) {

  .wants__item,
  .wants__item--tags,
  .wants__item--single {
    grid-template-columns: 255px 1fr 120px 110px;
    margin: 0 0 20px;
    padding: 0 20px;
    grid-gap: 0 30px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .wants__item,
  .wants__item--tags,
  .wants__item--single {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 991.98px) {

  .wants__item,
  .wants__item--tags,
  .wants__item--single {
    grid-template-columns: 50% auto;
    grid-template-areas: "wants-listing-profile wants-listing-location" "wants-listing-age wants-listing-details";
    grid-gap: 20px;
    padding: 20px;
  }
}

@media (max-width: 767.98px) {

  .wants__item,
  .wants__item--tags,
  .wants__item--single {
    margin: 0 20px 20px;
  }
}

.wants__title {
  display: grid;
  grid-area: wants-listing-title;
  grid-column: 1 / span 4;
  justify-self: flex-start;
  padding: 40px 0 0;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .wants__title {
    padding: 0;
    width: 100%;
  }
}

.wants__link {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #131a25;
}

.wants .agent__profile {
  grid-area: wants-listing-profile;
  display: flex;
  flex-direction: row;
  justify-self: flex-start;
  align-items: center;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .wants .agent__profile {
    width: 100%;
  }
}

.wants .agent-info_rate ul {
  padding: 0;
  list-style: none;
  display: flex;
}

.wants .agent-info_rate ul li {
  list-style-type: none;
  display: inline-block;
  margin-right: 1px;
}

.wants .agent-info_rate ul svg {
  width: 18.5px;
  padding: 0;
}

.wants .agent-info_rate ul polygon {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.wants .agent__thumbnail,
.wants .agent__thumbnail img,
.agent__thumbnail .wants img,
.wants .agent__thumbnail--small img,
.agent__thumbnail--small .wants img {
  min-width: 80px;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  overflow: hidden;
}

.wants .agent__name {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: #25a9e0;
  margin-bottom: 6px;
}

.wants .agent__agency {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.wants .agent__rating {
  display: flex;
  width: 96px;
}

.wants .agent__rating svg,
.wants .agent__rating polygon,
.wants .agent__rating img {
  width: 96px;
  fill: #ff1d4e;
}

@media (max-width: 767.98px) {
  .wants .agent__name {
    font-size: 14px;
  }

  .wants .agent__agency {
    font-size: 12px;
  }

  .wants .agent__rating img {
    width: 69px;
  }
}

.wants .match {
  grid-area: wants-listing-match;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 360px;
  height: 80px;
  border: 1px solid #ced2dc;
  border-radius: 40px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .wants .match {
    width: 310px;
  }
}

.wants .match__label {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 17px;
}

.wants .match__bar {
  width: 150px;
  height: 14px;
  background: #131a25;
  border-radius: 7px;
}

.wants .match__bar--progress {
  display: block;
  background: #37b34a;
  width: 0%;
  height: 14px;
  border-radius: 7px;
}

.wants .match__percentage {
  font-size: 22px;
  font-weight: 600;
  margin-left: 17px;
}

.wants__property {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.wants__status svg,
.wants__status img {
  width: 40px;
  height: 40px;
  margin-right: 20px;
}

.wants__name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #131a25;
  margin: 0;
}

@media (max-width: 767.98px) {
  .wants__name {
    font-size: 18px;
  }
}

.wants .age {
  grid-area: wants-listing-age;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 80px;
  border: 1px solid #ced2dc;
  border-radius: 40px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .wants .age {
    width: 120px;
  }
}

.wants .age .age__label {
  font-size: 15px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  margin-right: 10px;
}

.wants .age .age__number {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: 600;
  line-height: 40px;
  border-radius: 20px;
  background: #37b34a;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

.wants .share,
.wants .share--overlay {
  grid-area: wants-listing-details;
  border: 1px solid #ced2dc;
  border-radius: 3px;
}

.wants .share a,
.wants .share--overlay a {
  color: #131a25;
}

.wants .share__button {
  display: flex;
  width: 120px;
  height: 40px;
}

.wants .share__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  vertical-align: center;
}

.wants .share__plus {
  display: flex;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-left: 1px solid #ced2dc;
}

.wants .share__plus::after {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  font-weight: 600;
}

.wants__details {
  grid-area: wants-listing-details;
  display: flex;
  justify-self: flex-end;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
  margin-right: 10px;
}

.wants__details a {
  color: #131a25;
}

.wants__details .details__link {
  display: flex;
}

.wants__details .details__link .details__button {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #131a25;
  width: 40px;
  height: 40px;
  border: 1px solid #131a25;
  border-radius: 3px;
  margin-left: 10px;
  transform: translateZ(1px);
  transition: color 0.3s;
}

.wants__details .details__link .details__button:before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: 0% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  border-radius: 2.5px;
  z-index: -1;
}

.wants__details .details__link .details__button:hover .fa {
  color: #131a25;
}

.wants__details .details__link .details__button:hover:before,
.wants__details .details__link .details__button:hover:focus,
.wants__details .details__link .details__button:hover:active {
  transform: scaleX(1);
}

.wants__details .details__link .details__button .fa {
  color: #fff;
}

.agent-listing {
  padding: 0;
}

.agent-listing--dashboard {
  background: #eff0f8;
  min-height: 500px;
}

.agent-listing__item {
  position: relative;
  display: grid;
  grid-template-columns: 216px 1fr 190px;
  grid-auto-columns: auto;
  grid-template-rows: 200px;
  grid-template-areas: "wants-profile wants-location wants-view";
  grid-gap: 40px;
  align-items: center;
  border: 1px solid #ced2dc;
  color: #131a25;
  background-color: #fff;
  margin: 20px 0 0 0;
  padding: 0 40px;
}

.agent-listing__item:first-child {
  margin: 0;
}

@media (max-width: 991.98px) {
  .agent-listing__item {
    grid-template-columns: 50% auto;
    /*
            grid-template-areas:
                "agent-listing-profile agent-listing-location"
                "agent-listing-age agent-listing-details";
                */
    grid-gap: 20px;
    padding: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .agent-listing__item {
    grid-template-columns: 28% auto;
    grid-template-areas: "agent-listing-profile agent-listing-location" "agent-listing-age agent-listing-details";
  }

  .agent-listing__item .agent-listing__thumbnail {
    width: 180px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .agent-listing__item {
    grid-template-columns: 24% 49% 20%;
  }
}

@media (max-width: 767.98px) {
  .agent-listing__item {
    margin: 0 20px 20px;
  }
}

.agent-listing__thumbnail {
  display: flex;
  align-items: flex-end;
  width: 216px;
  height: 120px;
  background-size: cover !important;
  border-radius: 3px;
}

.agent-listing__thumbnail img {
  width: 100%;
}

.agent-listing__hotspot {
  display: block;
  width: 100%;
  height: 100%;
}

.agent-listing__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: #131a25;
  margin: 0 0 20px;
}

@media (max-width: 767.98px) {
  .agent-listing__title {
    font-size: 18px;
  }
}

.agent-listing__layout--horizontal {
  display: flex;
}

.agent-listing__status {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 3px;
  margin-right: 10px;
}

.agent-listing .cost {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 40px;
  background-color: #131a25;
  border-radius: 3px;
  margin-right: 40px;
}

.agent-listing .cost__amount {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.agent-listing__details {
  display: flex;
  flex-direction: column;
  max-width: 250px;
}

.agent-listing .details__container {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
}

.agent-listing .details__container li {
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  margin: 0 10px 17.3px 0;
  padding: 0;
}

.agent-listing .details__container strong {
  font-weight: 800;
}

.agent-listing__address {
  max-width: 320px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 600;
  text-overflow: ellipsis;
  line-height: 14.4px;
  white-space: nowrap;
}

.agent-listing__view {
  display: flex;
  justify-content: flex-end;
  font-size: 18px;
  font-weight: 600;
  line-height: 40px;
}

.agent-listing__view a {
  color: #131a25;
}

.agent-listing__link {
  display: flex;
}

.agent-listing__link .view__button {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  background: #131a25;
  width: 40px;
  height: 40px;
  border: 1px solid #131a25;
  border-radius: 3px;
  margin-left: 10px;
  transform: translateZ(1px);
  transition: color 0.3s;
}

.agent-listing__link .view__button:before {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: 0% 100%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
  border-radius: 2.5px;
  z-index: -1;
}

.agent-listing__link .view__button:hover .fa {
  color: #131a25;
}

.agent-listing__link .view__button:hover:before,
.agent-listing__link .view__button:hover:focus,
.agent-listing__link .view__button:hover:active {
  transform: scaleX(1);
}

.agent-listing__link .view__button .fa {
  color: #fff;
}

.message--properties {
  width: 100%;
  max-width: unset;
}

.message__container,
.message__container--properties {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #ced2dc;
  margin: 0 0 40px;
  padding: 40px;
}

.message__container--properties {
  border-radius: 10px;
  margin-bottom: 20px;
}

.message__header {
  width: 720px;
  margin: 0 auto;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .message__header {
    width: 100%;
  }
}

.message__heading {
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: #131a25;
  margin: 0 0 20px;
  padding: 0;
}

.message__subheading {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #131a25;
  margin: 0;
  padding: 0;
}

.message__content {
  width: 720px;
  margin: 0 auto;
  padding: 0;
}

.message__content p {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: #131a25;
}

.message__content a {
  text-decoration: underline;
}

.message__disclaimer.message__disclaimer {
  max-width: 720px;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  color: #131a25;
  margin: 10px auto 0;
}

.message form,
.message--properties form {
  max-width: 720px;
  margin: 0 auto;
}

.message .gform_wrapper,
.message--properties .gform_wrapper {
  margin-top: 40px;
}

.message__checkboxes {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.message__checkbox {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
}

.message textarea,
.message--properties textarea {
  font-size: 15px;
  color: #131a25;
  margin-bottom: 20px;
  padding: 20px;
}

.message input:not([type="checkbox"]),
.message--properties input:not([type="checkbox"]) {
  display: flex;
  justify-content: center;
  width: 350px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  margin: 0 0 20px 0;
  padding: 20px;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .message input:not([type="checkbox"]),
  .message--properties input:not([type="checkbox"]) {
    width: 317px;
  }
}

.message .margin--right,
.message--properties .margin--right {
  margin-right: 20px;
}

.message__textarea textarea {
  width: 720px;
  height: 100px;
  line-height: 1.666666666666667;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  margin-bottom: 20px;
  padding: 20px;
}

.message__submit-container {
  display: flex;
  justify-content: flex-end;
}

.message button,
.message--properties button {
  background: #ff1d4e;
  font-size: 18px;
  font-weight: 600;
  width: 160px;
  height: 50px;
  border: none;
  border-radius: 3px;
  color: #fff;
}

.cta__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 320px;
  background-color: #fff;
  border: 1px solid #ced2dc;
  margin: 20px 0 40px;
}

.cta__heading {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  color: #131a25;
  margin-bottom: 25px;
}

.cta__subheading {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #4f536c;
}

.cta__button {
  line-height: 50px;
  margin-top: 45px;
}

.cta__btn {
  display: block;
  font-size: 18px;
  font-weight: 600;
  width: 160px;
  height: 50px;
  border-radius: 3px;
  text-align: center;
}

@media (max-width: 767.98px) {
  .cta__btn {
    font-size: 12px;
    padding: 12px;
  }
}

.cta__btn--primary {
  background: #ff1d4e;
  border: 1px solid #ff1d4e;
  color: #fff;
}

.cta__btn--primary:hover {
  background: #fff;
  border-color: #ff1d4e;
  color: #ff1d4e;
}

.cta__btn--primary:visited {
  color: #fff;
}

.cta__btn--primary:visited:hover {
  color: #ff1d4e;
}

.listing {
  position: relative;
  color: #131a25;
}

.listing__container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(auto, 360px));
  grid-template-rows: auto;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 40px;
  margin: 0 0 20px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .listing__container {
    grid-template-columns: repeat(auto-fill, minmax(auto, 47%));
  }
}

.listing__thumbnail {
  display: flex;
  align-items: flex-end;
  width: 360px;
  height: 200px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat;
  border-radius: 3px;
  cursor: pointer;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .listing__thumbnail {
    width: 100%;
  }
}

.listing__content {
  display: flex;
  flex-direction: row;
  margin: 20px 0 0 0;
  max-width: 360px;
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .listing__content {
    max-width: 100%;
  }
}

.listing__exclusive svg {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -10px;
  top: -10px;
}

.listing__details {
  width: 100%;
}

.listing__price {
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  color: #131a25;
  margin: 0 0 7px 0;
}

.listing__values {
  display: flex;
  margin-bottom: 0;
}

.listing__values li {
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 18px;
  margin: 0 10px 10px 0;
  padding: 0;
}

.listing__values strong {
  font-weight: 800;
}

.listing__address {
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
  margin-bottom: 0;
}

.listing .listing__agent,
.listing .listing__agent--chat {
  position: relative;
}

.listing .listing__agent::after,
.listing .listing__agent--chat::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  top: -10px;
  left: -10px;
  background: url("../assets/public/images/chat-icon.svg") no-repeat;
  cursor: pointer;
  z-index: 20;
}

.agent__container {
  display: flex;
}

.agent__profile {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: #131a25;
}

.agent__thumbnail,
.agent__thumbnail img,
.agent__thumbnail--small img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
}

.agent__thumbnail--small {
  width: 50px;
  max-width: 50px !important;
  height: 50px;
  border-radius: 50%;
}

.agent__information {
  display: flex;
  flex-direction: column;
}

.agent__name {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  color: #25a9e0;
  margin-bottom: 6px;
}

.agent__name a {
  font-size: 18px;
  color: #25a9e0;
}

.agent__agency {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}

.agent__rating ul {
  display: flex;
  list-style-type: none;
}

.agent__rating li {
  margin-right: 3px;
}

.agent__rating svg {
  width: 20px;
  height: 20px;
  fill: #ff1d4e;
}

.agent__contact {
  display: grid;
  grid-column-start: 2;
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
}

.agent__contact a {
  text-decoration: underline;
}

@media (max-width: 767.98px) {
  .agent .agent-listing-name {
    font-size: 14px;
  }

  .agent .agent-listing-agency {
    font-size: 12px;
  }

  .agent .agent-listing-rating img {
    width: 69px;
  }
}

.pagination {
  display: flex;
}

.pagination__container,
.pagination__container--members {
  display: flex;
  align-items: center;
  list-style: none;
  color: #4f536c;
  background-color: #fff;
  margin: 20px auto 20px;
}

.pagination__container--members {
  justify-content: center;
  margin: 60px 0;
}

.pagination__container.mt-0,
.mt-0.pagination__container--members {
  margin-top: 0;
}

.pagination__control,
.pagination__control--disabled {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-color: #ced2dc;
  border-style: solid;
  border-width: 1px 0 1px 1px;
  transition: all 0.2s ease-in-out;
}

.pagination__control--disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.pagination__control--disabled:last-child {
  border-width: 1px 0 1px 0;
}

.pagination__control--disabled svg,
.pagination__control--disabled rect,
.pagination__control--disabled polygon {
  fill: #ced2dc;
  transition: all 0.1s ease-in-out;
}

.pagination__control__icon svg:hover {
  fill: #fff;
}

.pagination__control a,
.pagination__control--disabled a {
  display: flex;
  justify-items: center;
  align-items: center;
}

.pagination__control:last-of-type,
.pagination__control--disabled:last-of-type {
  border-width: 1px;
}

.pagination__control:not(.pagination__control--disabled):hover,
.pagination__control--disabled:not(.pagination__control--disabled):hover {
  background-color: #ced2dc;
  border-color: #ced2dc;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.pagination__control:not(.pagination__control--disabled):hover svg,
.pagination__control--disabled:not(.pagination__control--disabled):hover svg,
.pagination__control:not(.pagination__control--disabled):hover rect,
.pagination__control--disabled:not(.pagination__control--disabled):hover rect,
.pagination__control:not(.pagination__control--disabled):hover polygon,
.pagination__control--disabled:not(.pagination__control--disabled):hover polygon {
  fill: #fff;
  transition: all 0.1s ease-in-out;
}

.pagination__icon {
  height: 11.314px;
  fill: #4f536c;
}

.pagination__page,
.pagination__page--single {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  font-size: 18px;
  font-weight: 600;
  line-height: 48px;
  border: 1px solid #ced2dc;
  border-width: 1px 0 1px 1px !important;
}

.pagination__page--single {
  border-width: 1px;
}

/*
 * Share Button
 */
.share,
.share--overlay {
  height: 40px;
  border: 1px solid #ced2dc;
  box-sizing: content-box;
  border-radius: 3px;
  z-index: 100;
  display: none;
}

.share--overlay {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #fff;
}

.share a,
.share--overlay a {
  color: #131a25;
}

.share__button {
  display: flex;
  width: 120px;
  height: 40px;
}

.share__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  line-height: 40px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  vertical-align: center;
}

.share__plus {
  display: flex;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-left: 1px solid #ced2dc;
}

.share__plus::after {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 22px;
  font-weight: 600;
}

.gallery__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  min-width: 60px;
  height: 30px;
  border-bottom-left-radius: 3px;
  background-color: #131a25;
  cursor: pointer;
}

.gallery__button:hover path {
  fill: #fff;
  transition: fill 0.3s linear;
}

.gallery__icon {
  display: flex;
  align-self: center;
  margin-right: 5px;
}

.gallery__icon svg,
.gallery__icon img {
  width: auto;
  height: 20px;
}

.gallery__icon svg path,
.gallery__icon img path {
  fill: #949baf;
  transition: fill 0.3s linear;
}

.gallery__count {
  display: flex;
  align-items: center;
  color: #fff;
}

/*
 *  Dropdown Menu (Public) – this was conflicting with the Bootstrap dropdown class
 */
.dropdown-public.menu-active:after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50px;
  width: 179px;
  height: 10px;
  z-index: 10;
}

.dropdown-public #dropdown_public_div {
  position: relative;
}

.dropdown-public .dropdown-menu,
.dropdown-public .dropdown-menu--large {
  position: absolute;
  width: 380px;
  left: auto;
  top: 50px;
  background: #fff;
  border: 1px solid #ced2dc;
  margin: 0 0 0 -199px;
  padding: 40px;
  transform-origin: center top;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
  z-index: 9;
}

@media (max-width: 767.98px) {

  .dropdown-public .dropdown-menu,
  .dropdown-public .dropdown-menu--large {
    width: 100%;
  }
}

.dropdown-public .dropdown-menu.box-shadow,
.dropdown-public .box-shadow.dropdown-menu--large {
  filter: drop-shadow(0px 0px 7px rgba(79, 83, 108, 0.3));
  border: none;
  border-radius: 3px;
  width: 285px;
  font-size: 16px;
  padding: 30px;
}

.dropdown-public .dropdown-menu.box-shadow .filter__container,
.dropdown-public .box-shadow.dropdown-menu--large .filter__container {
  max-width: 225px;
}

.dropdown-public .dropdown-menu.box-shadow:before,
.dropdown-public .box-shadow.dropdown-menu--large:before {
  position: absolute;
  top: -10px;
  right: 115px;
  content: "";
  display: block;
  width: 0;
  height: 0;
  text-align: center;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #fff;
  border-left: 5px solid transparent;
  filter: drop-shadow(0px 0px 7px rgba(79, 83, 108, 0.3));
  overflow: hidden;
  z-index: 0;
}

.dropdown-public .dropdown-menu.active,
.dropdown-public .active.dropdown-menu--large {
  height: auto;
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
  transition: all 0.3s ease-in-out;
}

@keyframes pulldown {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  80% {
    transform: scaleY(1.02);
  }

  100% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes pushup {
  0% {
    transform: scaleY(1);
    opacity: 1;
  }

  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

.dropdown-public .dropdown-menu--large {
  width: 600px;
  height: 600px;
  animation: pushup 0.3s ease-in-out forwards;
}

.dropdown-public .dropdown-menu li,
.dropdown-public .dropdown-menu--large li {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.filter li:first-child .dropdown-menu,
.filter li:first-child .dropdown-public .dropdown-menu--large,
.dropdown-public .filter li:first-child .dropdown-menu--large {
  width: 280px;
  margin: 0 0 0 -99px;
}

.property-type {
  list-style: none;
}

.property-type__label {
  white-space: nowrap;
}

.property-type__option {
  margin-bottom: 17px;
}

.property-type__option:last-child {
  margin-bottom: 0;
}

.beds-filter input {
  width: auto;
  height: auto;
  border: 0;
  position: absolute;
  left: -9999px;
}

.beds-filter label {
  text-align: center;
  background: #fff;
  border: 1px solid #a7a6ab;
  padding: 10px 15px;
}

.beds-filter__group {
  display: flex;
  list-style: none;
}

.beds-filter__option {
  margin-bottom: 10px;
  padding: 0;
}

.beds-filter__option:last-child {
  margin-bottom: 0;
}

/*
 *  Form Components
 */
.checkbox:not(.woocommerce-input-wrapper .checkbox) {
  position: relative;
  display: block;
  float: left;
  min-width: 18px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #4f536c;
  transition: all 0.15s ease;
}

.checkbox svg {
  position: absolute;
  top: 2px;
  left: 2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
  stroke-width: 2;
  stroke-dasharray: 17;
  stroke-dashoffset: 17;
  transform: translate3d(0, 0, 0);
}

.radio {
  position: relative;
  display: block;
  float: left;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #131a25;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15), inset 0 -1px 1px rgba(0, 0, 0, 0.15);
  transition: all 0.15s ease;
}

.radio:after {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transform: scale(0);
}

.checkbox+span,
.radio+span {
  float: left;
  margin-left: 10px;
}

.forms {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.forms label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.forms input[type="checkbox"],
.forms input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.forms input[type="radio"]:checked+.rdo {
  background-color: #131a25;
}

.forms input[type="radio"]:checked+.rdo:after {
  opacity: 1;
  transform: scale(1);
  transition: all 0.15s ease;
}

.forms input[type="checkbox"]:checked+.checkbox {
  border-color: #131a25;
  background-color: #131a25;
}

.forms input[type="checkbox"]:checked+.checkbox svg {
  stroke-dashoffset: 0;
  transition: all 0.15s ease;
}

/**
 * Status Icons
 */
.status,
.status--watchlist,
.status--exclusive,
.status--active,
.status--contract,
.status--pending,
.status--sold,
.status--expired,
.status--purgatory,
.status--withdrawn,
.status--exclusive-gradient,
.status--grey,
.status--green,
.status--blue,
.status--orange,
.status--red {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
}

.status--small {
  width: 26px !important;
  height: 26px !important;
}

.status--listing {
  width: 40px;
  height: 40px;
  background-size: 40px 40px !important;
}

.status--listing.stacked {
  position: relative;
  top: 0;
  left: 0;
}

.status--modal {
  width: 50px;
  height: 50px;
  background-size: 50px 50px !important;
}

.status--wants {
  margin-right: 10px;
}

.status--watchlist {
  margin-right: 10px;
}

.status--exclusive {
  background: url("../assets/public/images/exclusive-badge.svg");
  background-repeat: no-repeat;
  background-position: center center;
  right: -14px;
  top: -14px;
}

.status--exclusive:after {
  content: "e";
  font-style: normal;
  color: #fff;
}

.status--active {
  background-color: #8BC53F;
}

.status--active:after {
  content: "a";
  color: #fff;
}

.status--contract {
  background-color: #29ABE2;
}

.status--contract:after {
  content: "c";
  color: #fff;
}

.status--pending {
  background-color: #FFD115;
}

.status--pending:after {
  content: "p";
  color: #fff;
}

.status--sold {
  background-color: #FF1D4E;
  color: #fff;
}

.status--sold:after {
  content: "s";
  color: #fff;
}

.status--expired {
  background-color: #949BAF !important;
  color: #fff;
}

.status--purgatory {
  background-color: #343a4c;
  color: #fff;
}

.status--purgatory.image {
  background-color: transparent;
  margin-right: 20px;
}

.status--withdrawn {
  background-color: #662D91;
}

.status--withdrawn:after {
  content: "w";
  color: #fff;
}

.status--exclusive-gradient {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
  color: #fff;
  border: none;
}

.exclusive-gradient {
  background: -ms-linear-gradient(-45deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967' ,GradientType=0)";
  background: linear-gradient(135deg, #ae8625 0%, #c2a340 4.23%, #d9c460 10.12%, #e9dc77 15.75%, #f4ea85 20.97%, #f7ef8a 25.37%, #e9d671 36.58%, #d8b752 52.43%, #d2ac47 61.36%, #edc967 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AE8625', endColorstr='#EDC967', GradientType=1);
  color: #fff;
  border: none;
}

.status--grey {
  background-color: #949BAF;
  color: #fff;
}

.status--green {
  background-color: #8BC53F;
  color: #fff;
}

.green {
  background-color: #8BC53F;
}

.status--blue {
  background-color: #29ABE2;
  color: #fff;
}

.blue {
  background-color: #29ABE2;
}

.status--orange {
  background-color: #FFD115;
  color: #fff;
}

.orange {
  background-color: #FFD115;
}

.status--red {
  background-color: #FF1D4E;
  color: #fff;
}

.red {
  background-color: #FF1D4E;
}

.status--expired {
  background-color: #949BAF !important;
  color: #fff;
}

.expired {
  background-color: #949BAF !important;
}

.draft {
  background-color: #eff0f8 !important;
}

.status--withdrawn {
  background-color: #662D91;
  color: #fff;
}

.withdrawn {
  background-color: #662D91;
}

.document-status__icon {
  width: 26px;
  height: 26px;
}

.document-status svg {
  width: 26px;
  height: 26px;
}

.listing-meta__container {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  right: 40px;
  bottom: 57px;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 20;
}

.chat__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #131a25;
  transition: all 0.6s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
}

.chat__overlay.enabled {
  transition: all 0.6s ease-in-out;
  visibility: visible;
  opacity: 0.8;
}

.chat__bubble,
.chat__bubble--agent,
.chat__bubble--reply {
  width: 280px;
  height: auto;
  padding: 20px;
  border: 1px solid #ff1d4e;
  border-radius: 3px;
  transition: all 0.6s ease-in-out;
}

.chat__bubble--agent {
  background-color: #ff1d4e;
  color: #fff;
  margin: 5px 0;
}

.chat__bubble--reply {
  background-color: #fff;
  color: #131a25;
  border-color: #131a25;
  border-radius: 5px;
  margin: 5px 0;
}

.chat__text {
  display: block;
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.chat__button,
.chat__button--reply {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 30px;
  border-radius: 5px;
}

.chat__button--reply {
  background-size: #131a25;
}

.chat__agent {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.chat__agency {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}

.chat__button,
.chat__button--reply {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background-color: #131a25;
  border-radius: 5px;
  padding: 0 32px;
}

.chat__button:hover,
.chat__button--reply:hover {
  color: #131a25;
  background-color: #fff;
}

/* TODO: Temporary chat bubble styles */
.listing.enabled .chat {
  transition: all 0.6s ease-in-out;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 767.98px) {

  .agent-listing__item,
  .wants__item--tags {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
  }

  .agent-listing__item .agent-listing__thumbnail {
    width: 100%;
  }

  .agent-listing__item .agent-listing__information {
    margin: 10px 0;
  }

  .agent-listing__item .agent-listing__information .agent-listing__title {
    margin-bottom: 10px;
  }

  .agent-listing__item .agent-listing__information .agent-listing__layout--horizontal {
    flex-wrap: wrap;
  }

  .agent-listing__item .agent-listing__information .agent-listing__layout--horizontal .agent-listing__details {
    max-width: 100%;
    margin-top: 10px;
  }

  .agent-listing__item .agent-listing__view {
    margin-left: auto;
  }

  .agent-listing__item .agent-listing__view a {
    font-size: 16px;
  }

  .wants__item--tags .wants__property {
    margin: 15px 0;
  }

  .wants__item--tags .wants__property .wants__name {
    font-size: 16px;
  }

  .wants__item--tags .age {
    width: 120px;
    height: 50px;
    border-radius: 40px;
  }

  .wants__item--tags .age .age__label {
    margin-right: 10px;
  }

  .wants__item--tags .age .age__number {
    width: 30px;
    height: 30px;
    font-size: 13px;
    line-height: 29px;
  }

  .wants__item--tags .wants__details {
    margin-left: auto;
    margin-right: 0;
  }

  .wants__item--tags .wants__details a {
    font-size: 16px;
  }

  .agent-listing .header-pagination__interest {
    width: 60%;
  }

  .agent-listing .header-pagination__interest .property-type__label {
    margin-bottom: 0;
  }

  .agent-listing .header-pagination__interest .property-type__label .label-text {
    font-size: 12px;
  }

  .agent-listing .header-pagination__select .header-pagination__current {
    font-size: 12px;
  }

  .agent-listing .header-pagination__select .header-pagination__label {
    margin-bottom: 0;
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {

  .wants .wants__item,
  .wants .wants__item--tags,
  .wants .wants__item--single {
    display: flex;
    flex-wrap: wrap;
    margin-left: 16px;
    margin-right: 16px;
  }

  .wants .wants__item .wants__title,
  .wants .wants__item--tags .wants__title,
  .wants .wants__item--single .wants__title {
    padding: 0;
    margin-bottom: 20px;
    margin-right: auto;
  }

  .wants .wants__item .wants__title .wants__link,
  .wants .wants__item--tags .wants__title .wants__link,
  .wants .wants__item--single .wants__title .wants__link {
    font-size: 18px;
  }

  .wants .wants__item .match,
  .wants .wants__item--tags .match,
  .wants .wants__item--single .match {
    height: 60px;
    width: 100%;
    margin: 20px 0;
  }

  .wants .wants__item .match .match__label,
  .wants .wants__item--tags .match .match__label,
  .wants .wants__item--single .match .match__label {
    font-size: 12px;
  }

  .wants .wants__item .match .match__percentage,
  .wants .wants__item--tags .match .match__percentage,
  .wants .wants__item--single .match .match__percentage {
    font-size: 18px;
  }

  .wants .wants__item .age,
  .wants .wants__item--tags .age,
  .wants .wants__item--single .age {
    width: 130px;
    height: 50px;
  }

  .wants .wants__item .age .age__label,
  .wants .wants__item--tags .age .age__label,
  .wants .wants__item--single .age .age__label {
    font-size: 13px;
    margin-right: 10px;
  }

  .wants .wants__item .age .age__number,
  .wants .wants__item--tags .age .age__number,
  .wants .wants__item--single .age .age__number {
    width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 31px;
  }

  .wants .wants__item .wants__details,
  .wants .wants__item--tags .wants__details,
  .wants .wants__item--single .wants__details {
    margin-left: auto;
    margin-right: 0;
  }

  .wants .wants__item .wants__details a,
  .wants .wants__item--tags .wants__details a,
  .wants .wants__item--single .wants__details a {
    font-size: 16px;
  }

  .sub-nav__navigation {
    height: auto;
    width: 100%;
  }

  .sub-nav__navigation .sub-nav__settings {
    justify-content: center;
  }

  .sub-nav__navigation .sub-nav__filter {
    position: relative;
    border-right: 0;
    border-top: 1px solid #ced2dc;
  }

  .sub-nav__navigation .sub-nav__filter .filter__item {
    position: initial;
  }

  .sub-nav__navigation .sub-nav__filter .filter__item:first-child {
    border-left: 0;
  }

  .sub-nav__navigation .sub-nav__filter .filter__item .filter__item__label {
    font-size: 12px;
  }

  .sub-nav__navigation .sub-nav__filter .filter__item .filter__item__label svg {
    width: 8px;
    margin-left: 0;
  }

  .sub-nav__navigation .sub-nav__filter .filter__item .dropdown-menu.active,
  .sub-nav__navigation .sub-nav__filter .filter__item .dropdown-public .active.dropdown-menu--large,
  .dropdown-public .sub-nav__navigation .sub-nav__filter .filter__item .active.dropdown-menu--large {
    display: block;
    left: 0;
    margin: 0;
    width: 100%;
    padding: 20px;
  }

  .sub-nav__navigation .sub-nav__filter .filter__item .dropdown-menu.active .form-check.form-check-inline,
  .sub-nav__navigation .sub-nav__filter .filter__item .dropdown-public .active.dropdown-menu--large .form-check.form-check-inline,
  .dropdown-public .sub-nav__navigation .sub-nav__filter .filter__item .active.dropdown-menu--large .form-check.form-check-inline {
    margin: 0;
  }

  .header-pagination {
    flex-wrap: wrap;
    margin: 10px 0;
  }

  .header-pagination .header-pagination__location {
    text-align: right;
    font-size: 12px;
    padding: 0 16px;
  }

  .header-pagination .header-pagination__select {
    font-size: 12px;
    padding: 0 16px !important;
  }

  .header-pagination .header-pagination__select .header-pagination__current {
    margin-right: auto;
  }

  .header-pagination .header-pagination__select .header-pagination__label {
    margin-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .sub-nav__breadcrumb-container .row>.sub-nav__return {
    width: 80%;
  }

  .sub-nav__breadcrumb-container .row>.sub-nav__pagination {
    width: 20%;
  }

  .wants .wants__item--single {
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .wants .wants__item--single .share,
  .wants .wants__item--single .share--overlay {
    margin-left: auto;
  }

  .wants .result .result__container,
  .wants .result .result__container--no-border {
    padding: 20px;
  }

  .wants .result .result__container .result__description .result__information,
  .wants .result .result__container--no-border .result__description .result__information {
    font-size: 14px;
  }

  .wants .result .result__container .result__details,
  .wants .result .result__container--no-border .result__details,
  .wants .result .result__container .result__details--properties,
  .wants .result .result__container--no-border .result__details--properties {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 0;
  }

  .wants .result .result__container .result__details .details__map,
  .wants .result .result__container--no-border .result__details .details__map,
  .wants .result .result__container .result__details--properties .details__map,
  .wants .result .result__container--no-border .result__details--properties .details__map {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
  }

  .wants .result .result__container .result__details .details__grid,
  .wants .result .result__container--no-border .result__details .details__grid,
  .wants .result .result__container .result__details--properties .details__grid,
  .wants .result .result__container--no-border .result__details--properties .details__grid {
    width: 47%;
    margin-bottom: 20px;
  }

  .wants .result .result__container .result__details .details__grid .details__data,
  .wants .result .result__container--no-border .result__details .details__grid .details__data,
  .wants .result .result__container .result__details--properties .details__grid .details__data,
  .wants .result .result__container--no-border .result__details--properties .details__grid .details__data {
    font-size: 18px;
  }

  .wants .message .message__container,
  .wants .message--properties .message__container,
  .wants .message .message__container--properties,
  .wants .message--properties .message__container--properties {
    padding: 20px;
  }

  .wants .message .message__container .message__header,
  .wants .message--properties .message__container .message__header,
  .wants .message .message__container--properties .message__header,
  .wants .message--properties .message__container--properties .message__header {
    width: 100%;
  }

  .wants .message .message__container .message__header .message__subheading,
  .wants .message--properties .message__container .message__header .message__subheading,
  .wants .message .message__container--properties .message__header .message__subheading,
  .wants .message--properties .message__container--properties .message__header .message__subheading {
    font-size: 14px;
  }

  .wants .message .message__container form li,
  .wants .message--properties .message__container form li,
  .wants .message .message__container--properties form li,
  .wants .message--properties .message__container--properties form li {
    float: none;
    margin-right: 0 !important;
  }

  .wants .message .message__container form li.checkboxes-wrapper ul,
  .wants .message--properties .message__container form li.checkboxes-wrapper ul,
  .wants .message .message__container--properties form li.checkboxes-wrapper ul,
  .wants .message--properties .message__container--properties form li.checkboxes-wrapper ul {
    flex-wrap: wrap;
  }

  .wants .message .message__container form li.checkboxes-wrapper ul li:not(:last-child),
  .wants .message--properties .message__container form li.checkboxes-wrapper ul li:not(:last-child),
  .wants .message .message__container--properties form li.checkboxes-wrapper ul li:not(:last-child),
  .wants .message--properties .message__container--properties form li.checkboxes-wrapper ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .wants .message .message__container form li input,
  .wants .message--properties .message__container form li input,
  .wants .message .message__container--properties form li input,
  .wants .message--properties .message__container--properties form li input {
    width: 100%;
  }

  .wants .row.no-gutters .col-md-12.no-gutters {
    padding: 0 16px;
  }

  .wants .row.no-gutters .col-md-12.no-gutters .cta__container {
    padding: 20px;
  }

  .wants .row.no-gutters .col-md-12.no-gutters .cta__container .cta__heading {
    font-size: 25px;
    line-height: normal;
  }

  .wants .row.no-gutters .col-md-12.no-gutters .cta__container .cta__subheading {
    font-size: 18px;
    line-height: normal;
  }

  .wants .row.no-gutters .col-md-12.no-gutters .cta__container .cta__button {
    line-height: normal;
  }

  .wants .row.no-gutters .col-md-12.no-gutters .cta__container .cta__button a {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {

  body.page-id-1513 .terms-cntnr h1,
  body.page-id-1479 .terms-cntnr h1 {
    font-size: 35px;
  }

  body.page-id-1513 .terms-cntnr p,
  body.page-id-1479 .terms-cntnr p {
    word-break: break-word;
    font-size: 16px !important;
  }

  .result__description {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .single-listing.single .post-title {
    position: initial;
    padding-top: 20px !important;
  }

  .single-listing.single .post-title .col-12 {
    padding: 0;
  }

  .single-listing.single .post-title .col-12 .post-title-header {
    flex-wrap: wrap;
  }

  .single-listing.single .post-title .col-12 .post-title-header .post-title-header_left label {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
  }

  .single-listing.single .post-title .col-12 .post-title-header .listing-price {
    font-size: 18px;
    font-weight: 600;
  }

  .single-listing.single .post-content .kelcey-row .left-col {
    margin-bottom: 0;
  }

  .single-listing.single .post-content .kelcey-row .square-col.map {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .single-listing.single .post-content .kelcey-row .square-col.info-listing {
    padding: 0;
  }

  .single-listing.single .post-content .listing-services-wrap .blob:first-child,
  .single-listing.single .post-content .listing-services-wrap .blob:nth-child(2),
  .single-listing.single .post-content .listing-services-wrap .blob:nth-child(3) {
    margin-bottom: 10px;
  }

  .single-listing.single .listing-text.arch-listing-row-one {
    padding: 0;
  }

  .single-listing.single .listing-text.arch-listing-row-one p {
    font-size: 16px !important;
  }

  .single-listing.single .listing-text.arch-listing-row-one .col-10 {
    padding: 0;
  }

  .single-listing.single .arch-listing-row-one {
    padding: 0;
  }

  .single-listing.single .arch-listing-row-one .inline-b.with-spacing.cf {
    width: 47%;
  }

  .single-listing.single .arch-listing-row-one .col-4,
  .single-listing.single .arch-listing-row-one .col-6 {
    padding: 0;
  }

  .single-listing.single .arch-listing-row-one .alert.red {
    padding: 0;
    margin-bottom: 0;
  }

  .single-listing.single .arch-listing-row-one .card-section,
  .single-listing.single .arch-listing-row-one #dashboard .card .card-section--header,
  #dashboard .card .single-listing.single .arch-listing-row-one .card-section--header {
    padding: 20px;
  }

  .single-listing.single .agent-footer .agent-info {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single-listing.single .agent-footer .agent-info .agent-info_image {
    flex: 0 0 85px;
    max-width: 85px;
    height: 85px;
  }

  .single-listing.single .agent-footer .agent-info .agent-info_name p {
    margin-top: 0;
  }

  .single-listing.single .agent-footer .agent-info .agent-info_rate {
    margin: 10px 0px;
  }

  .single-listing.single .agent-footer .agent-info .agent-info_reviews-number .agent-reviews_icon {
    width: 20px;
    height: 20px;
  }

  .single-listing.single .agent-footer .agent-info .agent-info_reviews a {
    font-size: 14px;
  }

  .single-listing.single .agent-footer .agent-contacts {
    margin-top: 20px;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }

  .single-listing.single .agent-footer .agent-contacts ul {
    display: block;
  }

  .single-listing.single .agent-footer .agent-contacts ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .single-listing.single .arch-second-row .details {
    justify-content: center;
  }

  .single-listing.single .arch-second-row .details .found-listings {
    margin: 0;
  }

  .single-listing.single .arch-second-row .details .checkbox-group.inline-block {
    top: 134px;
    left: 16px;
  }
}

@media (max-width: 575.98px) {
  .agentInfoStep1.searchPopup {
    max-width: 100%;
  }

  .agentInfoStep1.searchPopup .modal_input_search_name {
    font-size: 14px;
  }

  .agentInfoStep1.searchPopup .border-style {
    padding: 10px;
  }

  .agentInfoStep1.searchPopup .border-style>div {
    padding: 0;
  }

  .agentInfoStep1.searchPopup .border-style .col-md-6.bdr.bl {
    width: 60%;
  }

  .agentInfoStep1.searchPopup .border-style .col-md-6.bdr {
    width: 40%;
  }

  .agentInfoStep1.searchPopup h5 {
    font-size: 16px;
  }

  .agentInfoStep1.searchPopup h3 {
    padding-bottom: 0;
  }

  .agentInfoStep1.searchPopup .checkbox-layout button {
    width: 100% !important;
  }
}

@media (max-width: 575.98px) {
  #notification-popup .ns-box-inner p {
    font-size: 14px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .data__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .data__section {
    width: 48%;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {

  html .single .container-fluid.listing-details,
  html .single .listing-details.container-sm,
  html .single .single-listing-view__modal .container-sm.listing-details--vcenter,
  .single-listing-view__modal html .single .container-sm.listing-details--vcenter,
  html .single .listing-details.container-md,
  html .single .single-listing-view__modal .container-md.listing-details--vcenter,
  .single-listing-view__modal html .single .container-md.listing-details--vcenter,
  html .single .listing-details.container-lg,
  html .single .single-listing-view__modal .container-lg.listing-details--vcenter,
  .single-listing-view__modal html .single .container-lg.listing-details--vcenter,
  html .single .listing-details.container-xl,
  html .single .single-listing-view__modal .container-xl.listing-details--vcenter,
  .single-listing-view__modal html .single .container-xl.listing-details--vcenter,
  html .single .single-listing-view__modal .container-fluid.listing-details--vcenter,
  .single-listing-view__modal html .single .container-fluid.listing-details--vcenter {
    padding: 0 16px !important;
  }

  .wants .result__details,
  .wants .result__details--properties {
    display: flex;
    flex-wrap: wrap;
  }

  .wants .match {
    width: 350px;
  }

  .wants .message input:not([type="checkbox"]),
  .wants .message--properties input:not([type="checkbox"]) {
    width: 309px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {

  .wants .result__details,
  .wants .result__details--properties {
    grid-template-columns: 400px repeat(auto-fit, 140px);
  }
}

.save-search__button,
.save-search__button--disabled,
.save-search__button--not-logged {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 50px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
}

.save-search__button--disabled {
  opacity: 0.2;
  pointer-events: none;
}

.save-search__button:hover,
.save-search__button--disabled:hover,
.save-search__button--not-logged:hover {
  background-color: #fff;
}

.save-search__button:hover .save-search__label,
.save-search__button--disabled:hover .save-search__label,
.save-search__button--not-logged:hover .save-search__label {
  color: #131a25;
}

.save-search__button:hover svg path,
.save-search__button--disabled:hover svg path,
.save-search__button--not-logged:hover svg path,
.save-search__button:hover svg polygon,
.save-search__button--disabled:hover svg polygon,
.save-search__button--not-logged:hover svg polygon {
  fill: #131a25;
}

.save-search__label {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-left: 20px;
}

.sub-nav__pagination__page,
.sub-nav__pagination__page--single {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 50px;
  border-color: #ced2dc;
  border-style: solid;
  border-width: 0;
}

.sub-nav__pagination__page--single {
  border-width: 0 1px 0 1px;
}

.radio-custom-group {
  margin: auto;
  text-align: center;
  margin: 50px 0 20px;
  padding: 0;
}

.radio-custom-group label {
  position: relative;
  width: 206px;
  text-align: left;
  cursor: pointer;
  margin-bottom: 30px;
}

.radio-custom-group label input {
  display: none;
}

.radio-custom-group label input:checked~.custom-radio:after {
  display: block;
  background-color: #1b75bb;
}

.radio-custom-group label .custom-radio {
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid #ced2dc;
}

.radio-custom-group label .custom-radio:after {
  content: "";
  position: absolute;
  display: none;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}

.radio-custom-group label .label-text {
  font-size: 16px;
  font-weight: 600;
  color: #131a25;
  margin-right: 20px;
  padding-left: 30px;
  white-space: nowrap;
}

/* Temporary Styles */
.modal {
  z-index: 999999 !important;
}

/* TEMP STYLES PRIOR TO CLIENT VIEWING */
.custom-file>.custom-file-label {
  height: 46px;
}

.page-header h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-header h2 img {
  margin-right: 20px;
}

@media (max-width: 575.98px) {
  .page-header h2 img {
    width: 26px;
    height: 26px;
    font-size: 16px;
    margin-right: 15px;
  }
}

.page-header .col {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 575.98px) {
  .page-header .col {
    flex-direction: column;
    padding: 0;
  }

  .page-header .col .page-controls {
    margin: 0 !important;
    margin-top: 30px !important;
  }

  .page-header .col .page-controls a {
    max-width: 100% !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .page-header .col .page-controls a:before {
    content: "";
    background: url("/wp-content/themes/premise/assets/public/images/add-icon.svg");
    width: 19px;
    height: 19px;
    margin-right: 10px;
  }

  .page-header .col .dropdown-list.dropdown-list-ul__nopad.dropdown-list__capitalize {
    left: 98px;
    top: 38px;
  }
}

@media (max-width: 575.98px) {
  #profile-listings .page-header {
    padding: 30px 17px !important;
  }

  #profile-listings .page-header .container-fluid.constrained,
  #profile-listings .page-header .constrained.container-sm,
  #profile-listings .page-header .constrained.container-md,
  #profile-listings .page-header .constrained.container-lg,
  #profile-listings .page-header .constrained.container-xl {
    padding: 0;
  }

  #profile-listings .page-header .container-fluid.constrained .page-controls a,
  #profile-listings .page-header .constrained.container-sm .page-controls a,
  #profile-listings .page-header .constrained.container-md .page-controls a,
  #profile-listings .page-header .constrained.container-lg .page-controls a,
  #profile-listings .page-header .constrained.container-xl .page-controls a {
    font-size: 14px !important;
  }

  #profile-listings .page-content .container-fluid,
  #profile-listings .page-content .container-sm,
  #profile-listings .page-content .container-md,
  #profile-listings .page-content .container-lg,
  #profile-listings .page-content .container-xl {
    padding: 0;
  }

  #profile-listings .page-content .container-fluid .my-listing .top-listing,
  #profile-listings .page-content .container-sm .my-listing .top-listing,
  #profile-listings .page-content .container-md .my-listing .top-listing,
  #profile-listings .page-content .container-lg .my-listing .top-listing,
  #profile-listings .page-content .container-xl .my-listing .top-listing {
    padding: 0 16px !important;
  }

  #profile-listings .page-content .container-fluid .my-listing #listing-post .scoreBoard,
  #profile-listings .page-content .container-sm .my-listing #listing-post .scoreBoard,
  #profile-listings .page-content .container-md .my-listing #listing-post .scoreBoard,
  #profile-listings .page-content .container-lg .my-listing #listing-post .scoreBoard,
  #profile-listings .page-content .container-xl .my-listing #listing-post .scoreBoard {
    margin-top: 0 !important;
  }

  #profile-listings .page-content .container-fluid .my-listing #listing-post .scoreBoard .right,
  #profile-listings .page-content .container-sm .my-listing #listing-post .scoreBoard .right,
  #profile-listings .page-content .container-md .my-listing #listing-post .scoreBoard .right,
  #profile-listings .page-content .container-lg .my-listing #listing-post .scoreBoard .right,
  #profile-listings .page-content .container-xl .my-listing #listing-post .scoreBoard .right {
    padding: 0;
    letter-spacing: -0.18px;
  }

  #profile-listings .page-content .container-fluid .my-listing>div .row.pt-4:nth-child(2),
  #profile-listings .page-content .container-sm .my-listing>div .row.pt-4:nth-child(2),
  #profile-listings .page-content .container-md .my-listing>div .row.pt-4:nth-child(2),
  #profile-listings .page-content .container-lg .my-listing>div .row.pt-4:nth-child(2),
  #profile-listings .page-content .container-xl .my-listing>div .row.pt-4:nth-child(2) {
    position: absolute;
  }

  #profile-listings .filter-lists .dropdown-list {
    right: 0;
  }
}

/*
.listing-watchlist .listing-count {
    line-height: 30px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
    padding-left: 30px;

    .select2 {
        float: right !important;
        min-width: 70px !important;
        width: 70px !important;
        height: 30px;
        line-height: 30px;
    }

    label {
        margin-right: 10px;
    }    
}
*/
.listing-header .reports label {
  font-size: 26px !important;
  font-weight: 600 !important;
}

@media (max-width: 575.98px) {
  #myHeader .mobile-menu-trigger .bar {
    background: #fff !important;
  }

  .profile .dropdown-mobile {
    top: 50px;
  }
}

.page-template-single-new-want-search .search-pls-type,
.page-template-single-new-want-search .search-pls-type-label {
  display: none;
}

.page-template-single-new-want-search .acf-field-5d78c61aa8ea4 {
  margin-top: 0 !important;
}

@media (max-width: 575.98px) {
  .wants-list__section {
    overflow-y: auto;
  }
}

@media (max-width: 575.98px) {
  .wants-list__scroll {
    width: -moz-max-content;
    width: max-content;
  }
}

#acf-field_582abfbfb3208.select2-hidden-accessible.select2-container--disabled .select2-selection {
  background-color: #f0f0f0;
  color: #888;
  cursor: not-allowed !important;
  border-color: #ccc;
}

/* Style for the disabled arrow */
#acf-field_582abfbfb3208.select2-hidden-accessible.select2-container--disabled .select2-selection__arrow {
  background-color: #f0f0f0;
  /* Change the arrow background color to grey */
  border-color: #ccc;
  /* Change the arrow border color to a light grey */
  cursor: not-allowed !important;
  /* Change the cursor of the arrow */
}

.select2-container--disabled #select2-acf-field_582abfbfb3208-container {
  opacity: 0.25;
}

.pls-type__container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  gap: 20px;
}

.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pace-inactive {
  display: none;
}

.pace .pace-progress {
  background: #ff1d4e;
  position: fixed;
  z-index: 2000;
  top: unset;
  bottom: 0 !important;
  right: 100%;
  width: 100%;
  height: 4px;
}

.place .pace-activity {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1999;
}

.acf-field-60e57ad8706ad,
#cso-radio-btn {
  margin-bottom: 0 !important;
}

.select-clear {
  padding: 0 !important;
}

.truncated-title {
  display: block;
  max-width: 18.5vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .truncated-title {
    max-width: calc(100vw - 20%);
  }
}

.document-missing {
  background-color: rgba(243, 59, 40, 0.15) !important;
}

.document-missing .fileuploader-thumbnails-input-inner {
  background-color: #fff !important;
  border: 2px dashed #f33b28 !important;
}

.document-missing .fileuploader-thumbnails-input-inner i {
  color: #f33b28 !important;
}

.document-missing .status-indicator {
  background-color: #f33b28 !important;
}

/*
.container {
	width: 100%;
	padding-right: 20px;
	padding-left: 20px;
	margin-right: auto;
	margin-left: auto;
}
*/
.bold {
  margin-bottom: 16px;
  font-weight: 800;
  font-size: 17px;
}

.small {
  padding: 0px 0 4px 0 !important;
}

.smallp {
  font-size: 12px !important;
}

.row {
  margin: 0px !important;
}

.mobile-menu-trigger,
.mobile-public-nav,
.mobile-overlay {
  display: none;
}

.side-row {
  position: relative;
}

.red {
  color: #fff !important;
  background: #ff1d4e !important;
  border-color: #ff1d4e !important;
}

.left-space {
  padding-left: 0px !important;
}

.str-svg,
.str-svg--market-watch {
  padding: 0px 45px 0px 0px !important;
}

.str-svg--market-watch {
  padding: 0 !important;
}

p.light {
  font-size: 12px !important;
}

.del-icoo,
.del-ico {
  position: relative;
}

.del-ico i,
.del-icoo i {
  display: flex;
  transition: ease-in-out 200ms;
}

.ui-datepicker td span,
.ui-datepicker td span,
.ui-datepicker td a {
  margin: 0px;
  height: auto;
}

.ui-datepicker-month {
  margin-right: 5px;
}

.ui-datepicker-year {
  margin-left: 5px;
}

.single-listing .checkk-box span {
  font-size: 16px;
  font-weight: 600;
}

.list-count {
  margin-left: 5px;
  margin-right: 6px;
  color: #ff1d4e !important;
  font-size: 16px;
}

.list-count a {
  margin-left: 5px;
  margin-right: 6px;
  color: #ff1d4e !important;
  font-size: 16px;
}

.listing-nav ul,
.listing-tags {
  padding-left: 0px !important;
}

.purple {
  background: #662D91 !important;
}

.prev_link,
.next_link {
  display: none;
}

.pointer,
.state-label,
.listings-label,
#price {
  cursor: pointer;
}

input[type="checkbox"]:not(.woocommerce-input-wrapper input[type="checkbox"]):not(.c_detailsCheck):not(.currentRowCheckbox) {
  position: absolute;
  right: 9000px;
}

.c-text {
  text-transform: uppercase;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 14px;
}

.btn-default {
  background: white !important;
  color: #0e0e0e !important;
  border: 1px solid #e0e0e0 !important;
  font-size: 12px !important;
}

.btn-default i {
  padding-right: 5px;
}

.btn-success {
  color: #fff;
  background-color: #8bc43f;
  border-color: #8bc43f;
}

/*
.pinkRound {
	width: 50px;
	height: 50px;
	background: #ff1d4d !important;
	border-radius: 50%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}
*/
.hr-light-grey {
  border: none;
  height: 1px !important;
  background-color: #ced2dc;
}

.back-gray {
  background-color: #eff0f8;
}

.terms-cntnr h1 {
  display: flex;
  justify-content: center;
  font-size: 36px;
  font-weight: 800;
  padding: 80px 0 50px !important;
}

.not-clickable {
  cursor: default !important;
}

.agent .view-modal {
  cursor: pointer;
}

.agent .view-modal .item__title:hover {
  color: #25a9e0 !important;
}

.tabs-listing-section {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 120px;
  background: #fff;
  border-top: 1px solid #ced2dc;
  border-bottom: 1px solid #ced2dc;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .tabs-listing-section {
    overflow: hidden;
  }
}

@media (max-width: 991.98px) {
  .tabs-listing-section {
    display: none;
  }
}

.tabs-listing-section .main-nav__link {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
  margin: 0 35px;
  padding-bottom: 30px;
}

.tabs-listing-section ul {
  display: flex;
  list-style-type: none;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .tabs-listing-section ul {
    width: -moz-max-content;
    width: max-content;
  }
}

.tabs-listing-section ul li {
  position: relative;
  margin: 0 35px;
}

.tabs-listing-section ul li.active:after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  border-bottom: 4px solid #ff1d4e;
  margin-top: -4px;
}

.dashboard {
  background: #eff0f8;
  padding: 50px 0;
}

.dashboard-column:nth-child(odd) {
  padding-right: 10px !important;
}

@media (max-width: 767.98px) {
  .dashboard-column:nth-child(odd) {
    padding-right: 0 !important;
  }
}

.dashboard-column:nth-child(even) {
  padding-left: 10px !important;
}

@media (max-width: 767.98px) {
  .dashboard-column:nth-child(even) {
    padding-left: 0 !important;
  }
}

.dashboard-section {
  min-height: 100px;
  height: 400px;
  background-color: #fff;
  overflow: hidden;
  border: 1px solid #ced2dc;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .dashboard-section {
    height: auto;
  }

  .dashboard-section .dashboard-style {
    justify-content: space-between;
  }

  .dashboard-section .dashboard-style .col-md-11 {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .dashboard-section .dashboard-style .col-md-1 {
    flex: 0 0 15%;
    max-width: 15%;
  }
}

@media (max-width: 767.98px) {
  .dashboard-section {
    height: auto;
  }

  .dashboard-section .col-md-1 {
    position: absolute;
    right: 15px;
    width: -moz-fit-content;
    width: fit-content;
  }

  .dashboard-section .col-md-11 .dash-txt--hello {
    float: none;
  }
}

.dashboard-section.active {
  height: 100px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
}

@media (max-width: 767.98px) {
  .dashboard-section.active {
    height: 150px;
  }
}

.dashboard-sections,
.dashboard-sections--bottom {
  min-height: 330px;
  background-color: #fff;
  border: 1px solid #ced2dc;
  border-radius: 10px;
  margin: 10px 0;
  padding: 40px;
}

.dashboard-sections--bottom {
  height: 400px;
}

@media (max-width: 991.98px) {
  .dashboard-sections--bottom {
    height: 400px;
  }
}

.dashboard__welcome--closed {
  max-width: 900px;
  font-weight: 600;
  line-height: 28.8px;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (max-width: 767.98px) {
  .dashboard__welcome--closed {
    display: none;
  }
}

.dashboard__welcome--closed.active {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.5s;
}

@media (max-width: 767.98px) {
  .dashboard__welcome--closed.active {
    display: block;
  }
}

.dashboard__intro {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  margin: 0;
  padding: 0 0 20px;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.3s;
}

.dashboard__intro.active {
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.dashboard_type {
  width: 100%;
  list-style-type: none;
}

.dashboard_type li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 640px;
  height: 80px;
  border: 1px solid #ced2dc;
  border-radius: 10px;
  margin: 0 0 20px;
  padding: 0 40px;
}

.dashboard_type li:last-child {
  margin: 0;
}

.dashboard_type span {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

.dash-txt,
.dash-txt--hello {
  display: inline-block;
  font-size: 24px;
  font-weight: 800;
  line-height: 28.8px;
  margin-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.dash-txt--hello {
  float: left;
  margin-right: 40px;
}

.market-watch__subheading {
  display: block;
  font-size: 12px;
  margin-bottom: 60px;
}

.view-all {
  font-size: 14px;
  font-weight: 600;
  color: #131a25;
}

.view-all a {
  text-decoration: underline;
  color: #131a25;
}

.show-hide .icon {
  display: flex;
  font-size: 16px;
  font-weight: 600 !important;
  line-height: 19.2px;
  transition: all 0.2s ease-in-out;
}

.show-hide .icon:after {
  position: relative;
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  margin-left: 5px;
  transform: rotate(180deg);
  transition: all 0.1s ease-in-out;
}

.show-hide .active.icon::after {
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}

.toggle {
  padding-top: 0;
}

.founder {
  display: flex;
  align-items: center;
  transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-delay: 0.2s;
}

.founder.active {
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.founder-image {
  width: 80px;
  height: 80px;
  border: 1px solid #eff0f8;
  border-radius: 50%;
  margin-right: 20px;
}

.founder h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.founder h4 {
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  line-height: 26px;
  margin-bottom: 0;
}

.market-check ul {
  list-style: none;
}

.market-check label {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.market-check .radio-inline {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.market-check .radio-inline input {
  margin-right: 15px;
}

.market-check .radio-inline input[type='radio']:checked:after {
  content: '';
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 40px;
  top: -4px;
  left: -2px;
  background-color: #65C8D0;
  visibility: visible;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px #ced2dc;
}

.notifications .switch,
.notifications .switch--large {
  width: 52px;
  height: 26px;
}

.notifications .switch .slider,
.notifications .switch--large .slider,
.notifications .switch .slider--large,
.notifications .switch--large .slider--large {
  background: #ced2dc;
}

.notifications .switch .slider:before,
.notifications .switch--large .slider:before,
.notifications .switch .slider--large:before,
.notifications .switch--large .slider--large:before {
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
}

.saved-search {
  min-height: 400px;
}

.saved-search ul {
  list-style-type: none;
}

.saved-search li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.saved-search li a {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.saved-search__text {
  width: 100%;
  text-align: left;
  flex-shrink: 2;
}

.saved-search .edit:before {
  display: none;
}

.saved-search .alert {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  min-width: 20px;
  flex-shrink: 0;
}

.saved-search .alert.red {
  background: #ff1d4e;
}

.watchlist li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #eff0f8;
  margin-bottom: 10px;
  padding-bottom: 10px !important;
}

.watchlist li a {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.watchlist__text {
  width: 100%;
  text-align: left;
  flex-shrink: 2;
}

.watchlist .box-want {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border-radius: 3px;
  flex-shrink: 0;
}

.watchlist .box-want.light-green {
  background-color: #8bc53f;
}

.watchlist .box-want.red {
  background-color: #ff1d4e;
}

.single-listings {
  margin-right: 10px;
  flex-shrink: 0;
}

.single-listings img,
.single-listings svg {
  width: 20px;
  height: 20px;
}

.justify-space-bewteen {
  display: flex;
  justify-content: space-between;
}

.page-id-83588 {
  background: #eff0f8;
}

#member .saved-search,
#public .saved-search {
  padding-bottom: 90px;
}

@media (max-width: 767.98px) {

  #member .saved-search,
  #public .saved-search {
    padding: 0;
  }
}

#member .saved-search__title,
#public .saved-search__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 28px;
  text-transform: uppercase;
}

#member .saved-search__title a,
#public .saved-search__title a {
  text-decoration: none;
}

@media (max-width: 767.98px) {

  #member .saved-search__title,
  #public .saved-search__title {
    font-size: 16px;
    line-height: normal;
  }
}

#member .saved-search-list,
#public .saved-search-list {
  max-width: 720px;
  margin: 0 auto;
}

#member .saved-search-list .pinkRound,
#public .saved-search-list .pinkRound {
  display: flex;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-size: 22px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
  background: #ff1d4e;
  border-radius: 20px;
}

@media (max-width: 767.98px) {

  #member .saved-search-list .pinkRound,
  #public .saved-search-list .pinkRound {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
    border-radius: 15px;
  }
}

#member .saved-search__sub-nav,
#public .saved-search__sub-nav {
  display: flex;
  max-width: 720px;
  height: 100px;
  margin: 0 auto;
}

#member .saved-search__sub-nav--left,
#public .saved-search__sub-nav--left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#member .saved-search__sub-nav--right,
#public .saved-search__sub-nav--right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#member .saved-search__sub-nav--right .listing-count,
#public .saved-search__sub-nav--right .listing-count {
  display: flex;
  align-items: center;
}

#member .saved-search__sub-nav--right .listing-count label,
#public .saved-search__sub-nav--right .listing-count label {
  margin-right: 20px;
}

#member .saved-search__sub-nav--right .select2-container,
#public .saved-search__sub-nav--right .select2-container {
  background: #fff;
}

#member .saved-search__item,
#public .saved-search__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 70px auto 90px;
  grid-template-areas: 'saved-search__header' 'save-search__body' 'saved-search__controls';
  background: #fff;
  border: 1px solid #ced2dc;
  border-top-left-radius: 0 !important;
}

@media (max-width: 767.98px) {

  #member .saved-search__item,
  #public .saved-search__item {
    display: block;
  }
}

#member .saved-search__header,
#public .saved-search__header {
  grid-area: saved-search__header;
  display: grid;
  grid-template-areas: 'saved-search__type saved-search__title saved-search__right';
  grid-template-columns: 50px 1fr auto;
  grid-template-rows: 50px;
  align-items: flex-start;
  -moz-column-gap: 20px;
  column-gap: 20px;
  padding: 30px;
}

@media (max-width: 767.98px) {

  #member .saved-search__header,
  #public .saved-search__header {
    grid-template-columns: 30px 1fr 30px;
    padding: 20px;
  }
}

#member .saved-search__type,
#public .saved-search__type {
  margin-bottom: 20px;
}

#member .saved-search__type object,
#member .saved-search__type svg,
#public .saved-search__type object,
#public .saved-search__type svg {
  width: 50px;
  height: 50px;
}

@media (max-width: 767.98px) {

  #member .saved-search__type object,
  #member .saved-search__type svg,
  #public .saved-search__type object,
  #public .saved-search__type svg {
    width: 30px;
    height: 30px;
  }
}

#member .saved-search__body,
#public .saved-search__body {
  display: flex;
  grid-template-rows: 60px;
  font-size: 16px;
  font-weight: 800;
  border-bottom: 1px solid #ced2dc;
  padding: 30px;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  #member .saved-search__body,
  #public .saved-search__body {
    margin-top: 30px;
  }
}

@media (max-width: 767.98px) {

  #member .saved-search__body,
  #public .saved-search__body {
    padding: 20px;
  }
}

#member .saved-search__label,
#public .saved-search__label {
  font-weight: 600;
}

#member .saved-search__label:not(:first-child),
#public .saved-search__label:not(:first-child) {
  margin-left: 20px;
}

#member .saved-search__metadata,
#public .saved-search__metadata {
  margin-top: 20px;
}

#member .saved-search__controls,
#public .saved-search__controls {
  display: flex;
  padding: 20px 30px;
}

@media (max-width: 767.98px) {

  #member .saved-search__controls,
  #public .saved-search__controls {
    justify-content: space-between;
    padding: 20px;
  }

  #member .saved-search__controls>div,
  #public .saved-search__controls>div {
    padding: 0;
  }

  #member .saved-search__controls .view-listing,
  #member .saved-search__controls a,
  #member .saved-search__controls div,
  #public .saved-search__controls .view-listing,
  #public .saved-search__controls a,
  #public .saved-search__controls div {
    font-size: 14px;
  }

  #member .saved-search__controls img,
  #public .saved-search__controls img {
    width: 15px;
  }
}

@media (max-width: 767.98px) {
  #public {
    padding: 0;
  }
}

.page-id-83510 .notifications {
  background: #eff0f8;
}

.notifications__container {
  max-width: 780px;
  background: #fff;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  margin: 50px auto;
  padding: 50px 40px;
}

.notifications__heading {
  font-size: 20px;
  font-weight: 800;
  text-transform: capitalize;
}

.notifications__list,
.notifications__list--wrap {
  list-style-type: none !important;
}

.notifications__list li,
.notifications__list--wrap li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border-bottom: 1px solid #ced2dc;
}

.notifications__list--wrap li {
  width: 100%;
  height: 80px;
  border: 1px solid #ced2dc;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 0 32px;
}

.notifications__list--wrap li:last-child {
  margin-bottom: 0;
}

.notifications__section {
  padding: 0;
  margin-bottom: 40px;
}

.notifications__section:last-child {
  margin-bottom: 0;
}

.notifications__section .col-form-label {
  margin-right: auto;
}

.notifications__section .field--add .form-control-plaintext {
  width: 340px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  margin-right: 20px;
  padding: 20px;
}

.notifications__section .notification-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  border-radius: 3px;
  padding: 0;
  margin: 0;
}

.notifications__section #saveNumberButton,
.notifications__section #saveEmailButton {
  width: 160px;
  height: 40px;
}

.notifications__group {
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.notifications__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 30px;
  font-size: 11px !important;
  font-weight: 600;
  border: 1px solid #ced2dc;
  border-radius: 3px;
}

.notifications__delete {
  height: 16px;
  margin-right: 10px;
  line-height: 16px;
  cursor: pointer;
}

.notifications-section {
  padding-top: 50px;
}

.notifications-section>.notification-style {
  justify-content: center;
}

.notifications-section .notification-style h2 {
  font-size: 20px;
  color: #131a25;
  font-weight: 800;
  padding: 0px 0 35px 0;
}

.notifications-section .notification-style p {
  padding-bottom: 25px;
}

.notifications-section .notification-style ul {
  width: 100%;
  padding: 0;
  margin: 0;
}

.notifications-section .notification-style ul li {
  border-bottom: 1px solid #ced2dc;
  list-style: none;
  padding: 10px 0 20px;
}

.notifications-section .notification-style .form-group {
  margin: 0;
  display: flex;
  align-items: center;
  padding-bottom: 35px;
}

.notifications-section .notification-style input {
  padding: 10px 20px;
  border: 2px solid #ced2dc;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}

.notifications-section .notification-style input:checked+.slider,
.notifications-section .notification-style input:checked+.slider--large {
  background-color: #8cc540;
}

.notifications-section .notification-style .slider.round,
.notifications-section .notification-style .round.slider--large {
  border-radius: 34px;
  border: 0;
}

.notifications-section .notification-style label {
  padding: 0;
  font-size: 16px;
  float: right;
}

.notifications-section .switch-checkbox-style {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 26px;
}

.notifications-section .notification-style .switch-checkbox-style input {
  opacity: 0;
  width: 0;
  height: 0;
}

.notifications-section .notification-style input[type="checkbox"] {
  position: absolute;
  right: 9000px;
}

.notifications-section .notification-style input:focus+.slider,
.notifications-section .notification-style input:focus+.slider--large {
  box-shadow: 0 0 1px #2196f3;
}

.notifications-section .notification-style input:checked+.slider:before,
.notifications-section .notification-style input:checked+.slider--large:before {
  transform: translateX(26px);
}

.notifications-section .notification-style .slider.round:before,
.notifications-section .notification-style .round.slider--large:before {
  border-radius: 50%;
}

.notifications-section .notification-style .slider:before,
.notifications-section .notification-style .slider--large:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
}

.notifications-section .notification-style .slider,
.notifications-section .notification-style .slider--large {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4f536c;
  transition: 0.4s;
}

.w-100 {
  width: 100%;
}

.notifications-section ul.notification_type li {
  border: 1px solid #ced2dc;
  border-radius: 10px;
  list-style: none;
  padding: 15px;
  margin-bottom: 15px;
}

@media (min-width: 768px) and (max-width: 991.98px) {

  .notification-style .col-content,
  .notification-style .page-content .middle-col .col-content--large,
  .page-content .middle-col .notification-style .col-content--large {
    margin: 0 16px !important;
  }

  .notification-style .scoreBoard>.row {
    width: 100%;
  }

  .notification-style .scoreBoard .switch-checkbox-style {
    margin: 0 10px 0 auto;
  }

  .notification-style .userEmails,
  .notification-style .userNumber {
    margin-top: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}

#public-profile.account {
  background: #eff0f8;
  padding: 50px 0;
}

@media (max-width: 991.98px) {
  #public-profile.account {
    padding: 50px 20px !important;
  }
}

#public-profile.account .account-section {
  background-color: #fff;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  padding: 50px 40px !important;
  transition: all 0.6s ease-in-out;
  max-width: 780px;
}

@media (max-width: 767.98px) {
  #public-profile.account .account-section {
    max-width: 100%;
    padding: 20px !important;
  }
}

#public-profile.account .account-section .img-err {
  margin: 0;
}

#public-profile.account .account-section form {
  padding: 0;
}

#public-profile.account .account-section form .acf-label {
  top: 0;
}

#public-profile.account .account-section form .acf-fields {
  margin-bottom: 50px;
}

#public-profile.account .account-section form .acf-fields>div {
  margin: 0;
  margin-bottom: 20px;
}

#public-profile.account .account-section form .acf-fields .fixed-width .acf-input {
  width: 500px;
  height: auto;
}

@media (max-width: 767.98px) {
  #public-profile.account .account-section form .acf-fields .fixed-width .acf-input {
    width: 60%;
  }
}

#public-profile.account .account-section form .acf-fields .fixed-width .acf-input input {
  border-radius: 5px;
  font-size: 16px;
  padding: 10px 20px 8px;
}

#public-profile.account .account-section form .acf-fields .fixed-width .acf-input input:-webkit-autofill,
#public-profile.account .account-section form .acf-fields .fixed-width .acf-input input:-webkit-autofill:hover,
#public-profile.account .account-section form .acf-fields .fixed-width .acf-input input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

#public-profile.account .account-section form .acf-fields>div[data-type="message"] {
  display: block;
}

#public-profile.account .account-section form .acf-fields>div[data-type="message"] .acf-label .label {
  line-height: 24px;
}

#public-profile.account .account-section form .acf-fields>div[data-type="between"] input {
  width: 230px;
}

@media (max-width: 767.98px) {
  #public-profile.account .account-section form .acf-fields>div[data-type="between"] input {
    width: 100%;
  }
}

#public-profile.account .account-section form .acf-fields>div[data-type="between"] span {
  width: 40px;
}

#public-profile.account .account-section #delete_account {
  position: relative;
}

#public-profile.account .account-section #delete_account .acf-field[data-type="message"] .acf-input {
  line-height: 26px;
  width: 90%;
  font-weight: 600;
  margin-top: 20px;
}

#public-profile.account .account-section #delete_account>div .acf-input input {
  width: 330px;
}

@media (max-width: 767.98px) {
  #public-profile.account .account-section #delete_account>div .acf-input input {
    width: 100%;
  }
}

#public-profile.account .account-section #delete_account>div .acf-input input::-moz-placeholder {
  color: #ced2dc;
}

#public-profile.account .account-section #delete_account>div .acf-input input::placeholder {
  color: #949baf;
}

#public-profile.account .account-section #delete_account .acf-form-submit {
  margin: 0;
  margin-left: 10px;
  position: absolute;
  width: 160px;
  right: 0;
  bottom: 0;
}

@media (max-width: 767.98px) {
  #public-profile.account .account-section #delete_account .acf-form-submit {
    position: initial;
    margin: 0;
    margin-top: -30px;
    width: 100%;
    margin-bottom: 50px;
  }
}

#public-profile.account .account-section #delete_account .acf-form-submit button {
  margin: 0;
  height: 40px;
  padding: 0;
  background: #ff1d4e;
}

#public-profile.account .account-section .col-content:last-child button,
#public-profile.account .account-section .page-content .middle-col .col-content--large:last-child button,
.page-content .middle-col #public-profile.account .account-section .col-content--large:last-child button {
  width: 340px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {

  #public-profile.account .account-section .col-content:last-child button,
  #public-profile.account .account-section .page-content .middle-col .col-content--large:last-child button,
  .page-content .middle-col #public-profile.account .account-section .col-content--large:last-child button {
    width: 100%;
  }
}

#public-profile.account .account-section #update_account .acf-field[data-name="user_username"] .acf-input .acf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

#public-profile.account .account-section #update_account .acf-field[data-name="user_username"] .acf-input .acf-input-wrap:after {
  content: '';
  background: url("../assets/public/images/lock.svg");
  width: 12px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
}

#expertModal.modal-expertModal .modal-content {
  border: 0;
}

#expertModal.modal-expertModal .modal-header button {
  position: absolute;
  right: -50px;
  top: 0px;
  padding: 0;
  margin: 0;
  float: none;
}

#expertModal.modal-expertModal .modal-header button span {
  background: url("../assets/public/images/close-pop-up.svg");
  font-size: 0;
  height: 17px;
  display: block;
  background-size: contain;
}

#expertModal.modal-expertModal .modal-body {
  padding: 40px !important;
  width: 700px;
}

#expertModal.modal-expertModal .modal-body .modal-title {
  margin-bottom: 30px !important;
  font-size: 24px;
}

#expertModal.modal-expertModal .modal-body ul {
  display: block;
  margin-bottom: 20px;
}

#expertModal.modal-expertModal .modal-body ul li {
  width: 100%;
  margin-bottom: 20px;
  float: none;
}

#expertModal.modal-expertModal .modal-body ul li .name_first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

#expertModal.modal-expertModal .modal-body ul li .name_first label {
  display: none;
}

#expertModal.modal-expertModal .modal-body ul li input {
  height: 40px;
  margin: 0 !important;
  font-size: 16px;
  color: #4F536C;
}

#expertModal.modal-expertModal .modal-body ul li label {
  display: block;
  font-size: 16px;
  position: relative !important;
  color: #131a25;
  height: auto;
  font-weight: 600 !important;
  margin: 0;
  padding: 0 !important;
}

#expertModal.modal-expertModal .modal-body ul li textarea {
  height: 120px;
  margin: 0 !important;
}

#expertModal.modal-expertModal .modal-body ul li:last-child {
  margin-bottom: 0;
  align-items: end;
}

#expertModal.modal-expertModal .modal-body ul li:last-child label {
  margin-top: 10px;
}

#expertModal.modal-expertModal .modal-body ul li:nth-child(4) input {
  color: #ced2dc;
}

#expertModal.modal-expertModal .modal-body .gform_footer {
  display: block;
}

#expertModal.modal-expertModal .modal-body .gform_footer input[type="submit"] {
  width: 100% !important;
}

.contact-us {
  background: #eff0f8;
  padding: 50px 0;
}

.contact-us .content {
  background: #fff;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  max-width: 760px;
  margin: auto;
  padding: 50px 30px;
}

.contact-us .content h1 {
  font-size: 36px;
  line-height: 46px;
  color: #131a25;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
}

.contact-us .content p {
  font-size: 24px;
  line-height: 34px;
  color: #131a25;
  text-align: center;
  width: 95%;
  margin: auto;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-us .content form ul {
  margin: 0;
}

.contact-us .content form ul>li:first-child {
  margin-right: 20px;
  width: 335px;
}

.contact-us .content form li {
  margin-bottom: 20px;
}

.contact-us .content form li input {
  width: 100%;
}

.contact-us .content form li:last-child {
  margin-bottom: 0;
}

.contact-us .content form li:first-child,
.contact-us .content form li:nth-child(2) {
  display: inline-block;
}

.contact-us .content form li:nth-child(2) {
  width: 343px;
}

.contact-us .content form li:nth-child(4) {
  display: flex;
  align-items: center;
}

.contact-us .content form li:nth-child(4) label {
  display: block;
  margin: 0;
  font-size: 16px;
  color: #131a25;
  font-weight: 600;
  padding-left: 20px;
}

.contact-us .content form li:nth-child(4)>div:nth-child(2) {
  margin-left: auto;
}

.contact-us .content form input {
  border: 1px solid #ced2dc;
  border-radius: 5px;
  font-size: 16px;
  color: #4f536c;
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-left: 20px;
}

.contact-us .content form select {
  width: 340px;
  border: 1px solid #ced2dc;
  border-radius: 3px;
  height: 50px;
  font-size: 16px;
  color: #4f536c;
  padding-left: 16px;
  font-weight: 600;
  background: url("../assets/public/images/arrow-select.svg");
  -webkit-appearance: none;
  background-size: 11px 7px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  margin-bottom: 20px;
}

.contact-us .content form textarea {
  border: 1px solid #ced2dc;
  border-radius: 5px;
  font-size: 16px;
  color: #4f536c;
  padding: 20px;
  height: 120px;
  font-weight: 600;
}

.contact-us .content form input::-moz-placeholder {
  opacity: 1;
}

.contact-us .content form input::placeholder {
  opacity: 1;
}

.contact-us .content form textarea::-moz-placeholder {
  color: #949baf;
  opacity: 1;
}

.contact-us .content form textarea::placeholder {
  color: #949baf;
  opacity: 1;
}

.contact-us .content form li,
.contact-us .content form input {
  float: none !important;
}

.contact-us .content form input[type="checkbox"]:checked+label:before {
  background: transparent;
}

.contact-us .content form input[type="checkbox"]+label:before {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  font-size: 24px;
  display: flex;
  align-items: center;
}

.contact-us .content form li:last-child li {
  width: 100%;
}

.contact-us .content form li:last-child li label {
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: center;
  font-size: 16px;
  color: #131a25;
  font-weight: 600;
}

.contact-us .content form li:last-child li a {
  font-size: 16px;
  color: #131a25;
  text-decoration: underline;
  margin-left: 5px;
}

.contact-us .content form .gform_footer {
  margin-top: 30px;
}

.contact-us .content form .gform_footer input[type="submit"] {
  border-radius: 3px;
}

.contact-us .content .gform_confirmation_wrapper>div:before {
  content: "";
  background: url("../assets/public/images/message-successful.svg");
  width: 48px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

.contact-us .content .gform_confirmation_wrapper div {
  font-size: 18px;
  line-height: 28px;
  color: #131a25;
  font-weight: 600;
  text-align: center;
  margin-top: 80px;
}

.contact-us .content .gform_confirmation_wrapper div strong {
  font-size: 24px;
  color: #131a25;
  font-weight: 900;
  margin-bottom: 20px;
}

.exclusive-properties__section {
  padding-top: 60px;
}

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

.exclusive-properties__header h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 46px;
}

.exclusive-properties__header p {
  font-size: 24px;
  line-height: 34px;
}

.exclusive-properties__label {
  background: #131a25;
  border-radius: 60px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 760px;
  margin: auto;
  margin-top: 90px;
}

.exclusive-properties__label svg {
  width: 80px;
}

.exclusive-properties__label p {
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  margin-left: 30px;
}

@media (max-width: 991.98px) {
  .exclusive-properties__label p {
    font-size: 23px;
  }
}

@media (max-width: 767.98px) {
  .exclusive-properties__label p {
    font-size: 16px;
    line-height: 26px;
  }
}

.exclusive-properties__row {
  margin-top: 100px !important;
}

.exclusive-properties__row figure {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  max-height: 200px;
}

.exclusive-properties__row figure img {
  width: 100%;
}

.exclusive-properties__row svg {
  width: 40px;
  position: absolute;
  right: 6px;
  top: -15px;
}

@media (max-width: 767.98px) {
  .exclusive-properties__row {
    margin-top: 50px !important;
  }

  .exclusive-properties__row .col-md-4:not(:last-child) {
    margin-bottom: 30px;
  }
}

.exclusive-properties__body {
  position: relative;
}

.exclusive-properties__body .price,
.exclusive-properties__body .price--light,
.exclusive-properties__body .price--dark {
  font-size: 24px;
  text-transform: uppercase;
  color: #131a25;
  font-weight: 900;
}

.exclusive-properties__body .price--light {
  color: #fff;
}

.exclusive-properties__body .price--dark {
  color: #131a25;
}

@media (max-width: 991.98px) {

  .exclusive-properties__body .price,
  .exclusive-properties__body .price--light,
  .exclusive-properties__body .price--dark {
    font-size: 20px;
  }
}

.exclusive-properties__body .home span {
  font-size: 15px;
  font-weight: 500;
}

.exclusive-properties__body .home span:not(:last-child) {
  margin-right: 10px;
}

.exclusive-properties__body .home span strong {
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .exclusive-properties__body .home {
    width: 80%;
  }
}

.exclusive-properties__body .address,
.exclusive-properties__body .address--light,
.exclusive-properties__body .address--dark {
  font-size: 12px;
  color: #131a25;
  font-weight: 500;
  margin-top: 10px;
}

.exclusive-properties__body .address--light {
  color: #fff;
}

.exclusive-properties__body .address--dark {
  color: #131a25;
}

.exclusive-properties__body .image {
  position: absolute;
  right: 0;
  top: 10px;
}

.exclusive-properties__body .image figure {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.review__section {
  padding-top: 180px;
}

@media (max-width: 575.98px) {
  .review__section {
    padding-top: 100px;
  }
}

.review__container {
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575.98px) {
  .review__container {
    text-align: center;
    justify-content: center;
  }
}

.review__photo {
  position: relative;
}

.review__photo>figure {
  margin: 0;
  width: 280px;
  height: 280px;
  background-position: 47% 41% !important;
  border-radius: 50% !important;
}

@media (max-width: 991.98px) {
  .review__photo>figure {
    width: 180px;
    height: 180px;
    background-size: 185% !important;
  }
}

.review__photo .logo {
  background: #131a25;
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
}

.review__photo .logo figure {
  margin: 0;
  height: 53px;
  width: 100%;
  background-size: contain !important;
}

@media (max-width: 991.98px) {
  .review__photo .logo figure {
    height: 48px;
  }
}

@media (max-width: 991.98px) {
  .review__photo .logo {
    width: 85px;
    height: 85px;
  }
}

@media (max-width: 575.98px) {
  .review__text {
    margin-top: 30px;
  }
}

.review__text p {
  font-size: 42px;
  line-height: 58px;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 40px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .review__text p {
    font-size: 32px;
    line-height: 52px;
  }
}

@media (max-width: 991.98px) {
  .review__text p {
    font-size: 26px;
    line-height: 47px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .review__text p {
    font-size: 30px;
    line-height: 42px;
  }

  .review__text p br {
    display: none;
  }
}

.review__text span {
  font-size: 24px;
  line-height: 34px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
}

.review__text span strong {
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .review__text span {
    font-size: 22px;
    line-height: 32px;
  }
}

.selling__section {
  padding-top: 180px;
}

@media (max-width: 575.98px) {
  .selling__section {
    padding-top: 100px;
  }
}

.selling__container {
  text-align: center;
}

.selling__container h2 {
  font-size: 36px;
  line-height: 46px;
  color: #131a25;
  font-weight: 900;
  margin-bottom: 30px;
}

.selling__container p {
  font-size: 24px;
  line-height: 34px;
  color: #000000;
}

.property-details__section {
  margin-top: 120px;
  background: #131a25;
  padding: 86px 0;
}

.property-details__header {
  margin-bottom: 20px;
  border-bottom: 1px solid #343a4c;
  padding-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.property-details__header p {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #eff0f8;
  margin: 0;
}

.property-details__body .row {
  align-items: center;
}

.property-details__body .row svg {
  width: 50px;
  margin-right: 20px;
}

.property-details__body .row svg circle {
  stroke: none;
  fill: #343a4c;
}

.property-details__body .row p {
  margin: 0;
  font-size: 22px;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 1199.98px) {
  .property-details__body .row p {
    font-size: 20px;
  }
}

.property-details__body .row p span {
  color: #37b34a;
  font-weight: 900;
}

.property-details__body .row:not(:last-child) {
  margin-bottom: 10px !important;
}

.property-details__container .col-lg-4.row {
  justify-content: space-between;
  align-items: end;
  height: -moz-fit-content;
  height: fit-content;
}

.property-details__container .col-lg-4.row .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #343a4c;
  border-radius: 20px;
  height: 100px;
  max-width: 100px;
  margin-bottom: 20px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .property-details__container .col-lg-4.row .col-md-4 {
    height: 90px;
    max-width: 90px;
  }
}

.property-details__container .col-lg-4.row .col-md-4.red {
  background: #ff1d4e;
}

.property-details__container .col-lg-4.row .col-md-4 svg {
  height: 30px;
}

.property-details__container .col-lg-4.row .col-md-4 span {
  font-size: 22px;
  color: #eff0f8;
  font-weight: 500;
}

.property-details__container .col-lg-4.row .col-md-4 p {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #eff0f8;
  margin: 0;
}

.property-details__container .col-lg-4.row .col-md-4 .progressbar {
  background: #131a25;
  border-radius: 5px;
  width: 100%;
  height: 10px;
  margin-top: 5px;
  overflow: hidden;
}

.property-details__container .col-lg-4.row .col-md-4 .progressbar span {
  background: #37b34a;
  height: 100%;
  display: block;
  border-radius: 5px;
}

.property-details__container .desired-price {
  background: url("../img/home/desired-price.svg");
  height: 400px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  padding-top: 85px;
}

.property-details__container .desired-price p {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #eff0f8;
  margin: 0;
}

.property-details__container .desired-price span {
  font-size: 48px;
  line-height: 46px;
  color: #ffffff;
  font-weight: 900;
}

.property-details__container .address,
.property-details__container .exclusive-properties__body .address--light,
.exclusive-properties__body .property-details__container .address--light,
.property-details__container .exclusive-properties__body .address--dark,
.exclusive-properties__body .property-details__container .address--dark {
  border: 1px solid #343a4c;
  border-radius: 5px;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  font-size: 18px;
  color: #eff0f8;
  font-weight: 500;
  margin-top: 40px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .property-details__container .col-md-6:first-child {
    order: 1;
  }

  .property-details__container .col-md-6:last-child {
    order: 2;
  }

  .property-details__container .col-md-12 {
    order: 3;
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .property-details__container .col-md-12>.col-lg-4:nth-child(2) {
    margin: 30px 0;
  }
}

.step__section {
  background: #343a4c;
  padding: 50px 0;
}

.step__container .col-md-4 {
  text-align: center;
  position: relative;
}

@media (max-width: 575.98px) {
  .step__container .col-md-4 {
    max-width: 33%;
  }
}

.step__container .col-md-4 span {
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  color: #949baf;
  margin-bottom: 50px;
  display: block;
}

.step__container .col-md-4 i {
  width: 10px;
  height: 10px;
  background: #4f536c;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.step__container .col-md-4 p {
  font-size: 22px;
  color: #949baf;
  margin: 0;
}

@media (max-width: 575.98px) {
  .step__container .col-md-4 p {
    font-size: 14px;
  }
}

.step__container .col-md-4 .line {
  width: 100%;
  height: 1px;
  background: #4f536c;
  position: absolute;
  right: -50%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.step__container .col-md-4.active i {
  background: #ff1d4e;
  width: 20px;
  height: 20px;
}

@media (max-width: 575.98px) {
  .step__container .col-md-4.active i {
    width: 15px;
    height: 15px;
  }
}

.step__container .col-md-4.active p,
.step__container .col-md-4.active span {
  color: #eff0f8;
}

.automate-alerts__section {
  padding-top: 180px;
}

@media (max-width: 575.98px) {
  .automate-alerts__section {
    padding-top: 100px;
  }
}

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

.automate-alerts__header h2 {
  font-size: 36px;
  line-height: 46px;
  color: #131a25;
  font-weight: 900;
  margin-bottom: 30px;
}

.automate-alerts__header p {
  font-size: 24px;
  line-height: 34px;
  color: #000000;
}

.automate-alerts__body {
  position: relative;
}

.automate-alerts__body svg {
  height: 550px;
  display: block;
  margin: 90px auto;
}

@media (max-width: 575.98px) {
  .automate-alerts__body svg {
    height: auto;
  }
}

.automate-alerts__body svg circle {
  stroke: none;
}

.automate-alerts__body .message1 {
  top: 14%;
  position: absolute;
  right: 1%;
}

@media (max-width: 991.98px) {
  .automate-alerts__body .message1 {
    top: 0;
    right: 0;
  }
}

@media (max-width: 575.98px) {
  .automate-alerts__body .message1 {
    top: -22%;
    right: 0;
  }
}

.automate-alerts__body .message1 figure {
  z-index: 1;
  position: relative;
}

.automate-alerts__body .message1:after {
  content: "";
  background: url("../img/home/shadow-message.png");
  width: 100%;
  height: 160px;
  position: absolute;
  top: 11%;
  left: -29%;
}

@media (max-width: 991.98px) {
  .automate-alerts__body .message1:after {
    height: 100px;
    top: 33%;
    left: -4%;
    transform: rotate(-15deg);
  }
}

@media (max-width: 575.98px) {
  .automate-alerts__body .message1:after {
    height: 58px;
    top: 60%;
    left: 12%;
    transform: rotate(-47deg);
  }
}

.automate-alerts__body .message2 {
  bottom: 9%;
  position: absolute;
  left: 1%;
}

@media (max-width: 991.98px) {
  .automate-alerts__body .message2 {
    bottom: 0;
    left: 0;
  }
}

@media (max-width: 575.98px) {
  .automate-alerts__body .message2 {
    bottom: -22%;
    left: 0;
  }
}

.automate-alerts__body .message2 figure {
  z-index: 1;
  position: relative;
}

.automate-alerts__body .message2:after {
  content: "";
  background: url("../img/home/shadow-message.png");
  width: 100%;
  height: 160px;
  position: absolute;
  bottom: 17%;
  right: -29%;
  transform: rotate(180deg);
}

@media (max-width: 991.98px) {
  .automate-alerts__body .message2:after {
    height: 100px;
    bottom: 45%;
    right: -9%;
    transform: rotate(160deg);
  }
}

@media (max-width: 575.98px) {
  .automate-alerts__body .message2:after {
    height: 58px;
    bottom: 75%;
    right: 12%;
    transform: rotate(140deg);
  }
}

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

.automate-alerts__footer p {
  font-size: 24px;
  line-height: 34px;
  color: #131a25;
}

.founding-members__section {
  padding-top: 180px;
}

@media (max-width: 575.98px) {
  .founding-members__section {
    padding-top: 100px;
  }
}

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

.founding-members__header h2 {
  font-size: 36px;
  line-height: 46px;
  color: #131a25;
  font-weight: 900;
  margin-bottom: 30px;
}

.founding-members__header p {
  font-size: 24px;
  line-height: 34px;
  color: #000000;
}

.founding-members__image img {
  width: 700px;
}

.founding-members__footer {
  text-align: center;
  margin-top: 72px;
}

.founding-members__footer p {
  font-size: 24px;
  line-height: 34px;
  color: #131a25;
}

.founding-members__body {
  margin-top: 68px;
}

.founding-members__body>figure {
  text-align: center;
  margin: 0;
  position: relative;
}

.founding-members__body>figure:after {
  content: "";
  background: url("../img/home/line.png");
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 35px;
  left: 0;
}

@media (max-width: 575.98px) {
  .founding-members__body>figure:after {
    bottom: 17px;
  }
}

.founding-members__body .col-xl-8 {
  margin: auto !important;
}

.founding-members__body .col-xl-8 .col-md-4 {
  text-align: center;
}

@media (max-width: 575.98px) {
  .founding-members__body .col-xl-8 .col-md-4 {
    max-width: 33%;
  }
}

.founding-members__body .col-xl-8 .col-md-4 .name {
  font-size: 18px;
  line-height: 46px;
  text-transform: uppercase;
  color: #ff1d4e;
  margin: 0;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .founding-members__body .col-xl-8 .col-md-4 .name {
    font-size: 17px;
  }
}

@media (max-width: 575.98px) {
  .founding-members__body .col-xl-8 .col-md-4 .name {
    font-size: 16px;
    line-height: 26px;
  }
}

.founding-members__body .col-xl-8 .col-md-4 .position {
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: #131a25;
  margin: 0;
}

.founding-members__body .col-xl-8 .col-md-4 figure {
  margin: 0;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
}

.founding-members__body .col-xl-8 .col-md-4 figure img {
  max-height: 100px;
}

.feedback__section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.feedback__container .col-xl-6 {
  background: #343a4c;
  border-radius: 5px;
  padding: 50px;
  margin: auto;
  text-align: center;
}

.feedback__container .col-xl-6 p {
  font-size: 18px;
  line-height: 28px;
  color: #eff0f8;
}

.feedback__container .col-xl-6 textarea {
  background: #ffffff;
  border: 1px solid #ced2dc;
  border-radius: 5px;
  width: 100%;
  padding: 20px;
  font-size: 16px;
  color: #4f536c;
  font-weight: 500;
}

.feedback__container .col-xl-6 span {
  display: block;
  font-size: 24px;
  color: #eff0f8;
  font-weight: 600;
  margin: 15px 0 20px;
}

.feedback__container .col-xl-6 button {
  background: #949baf;
  border-radius: 3px;
  width: 100%;
  font-size: 18px;
  color: #ffffff;
  height: 50px;
  font-weight: 600;
}

.feedback__container .ts {
  margin-top: 30px;
  text-align: center;
}

.feedback__container .ts a {
  text-decoration: underline;
}

.private-listings__row {
  margin-top: 100px !important;
}

@media (max-width: 767.98px) {
  .private-listings__row {
    margin-top: 50px !important;
  }
}

.public-spec-nav {
  color: white;
}

.public-spec-nav.public {
  background-color: #ff1d4e;
}

.public-spec-nav.member {
  background-color: #1a2330;
}

.public-spec-nav .cursor__pointer {
  cursor: pointer;
}

.public-spec-nav .main-row {
  min-height: 44px;
  padding: 5px;
}

.public-spec-nav span {
  vertical-align: middle;
}

.public-spec-nav .post-title-value {
  font-weight: 700;
}

.public-spec-nav img {
  width: 30px;
  height: 30px;
}

.public-spec-nav input.post-title-value {
  display: none;
  background-color: white;
  color: black;
  margin-bottom: 5px;
  margin-top: 5px;
  border-radius: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.public-spec-nav button.public-spec-nav_close {
  right: 0;
  top: -3px;
}

.public-spec-nav button.update-title {
  padding: 0 20px;
  vertical-align: middle;
  border-radius: 20px;
  border-width: 2px;
  border-color: white;
  border-style: double;
  color: white;
  display: none;
}

.public-spec-nav button.update-title:focus {
  outline: none;
}

.public-spec-nav .title-part {
  margin-top: 3px;
}

.public-spec-nav .action-container {
  text-align: end;
  margin-top: 5px;
}

.public-spec-nav .action-container a {
  color: white;
}

.public-spec-nav .action-container a:hover {
  color: aquamarine;
}

.demo {
  padding-bottom: 100px;
}

.demo p {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  margin: 0 0 50px;
}

.demo h1 {
  font-size: 36px;
  line-height: 46px;
  font-weight: 800;
  margin: 0 0 20px;
}

.demo h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 46px;
  margin: 0 0 20px;
}

.demo .embed-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.demo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.demo-form {
  position: relative;
  color: #fff;
  background-color: rgba(19, 26, 37, 0.8);
  width: 100%;
  padding: 110px 200px 120px !important;
  margin: 0 auto;
  z-index: 10;
}

@media (max-width: 991.98px) {
  .demo-form {
    padding: 40px 30px 40px !important;
  }
}

.demo-form__container {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center center !important;
  overflow: hidden;
}

.demo-form__container::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 24px, rgba(255, 255, 255, 0.1) 24px, rgba(255, 255, 255, 0.1) 50px);
  mix-blend-mode: normal;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
}

.demo-form .form-group label {
  font-weight: 700;
  font-size: 16px;
}

.demo-form .form-control {
  padding: 6px;
  background-color: #fff;
  margin-bottom: 20px;
  height: 40px;
}

.demo-form .acf-fields {
  margin: 0;
}

.demo-form .acf-field-group>.acf-label {
  display: none;
}

.demo-form .acf-field-group .acf-field {
  display: flex;
}

.demo-form .acf-field-group .acf-field .acf-label {
  min-width: 200px;
}

.demo-form .acf-field-group .acf-field .acf-input {
  width: 100%;
}

.demo-form .acf-field-group .acf-field .acf-input .acf-input-wrap input {
  border: none;
}

.demo-form #gform_12 {
  /* Firefox 18- */
  /* firefox 19+ */
  /* ie */
}

.demo-form #gform_12 .gform_body {
  display: flex;
  width: 100%;
}

.demo-form #gform_12 .gform_fields {
  width: 100%;
}

.demo-form #gform_12 .gfield {
  display: flex;
  position: relative;
  width: 100%;
}

@media (max-width: 991.98px) {
  .demo-form #gform_12 .gfield {
    flex-direction: column;
  }
}

.demo-form #gform_12 .gfield_label {
  font-size: 16px;
  line-height: 50px;
  min-width: 160px;
  height: 50px;
}

@media (max-width: 991.98px) {
  .demo-form #gform_12 .gfield_label {
    height: auto;
    line-height: inherit;
    margin-bottom: 10px;
  }
}

.demo-form #gform_12 .ginput_container {
  width: calc(100% - 160px);
}

@media (max-width: 767.98px) {
  .demo-form #gform_12 .ginput_container {
    width: 100%;
  }
}

.demo-form #gform_12 .ginput_container input {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #4f536c;
  margin: 0 0 18px 0;
  padding: 0 20px !important;
  border: none;
  border-radius: 5px;
}

.demo-form #gform_12 .gfield_validation_message {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 360px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: #ff1d4e;
  padding: 8px 14px;
  border-radius: 5px;
  z-index: 900;
}

.demo-form #gform_12 .gfield_validation_message::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 14%;
  border-right: 10px solid #ff1d4e;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  transform: rotate(-45deg);
}

.demo-form #gform_12 .gform_footer {
  display: flex;
  justify-content: center;
}

.demo-form #gform_12 .gform_footer .gform_button {
  float: none;
  width: 100%;
  color: white;
  background-color: #ff1d4e;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
  margin-top: 20px;
  padding: 0 60px;
  border: none;
}

@media (max-width: 767.98px) {
  .demo-form #gform_12 .gform_footer .gform_button {
    width: 100%;
  }
}

.demo-form #gform_12 ::-webkit-input-placeholder {
  font-size: 15px !important;
}

.demo-form #gform_12 :-moz-placeholder {
  font-size: 15px !important;
}

.demo-form #gform_12 ::-moz-placeholder {
  font-size: 15px !important;
}

.demo-form #gform_12 :-ms-input-placeholder {
  font-size: 15px !important;
}

.demo-form #gform_12 input:-moz-placeholder {
  font-size: 15px !important;
}

.gform_submission_error {
  position: absolute;
  top: 50px;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #ff1d4e;
}

.demo-btn {
  padding: 13px 60px;
  background-color: #ff1d4f;
  margin: 20px auto 0;
  color: #fff !important;
  border-radius: 3px;
  height: 50px;
  font-weight: 700;
  font-size: 16px;
}

.demo-get-peek {
  padding-top: 50px;
}

.demo-discount {
  padding-top: 50px;
}

.get-peek-intro {
  text-align: center;
}

.get-peek-list {
  display: flex;
  justify-content: center;
}

.get-peek-ul {
  font-family: "Lato", sans-serif;
  list-style: none;
  position: relative;
}

.get-peek-ul li {
  font-size: 22px;
  font-weight: 900;
  line-height: 30px;
  text-indent: -39px;
  margin-left: 39px;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .get-peek-ul li {
    font-size: 20px;
  }
}

.get-peek-ul li::before {
  content: " ";
  background: url(../img/check-icon.svg) no-repeat center;
  display: inline-block;
  height: 25px;
  width: 25px;
  vertical-align: middle;
  margin-right: 14px;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Plugins styles */
#fep-wrapper {
  font-family: "Open Sans", helvetica, arial, sans-serif;
  margin-top: 70px;
  margin-bottom: 70px;
}

#fep-wrapper .fep-menu-toggle .fep-button,
#fep-wrapper .fep-menu-toggle .fep-button-active {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 19.2px;
  margin: 0 35px;
  padding-bottom: 30px;
  border: none;
  background: none;
  border-radius: 0;
  border-bottom: 4px solid transparent;
  padding-bottom: 20px;
  margin: 0 15px;
}

#fep-wrapper .fep-menu-toggle .fep-button:hover,
#fep-wrapper .fep-menu-toggle .fep-button-active:hover {
  color: #ff1d4e;
}

#fep-wrapper .fep-menu-toggle .fep-button:first-child,
#fep-wrapper .fep-menu-toggle .fep-button-active:first-child {
  margin-left: 0;
}

#fep-wrapper .fep-menu-toggle .fep-button-active {
  border-color: #ff1d4e;
}

#fep-wrapper #fep-header {
  background: #eff0f8;
  border-radius: 5px;
  display: block;
  border: none;
  margin-bottom: 20px;
  padding: 40px;
}

#fep-wrapper #fep-header strong {
  font-family: "Open Sans", helvetica, arial, sans-serif;
  font-size: 18px;
  color: #131a25;
  font-weight: 800;
}

#fep-wrapper #fep-header .fep_total_message_count {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

#fep-wrapper #fep-header .fep-box-size {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ff1d4e;
  color: #fff;
  height: 50px;
  width: 250px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 5px;
}

#fep-wrapper #fep-header .avatar {
  margin: 0;
  margin-right: 20px;
  border-radius: 50%;
  width: 111px;
  height: 111px;
}

#fep-wrapper #fep-content {
  border: none;
  border-top: 4px solid #eff0f8;
  margin-top: -4px;
  padding-left: 0;
  padding-top: 30px;
}

#fep-wrapper #fep-content h2 {
  font-size: 20px;
  color: #131a25;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0px 0 35px 0;
}

#fep-wrapper .fep-form-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

#fep-wrapper #fep-result {
  z-index: 5;
  background: #eff0f8;
  border: solid 1px #c5c5c5;
}

#fep-wrapper #fep-result li {
  border-top: solid 1px #c5c5c5;
}

#fep-wrapper #fep-result li a:hover {
  background: #ff1d4e;
}

#fep-wrapper .front-end-pm-form .fep-button,
#fep-wrapper .fep-action-table .fep-button,
#fep-wrapper .fep-message .fep-button {
  display: block;
  width: auto;
  margin: 0 auto;
  height: 50px;
  border-radius: 5px;
  padding: 10px 20px;
  background: none #8cc63f;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  border: none;
  margin-bottom: 20px;
  transition: all 0.5s;
}

#fep-wrapper .front-end-pm-form .fep-button:hover,
#fep-wrapper .fep-action-table .fep-button:hover,
#fep-wrapper .fep-message .fep-button:hover {
  background: #96dd26;
}

#fep-wrapper .fep-table-row .fep-column-fep-cb {
  width: 60px;
}

#fep-wrapper .fep-per-message {
  border: none;
}

#fep-wrapper .fep-message .fep-button {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 7px;
}

#fep-wrapper .fep-avatar-p .fep-avatar-2 {
  display: none;
}

#fep-wrapper .fep-action-table .fep-button {
  height: 43px;
  top: 7px;
  position: relative;
  margin: 0;
  left: 10px;
}

@-moz-document url-prefix() {
  #fep-wrapper .fep-action-table .fep-button {
    top: 23px;
  }
}

#fep-wrapper #fep-content-single-reply-form .fep-form-field-fep_upload .fep-field {
  padding-left: 98px;
}

#fep-wrapper .fep-bulk-action {
  display: block;
  outline: none;
  width: 100%;
}

#fep-wrapper .fep-attachment-field-a {
  display: none;
}

#fep-wrapper #fep-content a {
  text-decoration: none;
  color: #949BAF;
}

#fep-wrapper .fep-form-field-fep_upload {
  margin-bottom: 30px;
}

#fep-wrapper .fep-form-field-fep_upload .fep-field {
  padding-left: 117px;
}

#fep-wrapper .fep-form-field-blocked_users {
  margin-bottom: 30px;
  margin-top: 30px;
}

#fep-wrapper .fep-field {
  width: 90%;
}

#fep-wrapper label {
  font-size: 16px;
  font-weight: 600;
}

#fep-wrapper .input-text,
#fep-wrapper select,
#fep-wrapper .fep-messagebox-search-form-field,
#fep-wrapper .token-input-list-facebook {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 3px;
  border: #CED2DC 1px solid;
  height: auto;
  line-height: 20px;
}

#fep-wrapper .fep-form-field-announcement_roles label {
  position: relative;
}

#fep-wrapper .fep-form-field-announcement_roles input {
  position: relative;
  right: auto;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

#fep-wrapper .fep-pagination a,
#fep-wrapper .fep-pagination span {
  display: block;
  width: 50px;
  line-height: 50px;
  color: #4F536C !important;
  border-right: 1px solid #CED2DC;
  font-size: 18px;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
}

#fep-wrapper .fep-pagination a:hover,
#fep-wrapper .fep-pagination span:hover {
  background-color: #ff1d4e;
  color: #fff !important;
}

#fep-wrapper .fep-pagination li.active a {
  background-color: #ff1d4e !important;
  color: #fff !important;
  border-color: #dddddd !important;
}

#fep-wrapper input[type="checkbox"] {
  position: relative;
  right: auto;
  margin-right: 10px;
  width: 20px;
  height: 20px;
}

#fep-wrapper .fep-table .fep-column-avatar,
#fep-wrapper .fep-table .fep-column-fep-cb {
  padding-right: 10px;
  vertical-align: middle;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 60px;
}

#fep-wrapper .fep-table .fep-column-avatar img,
#fep-wrapper .fep-table .fep-column-fep-cb img {
  width: auto;
  max-width: 1000px;
}

#fep-wrapper .fep-table .fep-column-author,
#fep-wrapper .fep-table .fep-column-date {
  padding-top: 17px;
}

#fep-wrapper .fep-column-title a,
#fep-wrapper .fep-column-block_unblock a,
#fep-wrapper .fep-column-send_message a {
  color: #8cc63f !important;
}

#fep-wrapper .fep-table .fep-message-excerpt {
  opacity: 1;
  font-size: 11px;
  color: black;
}

#fep-wrapper .fep-odd-even>div:nth-child(odd) {
  background-color: #eff0f8;
}

#fep-wrapper .fep-odd-even>div:nth-child(even) {
  background-color: #ffffff;
}

#fep-wrapper .fep-column-block_unblock {
  padding-top: 25px;
}

#fep-wrapper #fep-content-single-sidebar .fep-message-head {
  background-color: #fff !important;
}

#fep-wrapper #fep-content-single-sidebar .fep-message-head.fep-message-head-active .avatar {
  border-color: #ff1d4e;
}

#fep-wrapper #fep-content-single-sidebar .fep-message-head .avatar {
  border: 1px solid transparent;
}

#fep-wrapper #fep-content-single-sidebar .fep-message-head .fep-avatar-p {
  margin-bottom: 20px;
  height: auto;
}

#fep-wrapper #fep-content-single-sidebar .fep-message-head .fep-avatar-1 {
  margin: 0 auto;
}

#fep-wrapper .fep-per-message .fep-message-title {
  background-color: #1a2330;
  border: none;
  color: #fff;
  padding: 15px 20px;
}

#fep-wrapper .fep-message-content {
  padding: 15px 20px;
  font-size: 14px;
}

#fep-wrapper .fep-message-title-heading {
  font-size: 20px;
  color: #131a25;
  text-transform: uppercase;
  font-weight: 800;
  padding: 0px 0 15px 0;
  border: none;
  background: none;
}

#fep-wrapper .fep-message-title-heading.participants {
  font-size: 14px;
}

#fep-wrapper #fep-content-single-main {
  padding-left: 30px;
}

#fep-wrapper .fep-message-toggle-all {
  background: #fff !important;
  color: #000 !important;
  border: 2px solid #8cc63f !important;
  font-size: 14px !important;
}

#fep-wrapper .fep-message-title .date {
  position: relative;
  top: 2px;
  color: #8cc63f;
}

#fep-wrapper .fep-message-author {
  font-weight: 600;
}

#fep-wrapper .fep-cb-check-uncheck-all-div {
  margin-bottom: 20px;
  padding-left: 20px;
}

#fep-wrapper .fep-error,
#fep-wrapper .fep-success,
#fep-wrapper .fep-wp-error {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #fff;
  background-color: #ff1d4e;
  border-color: #ff1d4e;
  height: 50px;
  border-radius: 5px;
}

#fep-wrapper #fep-footer {
  display: none;
}

/** Not really sure what to call this **/
.kelcey-row .left-col {
  flex: 0 0 44.9275362%;
  max-width: 44.9275362%;
}

.kelcey-row .square-col {
  flex: 0 0 27.536231884%;
  max-width: 27.536231884%;
}

.nonstandard-row {
  /* Grid? What grid? */
  margin: 0 -10px;
  /* Why even live? */
  height: 50%;
}

.nonstandard-row .nonstandard {
  padding: 10px;
}

.nonstandard-row:first-child .nonstandard {
  padding-top: 0;
}

.nonstandard-row:last-child .nonstandard {
  padding-bottom: 0;
}

.nonstandard-row-2x {
  margin: 0 -4px !important;
}

@media (max-width: 767.98px) {
  .nonstandard-row-2x {
    margin: 0 !important;
  }
}

.nonstandard-row-2x .nonstandard-2x {
  padding: 0 20px !important;
}

@media (max-width: 767.98px) {
  .nonstandard-row-2x .nonstandard-2x {
    padding: 0 !important;
  }
}

.pos-rel {
  position: relative;
}

.uppercase {
  text-transform: uppercase !important;
}

.mr-10 {
  margin-right: 10px;
}

.p-10 {
  padding: 10px;
}

.p-10--hide {
  display: none;
}

.p-50 {
  padding-right: 45px !important;
}

#p-30 {
  padding-right: 30px !important;
}

.mr-10 {
  margin-right: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.mt-30 {
  margin-top: 30px !important;
}

.left-10 {
  padding-left: 30px !important;
}

.w-100 {
  width: 100%;
  margin-top: 20px;
}

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

b {
  color: #131a25;
}

.m-5 {
  margin-top: 5px !important;
}

.m-10 {
  margin-top: 10px !important;
}

.m-20 {
  margin-top: 20px !important;
}

.m-30 {
  margin-top: 30px !important;
}

.m-40 {
  margin-top: 40px !important;
}

.m-90 {
  margin-top: 90px !important;
}

.c-text {
  text-transform: uppercase;
}

.b-800 {
  font-weight: 800;
}

.f-14 {
  font-size: 14px;
}

.p-7 {
  padding: 7px !important;
}

.m-50 {
  margin-top: 50px;
}

.ml-5 {
  margin-left: 5px;
}

.b-600 {
  color: #4f536c;
  font-weight: 600;
}

.m-tb-3 {
  margin: 3px 0 3px 0;
}

.f-right {
  float: right;
  position: relative;
}

.f-left {
  float: left;
}

.b-700 {
  font-weight: 700;
}

.p-br {
  border-bottom: 1px solid #f3f1f1;
  border-right: 1px solid #f3f1f1;
  padding-bottom: 8px;
}

.p-bl {
  border-bottom: 1px solid #f3f1f1;
  border-left: 1px solid #f3f1f1;
  padding-bottom: 8px;
}

.f-10 {
  font-size: 10px;
}

.f-15 {
  font-size: 15px;
}

.p-5 {
  padding: 5px !important;
}

.width-100 {
  width: 100%;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 1px;
}

.px-6 {
  padding-right: 6px;
  padding-left: 6px;
}

@media (max-width: 767.98px) {
  .px-6 {
    padding-right: 0;
    padding-left: 0;
  }
}

.f-15 {
  font-size: 12px;
}

/* Fonts */
.no-translation {
  padding: 0 !important;
  margin: 0 !important;
}

.no-translation::before,
.no-translation::after {
  display: none !important;
}

body.language-es_es .welcome .welcome-paging a.button {
  width: 260px;
}

body[data-user-region="spain"] .welcome .welcome-slider {
  margin: -580px 0 0;
}

body[data-user-region="spain"] .welcome .welcome-content {
  height: 560px;
}