/* From portal */
:root {
  --buyer-color-for-all: #3c4286; /*badge bg, text color*/
  --renter-color-for-all: #ff8696; /*badge bg, text color*/
  --status-color-1: #45B64A; /* Available*/
  --status-color-2: #FF9300; /* In Contract, Pending*/
  --status-color-3: #FF0000; /* In Edit*/
  --status-color-4: #AB1DB7; /* Off Market*/
  --status-color-5: #2383E2; /* Sold, Rented*/
  --status-color-6: #3C4286; /* Sold by, Rented by*/
  --status-color-7: #30363B; /* Void*/
  --status-color-8: #345581; /* Incomplete*/
  --status-color-9: #EDC726; /* Coming soon*/
  --status-color-10: #A23A37; /* Buyer Represented*/
  --status-color-11: #0A51A0; /* Leased*/
}
.page-wrapper {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.page-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-positive: 1;
    flex-grow: 1;
    font-size: .8125rem;	
}

.page-content .dropdown-menu {
   font-size: .8125rem;	
}

.page-content input {
   flex-grow: unset;   
}

.select2-container ul li {
    display: list-item;
    line-height: 1;
}

.board-card-title, .crm-block-title, .title-m {
    font-size: 1.313rem;
    font-weight: 600 !important;
    margin-bottom: 0;
}

.content-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex: 1;
    flex: 1;
    overflow: auto
}

.content {
    padding: 1.25rem 1.25rem;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.content::after {
    display: block;
    clear: both;
    content: ""
}

.flex-1 {
  -ms-flex: 1;
  flex: 1;
}

/* Height Style CSS ==================================================== */
.height-full {height:100%;}
.height-50vh { height:50vh; }
.height-60vh { height:60vh !important; }
.height-70vh { height:70vh; }
.height-90vh { height:90vh; }
.height-cover { height:100vh; }
.height-110 { height:110px; }
.card-height-full { height: calc(100vh - 215px); }
.flex-full-height { height:100%; } /* cover flex full height */
.flex-box-spacer [class*="col-"] { margin-bottom:25px; } /* cover flex spacer */
.flex-mrg-none { margin-bottom:0; }

.height-minus-350px {
  height: calc(100vh - 350px);
}

body {
    min-height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex: 1;
    flex: 1;
}

.height-40 {
  height: 40px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
}

.height-250 {
    height: 250px;
}
.overflow-hidden {
    overflow: hidden !important;
}

.res-overflow-sidebar {
    min-height: 100%;
    min-width: 100%;
    scroll-behavior: smooth;
}

.icon35 {
    width: 35px !important;
    min-width: 35px !important;
    height: 35px !important;
    min-height: 35px !important;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'] {
    --active: #0f74fd;
    --active-inner: #fff;
    --input-border: #cdd9ed;
    --input-border-hover: rgb(106, 116, 146);
    --background: #fff;
    --disabled: #f5f9ff;
    --disabled-inner: #e4ecfa;
    --shadow-inner: rgba(18, 22, 33, .1);
    height: 21px;
    outline: none;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
    margin-right: .625rem;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    height: 21px;
    border: 1px solid var(--input-border);
    background: var(--background);
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  input[type='checkbox']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.2s ease, filter 0.3s ease;
  }
  input[type='checkbox']:checked {
    background: var(--active);
    border-color: var(--active);
  }
  input[type='checkbox']:checked:after{
    filter: drop-shadow(0 1px 2px var(--shadow-inner));
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
  }
  input[type='checkbox']:disabled {
    cursor: not-allowed;
    opacity: 0.9;
    background: var(--disabled);
  }
  input[type='checkbox']:disabled:checked {
    background: var(--disabled-inner);
    border-color: var(--input-border);
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled) {
    border-color: var(--input-border-hover);
  }
  input[type='checkbox']:not(.switch) {
    width: 21px;
    min-width: 21px;
  }
  input[type='checkbox']:not(.switch):after {
    opacity: 0;
  }
  input[type='checkbox']:not(.switch):checked:after, input[type='radio']:not(.switch):checked:after {
    opacity: 1;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 6px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(20deg);
  }
  input[type='checkbox']:not(.switch):checked:after {
    transform: rotate(43deg);
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--input-border);
  }
  input[type='checkbox'].switch:checked:after {
    background: var(--active-inner);
    transform: translateX(17px);
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
}

.frosted-glass-bg {
    border: 1px solid rgb(255 255 255 / 70%);
    backdrop-filter: blur(8px) saturate(220%);
    background: rgb(255 255 255 / 50%);
}
.shadow-black-2 {
    -webkit-box-shadow: 0 0 0.5rem rgb(0 0 0 / 15%);
    box-shadow: 0 0 0.5rem rgb(0 0 0 / 15%);
}

:root {
  --primary-theme-color: #4356C9;
  --subject-property-height: 0px;
}

.mm-sidebar-grid {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  display: grid;
  align-content: baseline;
  gap: 7px;
}

/* END - From portal */

.on-gallery-btn {
  color: #fff;
  background-color: rgb(0 0 0 / 6%);
  border: 1px solid rgb(255 255 255 / 26%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.25rem 0.5rem rgb(0 0 0 / 10%) !important;
}

.on-gallery-btn:hover, .on-gallery-btn:focus {
  color: #fff;
  background-color: rgb(0 0 0 / 10%);
  border: 1px solid rgb(255 255 255 / 30%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.25rem 0.5rem rgb(0 0 0 / 10%) !important;
}

.input-group-append .last-visible, .input-group-prepend .last-visible {
  border-radius: 0 10px 10px 0 !important;
}

#research-map-wrapper, #research-list-wrapper, #more-filters-dropdown {
  display: none;
}

.visible-flex {
  display: flex !important;
}

.research-filter-wrapper {
  position: absolute;
  top: 115.8px;
  left: 0px;
  width: 100%;
  height: calc(100% - 115.8px);
  z-index: 1001;
  background-color: #fff;
}

.no-header .research-filter-wrapper {
  top: 61px;
  height: calc(100% - 61px);
}

#research-selection-wrapper {
  width: 350px;
  border-radius: 10px;
}

#research-selection-wrapper {
  left: 20px;
  top: 170px;
  height: calc(100% - 183px - var(--subject-property-height, 0px));
}

.in-iframe-custom #research-selection-wrapper {
  width: 350px;
  height: calc(100% - 80px - var(--subject-property-height, 0px));
  left: 10px;
  top: calc(70px + var(--subject-property-height, 0px));
  border-radius: 10px;
}

@media (max-width: 425px){
  .research-filter-wrapper {
    left: 0px;
    width: 100%;
  }

  #research-selection-wrapper {
    width: 100%;
    height: calc(100% - 111px - var(--subject-property-height, 0px));
    left: 0px;
    top: calc(111px + var(--subject-property-height, 0px));
    border-radius: 0px;
    box-shadow: none !important;
    z-index: 111;
  }
}

@media (min-width: 426px) and (max-width: 768px){
  .research-filter-wrapper {
    left: 70px;
    width: calc(100% - 70px);
  }

  #research-selection-wrapper {
    width: calc(100% - 70px);
    height: calc(100% - 111px);
    top: calc(111px + var(--subject-property-height, 0px));
    left: 70px;
    box-shadow: none !important;
    z-index: 111;
    border-radius: 0px;
  }
}

.res-btn-bc {
  position: absolute;
  align-items: flex-end;
  left: calc(50% - 80px);
  bottom: 10px;
}

/*CUSTOM MOBILE MENU COMPONENT FOR SELECTS*/

.menu-component {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 1111;
  background: white;
  height: 100%;
  width: 100%;
}

.menu-component-header {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid rgb(209, 209, 213);
  padding: 10px;
}

.menu-component-title {
  font-weight: 600;
  font-size: 18px;
}

.menu-component-close {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 13px 17px;
}

.menu-component .menu-component-option {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid rgb(209, 209, 213);
  font-size: 15px;
  height: 50px;
  line-height: 30px;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.menu-component-option.active {
  background-color: rgb(57 76 96 / 10%);
}

.map-btn {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, .175) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  width: 40px;
  height: 40px;
  z-index: 999;
}

.map-btn:hover, .map-btn.active {
  background: #f4f4f4;
  cursor: pointer;
}

.max-height-100vh-280 {
  max-height: calc((var(--vh, 1vh) * 100) - 280px);
}

body {
  min-height: calc(var(--vh, 1vh) * 100);
}
.width-100vw-10 {
  width: calc(100vw - 10px);
}

/*beds and bath filters*/
.re-res-nr-filter {
  cursor: pointer;
  background: #f0f1f2;
  transition: .2s;
  border-radius: 1px;
}

.re-res-nr-filter:hover {
  background: #eaebee;
  transition: .2s;
}

.re-res-nr-filter.active {
  box-shadow: inset 0px -3px 0 0px var(--primary-theme-color);
  transition: .2s;
}

/*do not remove it! needed for neighborhoods*/
.research-filter-neighborhood .select2-selection__choice {
  display: none !important;
}

.js-research-favorite-listing, .js-select-subject-property {
  border-radius: 30px;
  color: black;
}

.js-research-favorite-listing, .js-research-favorite-listing:hover, .js-select-subject-property, .js-select-subject-property:hover {
  transition: .2s;
}
.js-research-favorite-listing:hover, .js-select-subject-property:hover {
  color: var(--primary-theme-color) !important;
}

/*MAP TABS*/
.switching.tabs {
  display: flex;
  padding: 5px;
  background-color: #ebecf0;
  border-radius: 7px;
  width: 200px;
  position: absolute;
  bottom: 10px;
  left: calc(50% - 100px);
}
.switching.tabs * {
  z-index: 2;
}
.switching.tabs input[type=radio] {
  display: none;
}
.switching.tabs .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-bottom: 0px;
  width: 50%;
  cursor: pointer;
  border-radius: 5px;
  transition: color 0.15s ease-in;
}
.switching.tabs input[type=radio]:checked + label {
  color: #667af4;
}
.switching.tabs input[data-nth="1"]:checked ~ .glider {
  transform: translateX(0);
}
.switching.tabs input[data-nth="2"]:checked ~ .glider {
  transform: translateX(100%);
}
.switching.tabs input[data-nth="3"]:checked ~ .glider {
  transform: translateX(200%);
}
.switching.tabs input[data-nth="4"]:checked ~ .glider {
  transform: translateX(300%);
}
.switching.tabs .glider {
  position: absolute;
  display: flex;
  z-index: 1;
  height: 30px;
  width: calc(33.33% - 3px);
  background-color: #ffffff;
  border-radius: 5px;
  transition: 0.25s ease-out;
}

#select2-filter-neighborhood-results .select2-results__option{
  text-transform: capitalize;
}

.re-res-filter-item {
  border: 1px solid #ddd;
  transition: .2s;
  color: #20232C !important;
}

.re-res-filter-item:hover {
  background: #f4f5f7 !important;
  transition: .2s;
}

.js-research-card {
  transition: .2s;
}

.re-res-filter-item.active {
  border: 1px solid #dadde2;
  background: rgb(57 76 96 / 10%);
}

.research-map-container {
  width: 100%;
}

.res-neighborhood span, .res-boundary-name {
  border-radius: 3px;
  transition: .2s;
}
.res-neighborhood.active span, .res-neighborhood span:hover, .res-boundary-name:hover, .res-boundary-name.active {
  transition: .2s;
  background-color: #1c69d63b;
}

#research-map, #research-neighborhood-map, #research-boundaries-map {
  position: absolute;
  top: 0px;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.mapboxgl-popup {
  max-width: 60%;
  font: 12px/20px 'Lato', Arial, Helvetica, sans-serif;
}

.research-search-card {
  transition: .2s !important;
}

.research-search-card:hover {
  cursor: pointer;
  transition: .2s;
  -webkit-box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
  box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
}

.research-card:not(.map-view) {
  transition: .2s;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.research-card:not(.map-view):hover {
  transition: .2s;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.js-research-card:hover {
  transition: .2s;
  cursor: pointer;
}

.js-research-card img {
  transition: .2s;
}

.js-research-card:hover img {
  transition: .2s;
  transform: scale(1.1);
  transform-origin: center center;
}

/*feature tiles*/
input[type='checkbox'] {
  flex-grow: 0;
}
.checkbox-wrapper {
  width: 100%;
}
.checkbox-group {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 90%;
margin-left: auto;
margin-right: auto;
max-width: 600px;
}
.checkbox-group > * {
margin: 0.5rem 0.5rem;
}

.checkbox-group-legend {
font-size: 1.5rem;
font-weight: 700;
color: #9c9c9c;
text-align: center;
line-height: 1.125;
margin-bottom: 1.25rem;
}

.checkbox-input {
clip: rect(0 0 0 0);
-webkit-clip-path: inset(100%);
        clip-path: inset(100%);
height: 1px;
overflow: hidden;
position: absolute !important;
top: 0px;
left: 0px;
white-space: nowrap;
width: 1px;
}
.checkbox-input:checked + .checkbox-tile {
border-color: var(--primary-theme-color);
color: var(--primary-theme-color);
}
.checkbox-input:checked{
transform: scale(1);
opacity: 1;
background-color: var(--primary-theme-color);
border-color: var(--primary-theme-color);
}
.checkbox-input:checked + .checkbox-tile .checkbox-icon, .checkbox-input:checked + .checkbox-tile .checkbox-label {
color: var(--primary-theme-color);
}
.checkbox-input:active + .checkbox-tile {
border-color: var(--primary-theme-color);
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input:focus {
transform: scale(1);
opacity: 1;
}

.checkbox-tile {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  min-height: 70px;
  padding-left: 10px;
  border-radius: 0.5rem;
  border: 2px solid #efefef;
  background-color: #fff;
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}
.checkbox-tile:hover {
  border-color: var(--primary-theme-color);
}
.checkbox-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.checkbox-icon {
  transition: 0.375s ease;
  color: #494949;
}

.checkbox-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
}

input[type=number] {
  -moz-appearance: textfield;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'] {
    --active: #0f74fd;
    --active-inner: #fff;
    --input-border: #cdd9ed;
    --input-border-hover: rgb(106, 116, 146);
    --background: #fff;
    --disabled: #f5f9ff;
    --disabled-inner: #e4ecfa;
    --shadow-inner: rgba(18, 22, 33, .1);
    height: 21px;
    outline: none;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
    margin-right: .625rem;
    padding: 0;
    box-shadow: none;
    cursor: pointer;
    height: 21px;
    border: 1px solid var(--input-border);
    background: var(--background);
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  input[type='checkbox']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform 0.3s ease, opacity 0.2s ease, filter 0.3s ease;
  }
  input[type='checkbox']:checked {
    background: var(--active);
    border-color: var(--active);
  }
  input[type='checkbox']:checked:after{
    filter: drop-shadow(0 1px 2px var(--shadow-inner));
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
  }
  input[type='checkbox']:disabled {
    cursor: not-allowed;
    opacity: 0.9;
    background: var(--disabled);
  }
  input[type='checkbox']:disabled:checked {
    background: var(--disabled-inner);
    border-color: var(--input-border);
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled) {
    border-color: var(--input-border-hover);
  }
  input[type='checkbox']:not(.switch) {
    width: 21px;
    min-width: 21px;
  }
  input[type='checkbox']:not(.switch):after {
    opacity: 0;
  }
  input[type='checkbox']:not(.switch):checked:after, input[type='radio']:not(.switch):checked:after {
    opacity: 1;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 6px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(20deg);
  }
  input[type='checkbox']:not(.switch):checked:after {
    transform: rotate(43deg);
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--input-border);
  }
  input[type='checkbox'].switch:checked:after {
    background: var(--active-inner);
    transform: translateX(17px);
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
}

.price-input {
  position: relative;
}

.price-input::after {
  content: "\65";
  color: #fff;
  font-family: "res-icons" !important;
  position: absolute;
  font-size: 9px;
  top: 42px;
  right: 15px;
  color: #333;
  user-select: none;
  cursor: pointer;
}

.price-input input {
  padding-right: 55px;
}

.option-picker-dropdown, .search-history-dropdown {
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  border-radius: 7px;
  max-height: 260px;
  overflow-y: auto;
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
  border: 1px solid #ddd;
  padding: 0.5rem 0rem;
}

.option-picker-dropdown .option-picker-item, .search-history-dropdown .search-history-item {
  cursor: pointer;
  padding: 0.375rem 1rem;
  font-size: .8125rem;
  transition: background-color ease-in-out .15s, color ease-in-out .15s;
  width: calc(100% - 16px);
  border-radius: 7px;
  margin: 1px 8px;
}

.search-history-dropdown .search-history-title {
  font-weight: 600;
  background: #EBEBEB;
  margin: 0.5rem 0rem;
  padding: 0.375rem 1rem;
  text-transform: uppercase;
}

.option-picker-dropdown .option-picker-item:hover, .search-history-dropdown .search-history-item:hover {
  background-color: #f5f5f5;
  color: #333;
}

.option-picker-dropdown .option-picker-item.selected {
  background-color: #2196F3;
  color: #fff;
}

/*BOOTSTRAP inputs*/

.input-group-text {
  background-color: #ffffff;
  transition: .2s;
}
.input-group-text:hover {
  transition: .2s;
  cursor: pointer;
  background-color: #f4f5f7;
}

.research-filter-neighborhood .select2-selection__choice, .research-filter-polygon .select2-selection__choice {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .select2-selection--multiple .select2-selection__clear {
      transition: none; 
  }
}
.select2-selection--multiple .select2-selection__clear:hover {
  opacity: 1;
}
.select2-selection--multiple .select2-selection__clear:after {
  content: "\e006";
  font-family: res-icons!important;
  display: inline-block;
  font-size: 0.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.select2-selection--multiple .select2-selection__choice {
  background-color: #0F74FD !important;
  cursor: pointer;
  padding: 5px 10px !important;
  border-radius: 5px !important;
  margin: 5px 0px 3px 4px !important;
}
.select2-selection--multiple .select2-selection__choice:hover {
  background-color: #0F74FD !important;
  cursor: pointer;
  padding: 5px 10px !important;
  border-radius: 5px !important;
  margin: 5px 0px 3px 4px !important;
}

.select2-selection--multiple .select2-search--inline .select2-search__field {
  font-size: 100%;
  padding: 0.3125rem 0;
  background-color: transparent;
  border-width: 0;
  outline: 0;
  color: inherit;
  margin: 5px 0px 3px 4px !important;
  -webkit-appearance: textfield;
}

.select2-selection {
  border-radius: 7px;
}

.select2-selection--multiple > .select2-selection__rendered > .select2-selection__clear {
  position: relative;
  cursor: pointer;
  float: right;
  font-size: 0;
  line-height: 1;
  margin-top: 17px;
  margin-right: 10px;
  opacity: 0.75;
  transition: opacity ease-in-out 0.15s;
}

.select2-selection--multiple {
  border-radius: 7px !important;
  display: flex;
  align-items: center;
}

.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom-right-radius: 0px !important;
border-bottom-left-radius: 0px !important;
}

.select2-search, .select2-search__field {
  width: 100% !important;
}
.research-filter-neighborhood .select2-selection__choice, .research-filter-polygon .select2-selection__choice {
  display: none !important;
}

.input-group>.input-group-prepend>.input-group-text:last-child {
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
}

.js-remove-subdivision i, .input-group-text i {
  pointer-events: none;
}

.checkbox-icon {
  content: "";
  position: absolute;
  cursor: pointer;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  z-index: 15;
  transition: 0.25s ease;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.checkbox-icon:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.already-added-icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 15;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: 2px solid var(--primary-theme-color);
  background-color: var(--primary-theme-color);
  border-radius: 50%;
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.already-added-icon-cap, .already-added-icon-cap:hover {
  cursor: pointer !important;
  border: 2px solid rgb(82 193 137) !important;
  background-color: rgb(82 193 137) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.research-card.already-added-border {
  border: 1px solid var(--primary-theme-color);
}

.cap-share-card.already-added-border {
  outline: 1px solid var(--primary-theme-color);
}

.research-card.already-added-border-cap:hover {
  border: 1px solid var(--primary-theme-color) !important;
}

.already-added-icon:hover {
  position: absolute;
  z-index: 15;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  border: 2px solid #F56969;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' enable-background='new 0 0 40 40'%3E%3Cline x1='2' y1='2' x2='8' y2='8' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3Cline x1='2' y1='8' x2='8' y2='2' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3C/svg%3E ");
  background-color: #F56969;
  border-radius: 50%;
  transition: 0.25s ease;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.hover-style-shadow:hover .already-added-icon.list {
  position: absolute;
  right: 10px;
  cursor: pointer;
  top: 10px;
  z-index: 15;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid  #F56969;
  background-color:  #F56969;
  border-radius: 50%;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' enable-background='new 0 0 40 40'%3E%3Cline x1='2' y1='2' x2='8' y2='8' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3Cline x1='2' y1='8' x2='8' y2='2' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3C/svg%3E ");
  transition: 0.25s ease;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.already-added-icon.list {
  position: absolute;
  right: 10px;
  cursor: pointer;
  top: 10px;
  z-index: 15;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgb(82 193 137);
  background-color: rgb(82 193 137);
  border-radius: 50%;
  transition: 0.25s ease;
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

@keyframes mapListingAnimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    height: 135px;
    opacity: 1;
    border-radius: 10px;
    transform: scale(1);
  }
}

/*@keyframes menuItemAnimation {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}*/

.alt-dropdown-menu {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175)!important;
  border-radius: 10px;
  border: 1px solid #ddd;
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  display: none;
}

.alt-dropdown-menu.show {
  display: block;
}

.research-img-effect {
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -1;
  opacity: 0.7;
  top: 5px;
  left: 5px;
}

.research-img-effect.list {
  filter: blur(10px) saturate(220%);
  transform: scale(0.7);
}

.research-img-effect.grid {
  filter: blur(15px) saturate(220%);
  transform: scale(0.9);
}

/* editable text */

.mm-edit-text {
  display: flex;
}

.mm-edit-text i {
  display: none;
}

.mm-edit-text input {
  border-bottom: 1px dashed transparent;
  border-top: none;
  border-right: none;
  border-left: none;
}

.mm-edit-text:not(.no-edit):hover input, .mm-edit-text:not(.no-edit) input:focus{
  border-bottom: 1px dashed #35475a33;
  cursor: text;
}

.mm-edit-text:not(.no-edit):hover i {
  display: block;
}

/* Listing */

/* VARIABLES
========================================================== */
/*FOR LATER PURPOSES, CURRENTLY NOT IN USE */
:root {
    --var-blue-gradient: linear-gradient(330deg, #007dff 0%, #00b9fe 100%);
    --var-green-gradient: linear-gradient(330deg, #12af32 0%, #4cda63 100%);
    --var-red-gradient: linear-gradient(330deg, #e70300 0%, #fe3a2f 100%);
    --var-yellow-gradient: linear-gradient(330deg, #feca00 0%, #ff9000 100%);
    --var-grey-gradient: linear-gradient(330deg, #9297a2 0%, #b6bac6 100%);
}

/* TEXTS AND COLORS
========================================================== */

.img-height-base {
    height: 285px !important; /*so all card will be the same size no matter which size the picture is*/
    max-height: 285px !important;
    min-height: 285px !important;
}

.resrch-bg-grey {
    background-color: #f1f1f1;
}

.select2-search, .select2-search__field {
    width: 100% !important;
}

/* PROPERTY CARDS
========================================================== */
.resrch-btn-border {
    border: 1px solid #dddddd !important;
}

.resrch-border {
    border: 1px solid #f3f3f3;
    transition: .2s;
}

/* DETAILS OF PROPERTIES */

.research-details-navbar {
    cursor: pointer;
}

.modal-mi-active {
    transition: .2s;
}

/*select2 and multiselect customization*/

.multiselect-native-select {
    width: 100%;
}

.select2-selection--multiple {
    border-radius: 7px !important;
    display: flex;
    align-items: center;
}

.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}
.carousel-thumb-control .icon, .carousel-main-control .icon, #fancybox-left-ico, #fancybox-right-ico {
    background: #00000046 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(7px);
    border-radius: 50%;
}
.carousel-control-next, .carousel-control-prev {
    width: 20% !important;
}
.carousel-thumb-control .icon {
    height: 35px;
    width: 35px;
}

.carousel-thumb-control, .carousel-main-control {
    opacity: 1 !important;
}
@media (prefers-reduced-motion: reduce) {
    .select2-selection--multiple .select2-selection__clear {
        transition: none; 
    }
}
.select2-selection--multiple .select2-selection__clear:hover {
    opacity: 1;
}
.select2-selection--multiple .select2-selection__clear:after {
    content: "\e006";
    font-family: res-icons!important;
    display: inline-block;
    font-size: 0.6rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.select2-selection--multiple .select2-selection__choice {
    background-color: #0F74FD !important;
    cursor: pointer;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    margin: 5px 0px 3px 4px !important;
}
.select2-selection--multiple .select2-selection__choice:hover {
    background-color: #0F74FD !important;
    cursor: pointer;
    padding: 5px 10px !important;
    border-radius: 5px !important;
    margin: 5px 0px 3px 4px !important;
}

.select2-selection--multiple .select2-search--inline .select2-search__field {
    font-size: 100%;
    padding: 0.3125rem 0;
    background-color: transparent;
    border-width: 0;
    outline: 0;
    color: inherit;
    margin: 5px 0px 3px 4px !important;
    -webkit-appearance: textfield;
}

.select2-selection {
    border-radius: 7px;
}

.select2-selection--multiple > .select2-selection__rendered > .select2-selection__clear {
    position: relative;
    cursor: pointer;
    float: right;
    font-size: 0;
    line-height: 1;
    margin-top: 17px;
    margin-right: 10px;
    opacity: 0.75;
    transition: opacity ease-in-out 0.15s;
}


/* ===== Scrollbar CSS ===== */

* {
    scrollbar-width: auto;
    scrollbar-color: #999999 #fff;
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #fff;
}

*::-webkit-scrollbar-thumb {
    background-color: #999999;
    border-radius: 10px;
    border: 2px solid #fff;
}

/*for carousel*/

.max-height-120 { max-height: 120px !important; }
.height-120 { height: 120px !important; }
.height-520 { height: 520px !important; }
.max-height-520 { max-height: 520px !important; }

.thumb img.active, .thumb.selected img{
    opacity: 0.5;
    transition: .2s;
}

#detailsMain .carousel-item a {
    cursor: zoom-in;
}

.thumb img {
	object-fit: cover;
    cursor: pointer;
}

.carousel-fullscreen-icon {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 4;
}

.carousel-thumb-control.carousel-control-next, .carousel-thumb-control.carousel-control-prev {
    right: 0;
    left: 0;
    width: 100%;
}

.carousel-thumb-control.carousel-control-next {
    width: 100% !important;
    height: 45px!important;
    bottom: 0;
    top: unset;
}

.carousel-thumb-control.carousel-control-prev {
    width: 100%!important;
    height: 45px!important;
    top: 0;
    bottom: unset;
}

/*responsible masonry layout things*/

@media (max-width: 768px) and (min-width: 320px) {
    .building-details > .grid-item {
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 1920px) {
    .building-details > .grid-item {
        width: 49%;
    }
}

#map {
    height: 90vh;
    width: 100%;
}

.thumb {
    max-height: 160px;
    height: 160px;
}
  

.pd-item-title {
    color: #333;
}

/*neighborhood*/

.subway-icon-margin {
    margin-top: 3px;
}
.bus-icon-margin {
    margin-top: 1px;
}

a.hover-style-shadow:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/*to card-checkboxes*/

/*for grid-list toggle*/
.grid-list {
    --color: #f6f8ff;
    --background: #2b3044;
    --background-hover: #1e2235;
    --icon-color: #bbc1e1;
    padding: 6px 12px 6px 8px;
    margin: 0;
    display: flex;
    outline: none;
    position: relative;
    border: none;
    border-radius: 9px;
    background: var(--b, var(--background));
    cursor: pointer;
    -webkit-appearence: none;
    -webkit-tap-highlight-color: transparent;
    transform: scale(var(--scale, 1)) translateZ(0);
    transition: transform 0.15s, background 0.4s;
}
.grid-list:active {
    --scale: 0.95;
}
.grid-list:hover {
    --b: var(--background-hover);
}
.grid-list .icon {
    width: 18px;
    height: 18px;
    position: relative;
}
.grid-list .text {
    position: relative;
    line-height: 17px;
    font-weight: 600;
    font-size: 14px;
    min-width: 28px;
    color: var(--color);
}
.grid-list .text span {
    --y-default: 0;
    --o-default: 1;
    --y-active: -12px;
    --o-active: 0;
    display: block;
    opacity: var(--o-default);
    transform: translateY(var(--y-default)) translateZ(0);
    animation: var(--span-name, none) 0.4s ease forwards;
}
.grid-list .text span:last-child {
    --y-default: 12px;
    --o-default: 0;
    --y-active: 0;
    --o-active: 1;
    position: absolute;
    left: 0;
    top: 0;
}
.grid-list.animation {
    --span-name: text;
    --dots-name: back;
    --lines-name: scale-down;
}
.grid-list.animation.active {
    --span-name: text-active;
    --dots-name: move;
    --lines-name: scale;
    --lines-duration: 0.15s;
    --lines-delay: 0.3s;
}
@keyframes text {
    0% {
        opacity: var(--o-active);
        transform: translateY(var(--y-active)) translateZ(0);
   }
    100% {
        opacity: var(--o-default);
        transform: translateY(var(--y-default)) translateZ(0);
   }
}
@keyframes text-active {
    0% {
        opacity: var(--o-default);
        transform: translateY(var(--y-default)) translateZ(0);
   }
    100% {
        opacity: var(--o-active);
        transform: translateY(var(--y-active)) translateZ(0);
   }
}
@keyframes move {
    50% {
        transform: translate(var(--x-middle, 0), var(--y-middle, 0)) scale(0.4);
   }
    100% {
        transform: translate(var(--x-end, 0), var(--y-end, 0)) scale(0.4);
   }
}
@keyframes back {
    0%, 15% {
        transform: translate(var(--x-end, 0), var(--y-end, 0)) scale(0.4);
   }
    50% {
        transform: translate(var(--x-back, 0), var(--y-back, 0)) scale(0.5);
   }
    100% {
        transform: translate(var(--x-back-end, 0), var(--y-back-end, 0)) scale(1);
   }
}
@keyframes scale {
    100% {
        transform: translateY(20%) translateZ(0) scaleX(1);
   }
}
@keyframes scale-down {
    0% {
        transform: translateY(20%) translateZ(0) scaleX(1);
   }
    100% {
        transform: translateY(20%) translateZ(0) scaleX(0);
   }
}

.height-72 {
    height: 72vh;
}

.modal-xxl {
    min-width: 1320px !important;
}

.already-added-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid rgb(82 193 137);
    background-color: rgb(82 193 137);
    border-radius: 50%;
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.already-added-icon-cap, .already-added-icon-cap:hover {
    cursor: pointer !important;
    border: 2px solid rgb(82 193 137) !important;
    background-color: rgb(82 193 137) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E") !important;
}

.resrch-card.already-added-border {
    border: 2px solid rgb(82 193 137);
}

.cap-share-card.already-added-border {
    outline: 2px solid rgb(82 193 137);
}

.resrch-card.already-added-border-cap:hover {
    border: 2px solid rgb(82 193 137) !important;
}

.already-added-icon:hover {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid #F56969;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' enable-background='new 0 0 40 40'%3E%3Cline x1='2' y1='2' x2='8' y2='8' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3Cline x1='2' y1='8' x2='8' y2='2' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3C/svg%3E ");
    background-color: #F56969;
    border-radius: 50%;
    transition: 0.25s ease;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.hover-style-shadow:hover .already-added-icon.list {
    position: absolute;
    right: 10px;
    cursor: pointer;
    top: 10px;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid  #F56969;
    background-color:  #F56969;
    border-radius: 50%;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' enable-background='new 0 0 40 40'%3E%3Cline x1='2' y1='2' x2='8' y2='8' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3Cline x1='2' y1='8' x2='8' y2='2' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-miterlimit='2'%3E%3C/line%3E%3C/svg%3E ");
    transition: 0.25s ease;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.already-added-icon.list {
    position: absolute;
    right: 10px;
    cursor: pointer;
    top: 10px;
    z-index: 9;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgb(82 193 137);
    background-color: rgb(82 193 137);
    border-radius: 50%;
    transition: 0.25s ease;
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.checkbox-icon {
    content: "";
    position: absolute;
    cursor: pointer;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.re-research-filter-am .checkbox-icon {
    display: none;
}

.select-alert-icon {
    content: "";
    position: absolute;
    cursor: pointer;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    right: 10px;
    bottom: 10px;
    z-index: 15;
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.selected-alert-icon {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 15;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    border: 2px solid rgb(82 193 137);
    background-color: rgb(82 193 137);
    border-radius: 50%;
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.hyphen-input:before {
    content: "-";
    position: absolute;
    left: -2px !important;
    bottom: 8px !important;
}

.call_app .modal-body .py-2{
    width:100% !important;
}

.select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    cursor: pointer;
    float: right;
    font-size: 1rem!important;
    margin-top: 0rem!important;
    font-family: 'res-icons' !important;
    line-height: 1;
    margin-left: 0.625rem;
    opacity: 1!important;
    transition: opacity ease-in-out 0.15s;
}

.carousel-page-indicator {
    position: absolute;
    background: #00000046;
    display: flex;
    justify-content: center;
    right: 15px;
    color: #ffffff;
    top: 15px;
    align-items: center;
    backdrop-filter: blur(7px);
    border-radius: 10px;
    padding: 5px 10px;
}

#map-error-message{
    z-index: 9;
    top: 50%;
    width: 100%;
    text-align: center;
}

.skeleton-thumb-research{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #ddd;
    border-radius: 0px;
    background-image: linear-gradient(90deg, #ddd 0px, #e8e8e8 60px, #ddd 120px);
    background-size: 400px;
    animation: skeleton 0.8s infinite linear;
}
  
@keyframes skeleton {
    0% {
      background-position: -32px;
    }
    40%, 100% {
      background-position: 208px;
    }
}

.re-research-filter.ui-slider {
    position: relative;
    text-align: left;
    background-color: #F0F2F5;
    border-radius: 0px;
    box-shadow: none;
}
.re-research-filter.ui-slider-horizontal {
    height: 4px
}
.re-research-filter.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    background-color: #20232c;
    border-radius: 100px;
}
.re-research-filter.ui-slider .ui-slider-handle:after{
    content: none;
}
.re-research-filter.ui-slider-horizontal .ui-slider-handle {
    top: calc(50% - 10px);
    margin-left: -1px;
}
.re-research-filter.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    cursor: default;
    background-color: #fff;
    border: 1px solid #20232c;
    outline: 0;
    width: 20px;
    height: 20px;
    border-radius: 100px;
    transition: background-color ease-in-out 0.15s;
}

.re-research-filter.ui-slider .ui-slider-handle.ui-state-focus {
    transition: background-color ease-in-out 0.15s;
    box-shadow: 0 0 0 4px #20232c47;
}


.re-res-filter-item {
    border: 1px solid #ddd;
    transition: .2s;
    color: #20232C !important;
}

.re-res-filter-item:hover {
    background: #f4f5f7 !important;
    transition: .2s;
}

.js-research-card {
    transition: .2s;
}

.re-res-filter-item.active {
    border: 1px solid #dadde2;
    background: rgb(57 76 96 / 10%);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
    input[type='checkbox'] {
        --active: #0f74fd;
        --active-inner: #fff;
        --input-border: #cdd9ed;
        --input-border-hover: rgb(106, 116, 146);
        --background: #fff;
        --disabled: #f5f9ff;
        --disabled-inner: #e4ecfa;
        --shadow-inner: rgba(18, 22, 33, .1);
        height: 21px;
        outline: none;
        position: relative;
        -webkit-appearance: none;
        -moz-appearance: none;
        margin: 0;
        margin-right: .625rem;
        padding: 0;
        box-shadow: none;
        cursor: pointer;
        height: 21px;
        border: 1px solid var(--input-border);
        background: var(--background);
        transition: background 0.3s ease, border-color 0.3s ease;
    }
    input[type='checkbox']:after {
        content: '';
        display: block;
        left: 0;
        top: 0;
        position: absolute;
        transition: transform 0.3s ease, opacity 0.2s ease, filter 0.3s ease;
    }
    input[type='checkbox']:checked {
        background: var(--active);
        border-color: var(--active);
    }
    input[type='checkbox']:checked:after{
        filter: drop-shadow(0 1px 2px var(--shadow-inner));
        transition: opacity 0.3s ease, filter 0.3s ease, transform 0.6s cubic-bezier(0.175, 0.88, 0.32, 1.2);
    }
    input[type='checkbox']:disabled {
        cursor: not-allowed;
        opacity: 0.9;
        background: var(--disabled);
    }
    input[type='checkbox']:disabled:checked {
        background: var(--disabled-inner);
        border-color: var(--input-border);
    }
    input[type='checkbox']:hover:not(:checked):not(:disabled) {
        border-color: var(--input-border-hover);
    }
    input[type='checkbox']:not(.switch) {
        width: 21px;
    }
    input[type='checkbox']:not(.switch):after {
        opacity: 0;
    }
    input[type='checkbox']:not(.switch):checked:after, input[type='radio']:not(.switch):checked:after {
        opacity: 1;
    }
    input[type='checkbox']:not(.switch) {
        border-radius: 6px;
    }
    input[type='checkbox']:not(.switch):after {
        width: 5px;
        height: 9px;
        border: 2px solid var(--active-inner);
        border-top: 0;
        border-left: 0;
        left: 7px;
        top: 4px;
        transform: rotate(20deg);
    }
    input[type='checkbox']:not(.switch):checked:after {
        transform: rotate(43deg);
    }
    input[type='checkbox'].switch {
        width: 38px;
        border-radius: 11px;
    }
    input[type='checkbox'].switch:after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 15px;
        height: 15px;
        background: var(--input-border);
    }
    input[type='checkbox'].switch:checked:after {
        background: var(--active-inner);
        transform: translateX(17px);
    }
    input[type='checkbox'].switch:disabled:not(:checked):after {
        opacity: 0.6;
    }
}

/*beds and bath filters*/
.re-res-nr-filter {
    cursor: pointer;
    background: #f0f2f5;
    transition: .2s;
    border-radius: 1px;
}

.re-res-nr-filter:hover {
    background: #e3e6eb;
    transition: .2s;
}

.re-res-nr-filter.active {
    box-shadow: inset 0px -3px 0 0px #0f74fd;
    background: #e3e6eb;
    transition: .2s;
}

/*do not remove it! needed for neighborhoods*/
.research-filter-neighborhood .select2-selection__choice {
    display: none !important;
}

.js-research-favorite-listing, .js-research-favorite-listing:hover {
    transition: .2s;
}
.js-research-favorite-listing:hover {
    color: #6478F4 !important;
}

/*MAP TABS*/
.switching.tabs {
    display: flex;
    padding: 5px;
    background-color: #ebecf0;
    border-radius: 7px;
    width: 200px;
    position: absolute;
    bottom: 10px;
    left: calc(50% - 100px);
}
.switching.tabs * {
    z-index: 2;
}
.switching.tabs input[type=radio] {
    display: none;
}
.switching.tabs .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    margin-bottom: 0px;
    width: 50%;
    cursor: pointer;
    border-radius: 5px;
    transition: color 0.15s ease-in;
}
.switching.tabs input[type=radio]:checked + label {
    color: #667af4;
}
.switching.tabs input[data-nth="1"]:checked ~ .glider {
    transform: translateX(0);
}
.switching.tabs input[data-nth="2"]:checked ~ .glider {
    transform: translateX(100%);
}
.switching.tabs input[data-nth="3"]:checked ~ .glider {
    transform: translateX(200%);
}
.switching.tabs input[data-nth="4"]:checked ~ .glider {
    transform: translateX(300%);
}
.switching.tabs .glider {
    position: absolute;
    display: flex;
    z-index: 1;
    height: 30px;
    width: calc(33.33% - 3px);
    background-color: #ffffff;
    border-radius: 5px;
    transition: 0.25s ease-out;
}

#select2-filter-neighborhood-results .select2-results__option{
    text-transform: capitalize;
}

#disable-map {
    opacity: 0;
    transition: .2s;
}

/* Resoft Custom */

.blue-color-text {
    color: #0F74FD; } 
	
.font-20 {
    font-size: 1.25rem; }

.font-26 {
    font-size: 1.625rem; }

.font-weight-bold {
    font-weight: 700 !important; }
	
.primary-color-text {
    color: var(--primary-color) !important; }
	
.flex-gap-20 {
  gap: 20px;
}
	
.d-grid {
  display: grid;
}
.height-30 {
  height: 30px;
}
.width-70 {
  width: 70px !important;
}
.font-weight-semibold {
  font-weight: 600 !important;
}

.circle-icon {
  border-radius: 50%;
}
.default-icon-settings2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}
.icon30 {
  width: 30px !important;
  min-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
}

.icon40 {
  width: 40px !important;
  min-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
}

.separator {
  align-self: stretch;
  background: #ebebeb;
  margin: 2px 5px;
  min-width: 1px;
  width: 1px;
}

.rounded-bl-10 {
  border-bottom-left-radius: 10px !important;
}
.rounded-tl-10 {
  border-top-left-radius: 10px !important;
}

.search-assistance .input-group-text {
  background-color: #ffffff;
  transition: .2s;
}

.search-assistance .search-assistance-btn {
  border-radius: 10px;
  transition: .2s;
}

.search-assistance .search-assistance-btn:hover {
  transition: .2s;
  cursor: pointer;
  background-color: #f5f5f5;
  border-radius: 10px;
}
.rounded-br-0 {
  border-bottom-right-radius: 0 !important;
}
.rounded-tr-0 {
  border-top-right-radius: 0 !important;
}
.rounded-bl-0 {
  border-bottom-left-radius: 0 !important;
}
.rounded-tl-0 {
  border-top-left-radius: 0 !important;
}
.border-x-0 {
  border-left: 0 !important;
  border-right: 0 !important;
}

.dropdown-toggle::after{
  margin-left: 0;
  font-size: 8px;
  content: "\65";
  width: 13px;
  height: 8px;
  font-family: "res-icons" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  position: relative;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
.res-tag-out-color-7, .res-task-out-color-7 {
  box-shadow: inset 0px 0px 0px 1px #5063D3;
  color: #5063D3;
}
.res-tag-outline-style, .res-outline-style, .badge-outline-style, .lable-outline-style {
  box-sizing: border-box;
  text-decoration: none;
}
.res-tag-sm {
  box-sizing: border-box;
  padding: 2px 8px !important;
  border-radius: 20px;
}

.res-tag {
  display: inline-block;
  padding: 0.3125rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.125rem;
  max-width: 260px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  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;
}
a.res-tag:hover, a.res-tag:focus {
  text-decoration: none;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width:600px;
    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-content {
    box-shadow: 0 .25rem .5rem rgba(0,0,0,.1)
  }

  .modal-sm {
    max-width: 400px
  }
}

@media (min-width: 992px) {
  .modal-lg,.modal-xl {
    max-width:900px
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width:1140px
  }
}

.card-button-place:not(.no_z) {
  z-index: 100;
}
.card-button-place {
  top: 0px;
  right: 0px;
}
.modal-header:not([class*=bg-]) {
  padding-bottom: 1.563rem;
  border-bottom-width: 0;
}
.pd-item-title {
  padding: 5px 10px;
  margin-bottom: 10px;
  background-color: #F5F5F5;
  border-radius: 7px;
}

.masonry-grid-layout-research {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  padding: 0;
}

.z-index-1000 {z-index:1000 !important;}

.btn, .btn-sm, .select2-selection--single, .pagination, .form-control, .form-group, .input-group-text {
  border-radius: 10px;
}

.btn:hover i, .btn:focus i, .btn:active i, .btn.active i {
    padding-left: 0px; 
}

.h2, h2 {
  font-size: 1.4375rem;
  margin-bottom: .625rem; 
  text-transform: none;
}

.dropdown-item {
  margin: 0px 8px;
  width: calc(100% - 16px);
  border-radius: 7px;
  line-height: 17px;
  cursor: pointer;
}

/* STATUS BACKGROUNDS
========================================================== */
.bg-status-available {
  background-color: var(--status-color-1);
}
.bg-status-in-contract, .bg-status-pending {
  background-color: var(--status-color-2);
}
.bg-status-in-edit {
  background-color: var(--status-color-3);
}
.bg-status-off-market {
  background-color: var(--status-color-4);
}
.bg-status-sold, .bg-status-rented {
  background-color: var(--status-color-5);
}
.bg-status-sold-by, .bg-status-rented-by {
  background-color: var(--status-color-6);
}
.bg-status-void {
  background-color: var(--status-color-7);
}
.bg-status-incomplete {
  background-color: var(--status-color-8);
}
.bg-status-coming-soon {
  background-color: var(--status-color-9);
}
.bg-status-buyer-represented {
  background-color: var(--status-color-10);
}
.bg-status-leased {
  background-color: var(--status-color-11);
}
.bgl-purple {
  background-color: #E0E9FF !important;
  color: #4356C9;
}

.cursor-pointer {
  cursor: pointer;
}

/* ------------------------------------------------------------------------------
*
*  # Select2 selects
*
*  Styles for select2.js - custom select plugin
*
* ---------------------------------------------------------------------------- */
.select2-container {
  outline: 0;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-align: left; }

.select2-selection--single {
  cursor: pointer;
  outline: 0;
  display: block;
  padding: 0.4375rem 0;
  line-height: 1.5385;
  color: #333;
  position: relative;
  border: 1px solid transparent;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0.1875rem;
  transition: all ease-in-out 0.15s; }
  @media (prefers-reduced-motion: reduce) {
    .select2-selection--single {
      transition: none; } }
  .select2-selection--single:hover, .select2-selection--single:focus,
  .select2-container--open .select2-selection--single {
    box-shadow: 0 0 0 62.5rem rgba(0, 0, 0, 0.01) inset; }
  .select2-selection--single:not([class*=bg-]) {
    background-color: #fff; }
    .select2-selection--single:not([class*=bg-]):not([class*=border-]) {
      border-color: #ddd; }
  .select2-selection--single[class*=bg-]:not(.bg-white):not(.bg-transparent):not(.bg-light):hover, .select2-selection--single[class*=bg-]:not(.bg-white):not(.bg-transparent):not(.bg-light):focus,
  .select2-container--open .select2-selection--single[class*=bg-]:not(.bg-white):not(.bg-transparent):not(.bg-light) {
    box-shadow: 0 0 0 62.5rem rgba(0, 0, 0, 0.04) inset; }
  .select2-selection--single[class*=bg-]:not(.bg-white):not(.bg-transparent):not(.bg-light) .select2-selection__placeholder {
    color: #fff; }
    .select2-container--disabled .select2-selection--single[class*=bg-]:not(.bg-white):not(.bg-transparent):not(.bg-light) .select2-selection__placeholder {
      color: rgba(255, 255, 255, 0.75); }
  .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 0.875rem;
    padding-right: 2.375rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; }
    .select2-selection--single .select2-selection__rendered > i {
      margin-right: 0.625rem; }
  .select2-selection--single .select2-selection__clear {
    position: relative;
    cursor: pointer;
    float: right;
    font-size: 0;
    line-height: 1;
    margin-top: 0.12502rem;
    margin-left: 0.625rem;
    opacity: 0.75;
    transition: opacity ease-in-out 0.15s; }
    @media (prefers-reduced-motion: reduce) {
      .select2-selection--single .select2-selection__clear {
        transition: none; } }
    .select2-selection--single .select2-selection__clear:hover {
      opacity: 1; }
    .select2-selection--single .select2-selection__clear:after {
      content: "";
      font-family: "icomoon";
      display: inline-block;
      font-size: 1rem;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-selection--single .select2-selection__arrow:after {
    content: "\65";
    font-family: "res-icons" !important;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0.875rem;
    margin-top: -0.2rem;
    font-size: 0.6rem;
    line-height: 1;
    color: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .select2-selection--single .select2-selection__arrow b {
    display: none; }
  .select2-container--disabled .select2-selection--single {
    cursor: default;
    box-shadow: none; }
    .select2-container--disabled .select2-selection--single:not([class*=bg-]) {
      color: #999;
      background-color: #fafafa; }
    .select2-container--disabled .select2-selection--single[class*=bg-] {
      opacity: 0.75;
      box-shadow: none; }
    .select2-container--disabled .select2-selection--single .select2-selection__clear {
      display: none; }

.select2-selection--multiple {
  display: block;
  border: 1px solid transparent;
  cursor: text;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0.1875rem; }
  .select2-selection--multiple:not([class*=bg-]) {
    background-color: #fff; }
    .select2-selection--multiple:not([class*=bg-]):not([class*=border-]) {
      border-color: #ddd; }
  .select2-selection--multiple .select2-selection__rendered {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0 0.125rem 0.125rem 0.125rem;
    width: 100%; }
  .select2-selection--multiple .select2-selection__placeholder {
    color: #999; }
  .select2-container--disabled .select2-selection--multiple:not([class*=bg-]) {
    background-color: #fafafa; }
  .select2-container--disabled .select2-selection--multiple[class*=bg-] {
    opacity: 0.75;
    box-shadow: none; }
    .select2-container--disabled .select2-selection--multiple[class*=bg-] .select2-selection__choice {
      opacity: 1; }
  .select2-container--disabled .select2-selection--multiple,
  .select2-container--disabled .select2-selection--multiple .select2-selection__choice,
  .select2-container--disabled .select2-selection--multiple .select2-search__field {
    cursor: default; }
  .select2-selection--multiple .select2-selection__choice {
    background-color: #455A64;
    color: #fff;
    cursor: default;
    float: left;
    margin-right: 0.125rem;
    margin-top: 0.125rem;
    padding: 0.3125rem 0.875rem;
    white-space: normal;
    word-break: break-all;
    border-radius: 0.1875rem;
    transition: color ease-in-out 0.15s, background-color ease-in-out 0.15s; }
    @media (prefers-reduced-motion: reduce) {
      .select2-selection--multiple .select2-selection__choice {
        transition: none; } }
    .select2-selection--multiple .select2-selection__choice:hover, .select2-selection--multiple .select2-selection__choice:focus {
      background-color: #455A64;
      color: #fff; }
    .select2-selection--multiple .select2-selection__choice > i {
      margin-right: 0.625rem; }
    .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
      cursor: pointer;
      float: right;
      font-size: 0.875rem;
      margin-top: 0.18752rem;
      line-height: 1;
      margin-left: 0.625rem;
      opacity: 0.75;
      transition: opacity ease-in-out 0.15s; }
      @media (prefers-reduced-motion: reduce) {
        .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
          transition: none; } }
      .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove:hover {
        opacity: 1; }
    .select2-container--disabled .select2-selection--multiple .select2-selection__choice {
      opacity: 0.6; }
      .select2-container--disabled .select2-selection--multiple .select2-selection__choice:hover, .select2-container--disabled .select2-selection--multiple .select2-selection__choice:focus {
        background-color: #455A64;
        color: #fff; }
      .select2-container--disabled .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
        display: none; }
  .select2-selection--multiple .select2-search--inline {
    float: left; }
    .select2-selection--multiple .select2-search--inline .select2-search__field {
      font-size: 100%;
      margin-top: 0.125rem;
      padding: 0.3125rem 0;
      background-color: transparent;
      border-width: 0;
      outline: 0;
      color: inherit;
      margin-left: 0.25rem;
      -webkit-appearance: textfield; }
      .select2-selection--multiple .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }
    .select2-selection--multiple .select2-search--inline:first-child .select2-search__field {
      margin-left: 0;
      padding-left: 0.75rem; }

.select2-dropdown {
  background-color: #fff;
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
  position: absolute;
  /*rtl:ignore*/
  left: -100000px;
  width: 100%;
  z-index: 1070;
  border-radius: 0.1875rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1); }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }
  .select2-results > .select2-results__options {
    padding-bottom: 0.5rem;
    max-height: 280px;
    overflow-y: auto; }
    .select2-search--hide + .select2-results > .select2-results__options {
      padding-top: 0.5rem; }
  .select2-results:first-child > .select2-results__options {
    padding-top: 0.5rem; }

.select2-results__option {
  padding: 0.5rem 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all ease-in-out 0.15s; }
  @media (prefers-reduced-motion: reduce) {
    .select2-results__option {
      transition: none; } }
  .select2-results__option + .select2-results__option {
    margin-top: 1px; }
  .select2-results__option i {
    margin-right: 0.625rem; }
    .select2-results__option i.icon-undefined {
      display: none; }
  .select2-results__option[role=group] {
    padding: 0; }
  .select2-results__option.select2-results__option--highlighted {
    background-color: #f5f5f5;
    color: #333; }
  .select2-results__option[aria-disabled=true] {
    color: #999;
    cursor: default; }
    .select2-dropdown[class*=bg-] .select2-results__option[aria-disabled=true] {
      color: rgba(255, 255, 255, 0.6); }
  .select2-results__option[aria-selected=true] {
    color: #fff;
    background-color: #2196F3; }
  .select2-results__options--nested > .select2-results__option {
    padding-left: 2rem;
    padding-right: 2rem; }

.select2-results__group {
  display: block;
  padding: 0.5rem 1rem;
  cursor: default;
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem; }
  .select2-results__option:first-child > .select2-results__group {
    margin-top: 0; }

.select2-results__message {
  color: #999;
  cursor: default; }
  .select2-dropdown[class*=bg-] .select2-results__message {
    color: rgba(255, 255, 255, 0.75); }

.select2-results__option.loading-results {
  padding-top: 0; }
  .select2-results__option.loading-results + .select2-results__option {
    margin-top: 0.5rem; }

.select2-results__option--load-more {
  text-align: center;
  margin-top: 0.5rem;
  cursor: default; }

.select2-container--open .select2-dropdown {
  /*rtl:ignore*/
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }
  .select2-container--open .select2-dropdown--above[class*=bg-] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }

.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
  .select2-container--open .select2-dropdown--below[class*=bg-] {
    border-top: 1px solid rgba(255, 255, 255, 0.2); }

.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0; }

.select2-search--dropdown {
  display: block;
  position: relative;
  padding: 1rem; }
  .select2-search--dropdown:after {
    content: "";
    font-family: "icomoon";
    position: absolute;
    top: 50%;
    left: 1.875rem;
    color: inherit;
    display: block;
    font-size: 0.8125rem;
    margin-top: -0.40625rem;
    line-height: 1;
    opacity: 0.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .select2-search--dropdown + .select2-results .select2-results__message:first-child {
    padding-top: 0; }
  .select2-search--dropdown .select2-search__field {
    padding: 0.4375rem 0.875rem;
    padding-left: 2.5625rem;
    border: 1px solid #ddd;
    outline: 0;
    width: 100%;
    border-radius: 0.1875rem; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select-lg.select2-selection--single {
  padding: 0.5625rem 0;
  font-size: 0.875rem;
  line-height: 1.4286; }
  .select-lg.select2-selection--single .select2-selection__rendered {
    padding-left: 1rem;
    padding-right: 2.5rem; }
  .select-lg.select2-selection--single .select2-selection__arrow:after {
    right: 1rem; }

.select-lg.select2-selection--multiple .select2-selection__choice {
  padding: 0.4375rem 1rem;
  font-size: 0.875rem;
  line-height: 1.4286; }

.select-lg.select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0.4375rem 0;
  font-size: 0.875rem;
  line-height: 1.4286; }

.select-sm.select2-selection--single {
  padding: 0.3125rem 0;
  font-size: 0.75rem;
  line-height: 1.6667; }
  .select-sm.select2-selection--single .select2-selection__rendered {
    padding-left: 0.75rem;
    padding-right: 2.375rem; }
  .select-sm.select2-selection--single .select2-selection__arrow:after {
    right: 0.75rem; }

.select-sm.select2-selection--multiple .select2-selection__choice {
  padding: 0.1875rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6667; }

.select-sm.select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0.1875rem 0;
  font-size: 0.75rem;
  line-height: 1.6667; }

.select2-selection--multiple[class*=bg-] .select2-selection__choice {
  background-color: rgba(0, 0, 0, 0.2); }

.select2-dropdown[class*=bg-] .select2-search--dropdown .select2-search__field {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: transparent;
  color: #fff; }

.select2-dropdown[class*=bg-] .select2-results__option[aria-selected=true] {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff; }

.select2-dropdown[class*=bg-] .select2-results__option--highlighted {
  background-color: rgba(0, 0, 0, 0.1);
  color: #fff; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  z-index: 99;
  background-color: #fff;
  opacity: 0; }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: fixed !important;
  width: 1px !important; }

.select2-result-repository {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem; }

.select2-result-repository__avatar {
  float: left;
  width: 60px;
  margin-right: 0.9375rem; }
  .select2-result-repository__avatar img {
    width: 100%;
    height: auto;
    border-radius: 100px; }

.select2-result-repository__meta {
  margin-left: 70px; }

.select2-result-repository__title {
  font-weight: 500;
  word-wrap: break-word;
  margin-bottom: 2px; }

.select2-result-repository__forks,
.select2-result-repository__stargazers,
.select2-result-repository__watchers {
  display: inline-block;
  font-size: 0.75rem; }

.select2-result-repository__description {
  font-size: 0.75rem; }

.select2-result-repository__forks,
.select2-result-repository__stargazers {
  margin-right: 0.9375rem; }
.select2-results__group, .multiselect-group {
  text-transform: uppercase;
  font-weight: 600;
  background: #EBEBEB;
}

a.badge-hover-style-1:hover .badge-outline-dark-grey, .badge-outline-dark-grey.active {
  color: #FFFFFF !important;
  text-decoration: none;
  box-shadow: inset 0px 0px 0px 1px #20232C;
  background-color: #20232C;
}

div.flex-gap-20-alt > *, .flex-gap-20-alt > * {
  margin-left: 20px;
  margin-bottom: 20px;
}

[class*=bg-]:not(.bg-transparent):not(.bg-light):not(.bg-white):not(.btn-outline):not(body) {
  color: #fff;
}

.res-tag-sm {
  box-sizing: border-box;
  padding: 2px 8px !important;
  border-radius: 20px;
}

.rounded-7 {
  border-radius: 7px !important;
}

.bg-re-purple3 {
  background-color: #5063d3 !important;
}

.icon45 {
  width: 45px !important;
  min-width: 45px !important;
  height: 45px !important;
  min-height: 45px !important;
}

.mlb-n20{
  margin-left: -20px;
  margin-bottom:-20px;
}

.font-30 {
  font-size: 1.875rem; }

.font-22 {
  font-size: 1.375rem; }

.width-300 { width:300px !important; }

.thumb-bg-white-t {
  background-color: rgba(255, 255, 255, 1);
  color: #20232C !important;
}
.thumb-bg-purple-t, .bg-purple-t {
  background-color: rgba(80, 99, 211, 1);
  color: #FFFFFF !important;
}
.thumb-bg-black-t, .bg-black-t {
  background-color: rgba(32, 35, 44, 1);
  color: #FFFFFF !important;
}

.re-type-badge {
  box-sizing: border-box;
  padding: 3px 8px !important;
  border-radius: 20px;
}

.flex-gap-5 {
  gap: 5px;
}

/* MASONRY GRID
========================================================== */
.masonry-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    /*grid-gap: 10px;*/
    /*grid-auto-rows: 20px;*/
    padding: 0;
}

.masonry-grid-layout-research {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  padding: 0;
}

.grid-item {
    background-color: inherit;
}
.pd-item-title {
  padding: 5px 10px;
  margin-bottom: 10px;
  background-color: #F5F5F5;
  border-radius: 7px;
}
@media (max-width: 430px){
  .pd-item-title{
    max-width: 85%;
  }
  }

  .pd-item-element {
    padding: 0 10px;
  }
  @media (max-width: 430px){
  .pd-item-element{
    max-width: 90%;
  }
  .masonry-grid-layout-research .pd-item-title,
  .masonry-grid-layout .pd-item-title  {
    max-width: 100%;
  }
}



#researchGalleryContainer .gallery-media-thumbnail-wrapper {
  width: 50%;
  color: white;
  position: absolute;
  bottom: 20px;
  left: 30px;
}

.gallery-media-thumbnail-wrapper {
  display: flex;
  justify-content: start;
  align-items: center;
}

.gallery-media-thumbnail {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gallery-media-thumbnail:hover img {
  filter: brightness(70%);
  transition: filter 0.3s;
}

.gallery-media-thumbnail img, .gallery-media-thumbnail .thumb {
  width: 85px;
  height: 65px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 3px;
  transition: filter 0.3s;
}

.gallery-media-thumbnail .thumb {
  background-color: white;
}

#gallery-actions, #gallery-actions-secondary {
  position: fixed;
  top: 0px;
  left: 29px;
  width: calc(100% - 2px);
  z-index: 1000;
}
#gallery-actions-secondary {
  padding: 10px 30px;
}
#gallery-actions {
  padding: 30px;
}

@media (min-width: 992px) {
  #gallery-actions, #gallery-actions-secondary {
    width: 898px;
    left: calc(50% - 449px);
  }
}

@media (min-width: 1200px) {
  #gallery-actions, #gallery-actions-secondary {
    width: 1138px;
    left: calc(50% - 569px);
  }
}

#gallery-actions .btn {
  box-shadow: none;
}

#gallery-actions .btn:hover {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s;
}

#listingDetailsModal {
  padding-left: 15px;
}

#listingDetailsModal .table tr:first-child th {
  font-size: 15px;
  background-color: #ffffff;
  color: #000000;
  font-weight: bold;
}

#listingDetailsModal .table tr {
  height: 59px;
}

/*details icons*/
.listing-details-badge-marker {
  position: relative;
  z-index: 1;
}
.listing-details-badge-marker::before {
  font-family: "res-icons" !important;
  color: #fff;
  position: absolute;
  z-index: 2;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.listing-details-badge-marker[data-icon="general-building"] .pin-main { fill: rgb(18 101 167); }
.listing-details-badge-marker[data-icon="general-building"]::before { content: "\e19f";}

.listing-details-badge-marker[data-icon="shopping-cart"] .pin-main { fill: rgb(233 63 131); }
.listing-details-badge-marker[data-icon="shopping-cart"]::before { content: "\e1a0"; }

.listing-details-badge-marker[data-icon="cutlery"] .pin-main { fill: rgb(233 63 63); }
.listing-details-badge-marker[data-icon="cutlery"]::before { content: "\e19e"; }

.listing-details-badge-marker[data-icon="park2"] .pin-main { fill: rgb(117 176 0); }
.listing-details-badge-marker[data-icon="park2"]::before { content: "\e0b4"; }

.listing-details-badge-marker[data-icon="location4"] .pin-main { fill: rgb(221 184 66); }
.listing-details-badge-marker[data-icon="location4"]::before { content: "\e0db"; }

.listing-details-badge-marker[data-icon="cocktail"] .pin-main { fill: rgb(136 96 205); }
.listing-details-badge-marker[data-icon="cocktail"]::before { content: "\e19c"; }

.grid-gap-20 {
  grid-gap: 20px;
}

.max-lgth-20-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 20;
  -webkit-box-orient: vertical;
}

.bg-re-blue1 {
  background-color: #1CB0FF !important; }

.badge { font-weight: 500; }

.font-8 {
  font-size: 0.5rem; }

.max-lgth-5-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.max-lgth-1-line {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.default-icon-settings {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
}

.alt-dropdown-menu {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
  border-radius: 10px;
  border: 1px solid #ddd;
  position: absolute;
  z-index: 1000;
  background-color: #fff;
  display: none;
}

.max-height-230 {
  max-height: 230px !important;
}

.flex-gap-10 {
  gap: 10px;
}

#listingDetailsModal {
  padding-left: 15px;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 0.938rem;
  box-shadow: 0 0.25rem 0.5rem rgb(0 0 0 / 10%);
  outline: 0;
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.show {
  overflow: scroll;
}