:root {
  --heading-font-family: 'Playfair Display', serif;
  --body-font-family: 'Muli', sans-serif;

  --font-size-large: 60px;
  --font-size-medium: 36px;
  --font-size-small: 24px;
  --font-size-subtitle: 18px;
  --font-size-body-copy: 16px;
  --font-size-body-small: 14px;
  --font-size-caption: 12px;
  --font-size-pdf: 8px;
  --line-height-pdf: 10px;

  --font-weight-bold: 700;
  --font-weight-semi-bold: 600;
  --font-weight-normal: 400;

  --line-height-base: 1.5;
  --line-height-second: 1.25;

  --primary-color-first: #4A835E;
  --primary-color-second: #DEDEDE;

  --secondary-color-first: #436C51;
  --secondary-color-second: #E2EFE7;
  --secondary-color-third: #BDC7C1;
  --secondary-color-fourth: #474748;
  --secondary-color-fifth: #FF2500;
  --secondary-color-sixth: #CFD0D7;
  --secondary-color-seventh: #CFD0D7;
  --secondary-color-eight: #A5A5A5;

  --secondary-color-first-hover: #CFD0D7;
  --secondary-color-second-hover: #F2E8B1;

  --main-background-color: #FAFAFA;

  --nav-link-color: #000000;

  --icon-search-light: url('/assets/images/icons/ui/icon-magnifying-white.svg');

  --icon-search-dark: url('/assets/images/icons/ui/icon-magnifying-dark.svg');
  --icon-search-grey: url('/assets/images/icons/ui/icon-magnifying-grey.svg');
  --icon-view-grey: url('/assets/images/icons/ui/icon-view-grey.svg');
  --icon-plus: url('/assets/images/icons/ui/icon-plus.svg');
  --icon-filter: url('/assets/images/icons/ui/icon-filter.svg');
  --icon-sort: url('/assets/images/icons/ui/icon-sort.svg');
  --icon-menu-dot: url('/assets/images/icons/ui/icon-menu-dot.svg');
  --icon-check: url('./assets/images/icons/ui/icon-check.svg');

  --icon-email: url('/assets/images/icons/ui/icon-email-light.svg');
  --icon-phone: url('/assets/images/icons/ui/icon-call-light.svg');
  --icon-text: url('/assets/images/icons/ui/icon-text-light.svg');
  ;

  --table-col-max-width: 10px;
}

html * {
  line-height: var(--line-height-base)
}

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

h1,
.h1 {
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-second);
}

h2,
.h2 {
  font-size: var(--font-size-medium);
  font-weight: var(--font-weight-bold);
}

h3,
.h3 {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-bold);
}

h5 {
  font-size: var(--font-size-subtitle);
}

h1,
h2,
h3,
h4 {
  font-family: var(--heading-font-family) !important;
  color: var(--secondary-color-fourth);
  font-weight: var(--font-weight-bold)
}

p,
.p-small,
.p-caption,
.p-pdf,
.form-group *,
.btn,
form *,
label,
table *,
input::placeholder,
.context-menu-item span,
select, a {
  font-family: var(--body-font-family);
  color: var(--secondary-color-fourth);
  font-weight: var(--font-weight-normal);
}
.form-group {
  padding-bottom: 1rem;
  margin-bottom: 0px;
}
body{
  font-size: var(--font-size-body-small);
}

p, .context-menu-item span {
  /*font-size: var(--font-size-body-copy);*/
  font-size: var(--font-size-body-small);
}

.p-body-copy {
  font-size: var(--font-size-body-copy);
}
.p-small {
  font-size: var(--font-size-body-small);
}
.p-caption {
  font-size: var(--font-size-caption);
}
.p-pdf {
  font-size: var(--font-size-pdf);
  line-height: var(--line-height-pdf);
}
.fa {
  font-family: FontAwesome !important;
}
.fa-sort-up, .fa-sort-down {
  font-size: 16px;
  cursor: pointer;
  line-height: 1.5;
}
.fa-sort-default {
  background: url('/assets/images/icons/ui/small-arrow-sortable.svg');
  height: 11.5px;
  width: 12px;
  background-repeat: no-repeat;
}
.fa-custom-up {
  background: url('/assets/images/icons/ui/small-arrow-down.svg');
  height: 6px;
  width: 12px;
  background-repeat: no-repeat;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-custom-down {
  background: url('/assets/images/icons/ui/small-arrow-down.svg');
  height: 6px;
  width: 12px;
  background-repeat: no-repeat;
}

.super-h1 {
  font-size: 60px;
}

.icon-header {
  width: 30px;
  height: 30px;
}

.ff-playfair {
  font-family: var(--heading-font-family);
}

.ff-muli {
  font-family: var(--body-font-family) !important;
  /*color: var(--secondary-color-eight); */
}

.bg-primary-first {
  background-color: var(--primary-color-first);
}

.bg-primary-second {
  background-color: var(--primary-color-second);
}

.bg-secondary-first {
  background-color: var(--secondary-color-first) !important;
}

.bg-secondary-second {
  background-color: var(--secondary-color-second);
}

.bg-secondary-third {
  background-color: var(--secondary-color-third);
}

.bg-secondary-fourth {
  background-color: var(--secondary-color-fourth);
}

.bg-secondary-fifth {
  background-color: var(--secondary-color-fifth);
}

.bg-secondary-sixth {
  background-color: var(--secondary-color-sixth);
}

.bg-secondary-seventh {
  background-color: var(--secondary-color-seventh);
}

.bg-secondary-eight {
  background-color: var(--secondary-color-eight);
}

.text-color-primary {
  color: var(--primary-color-first) !important;
}
.text-color-primary-second {
  color: var(--primary-color-second) !important;
}
.text-color-secondary-fourth {
  color: var(--secondary-color-fourth) !important;
}
.text-color-secondary-first {
  color: var(--secondary-color-first) !important;
}
.text-color-secondary-sixth {
  color: var(--secondary-color-sixth) !important;
}
.close {
  opacity: 1;
}

.hr,
hr {
  border: solid 0.5px var(--secondary-color-third);
}

.btn {
  border: none;
  border-radius: 0px;
  font-weight: var(--font-weight-bold);
}

.btn:hover {
  color: white;
}

.btn-super-small {
  padding: 14px 19px;
}

/*.btn-small {padding: 14px 55px;}*/
.btn-small {
  max-width: 200px;
  width: 100%;
  min-width: 150px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-large {
  /*padding: 20px 95px;*/
  width: 250px;
  height: 48px;
}

.btn-primary {
  color: #FFF;
  background: var(--primary-color-first);
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--secondary-color-first) !important;
}

.btn-primary:disabled {
  background: var(--secondary-color-first) !important;
  border: unset;
}

.spinner-btn {
  position: absolute;
  margin: auto;
  left: 70px;
  top: 0;
  bottom: 0;
  right: 0;
}

.submit_input {
  position: relative;
}

.btn-primary:focus, .show>.btn-primary.dropdown-toggle {
  background: var(--primary-color-first);
  border: unset;
}

.list-unstyled {
  position: relative;
}
/*.btn-secondary{color: var(--primary-color-second); background: var(--primary-color-first);}
.btn-secondary:hover{background: var(--secondary-color-second-hover);color: var(--primary-color-second);}*/

.btn-tertiary {
  color: var(--secondary-color-fourth);
  background: #FFF;
  border: solid 1px var(--secondary-color-fourth)
}

.btn-tertiary:hover {
  background: var(--primary-color-first);
  color: #FFF
}

.icon-search-light {
  background: var(--icon-search-light) no-repeat;
  width: 20px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}

.icon-phone {
  background: var(--icon-phone) no-repeat;
  width: 20px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}

.icon-text {
  background: var(--icon-text) no-repeat;
  width: 20px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}

.icon-email {
  background: var(--icon-email) no-repeat;
  width: 20px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}


.icon-search-dark {
  background: var(--icon-search-dark) no-repeat;
  width: 20px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}

.icon-search-grey {
  background: var(--icon-search-grey) no-repeat;
  width: 20px;
  height: 16px;
  display: inline-block;
  background-size: contain;
}

.icon-view-grey {
  background: var(--icon-view-grey) no-repeat;
  width: 20px;
  height: 14px;
  display: inline-block;
  background-size: contain;
}

.icon-plus {
  background: var(--icon-plus) no-repeat !important;
  width: 19.5px;
  height: 19.5px;
}

.icon-filter {
  background: var(--icon-filter) no-repeat !important;
  width: 21px;
  height: 21px;
}

.icon-sort {
  background: var(--icon-sort) no-repeat !important;
  width: 21px;
  height: 21px;
}

.icon-menu-dot {
  background: var(--icon-menu-dot) no-repeat !important;
  width: 5px;
  height: 22px;
}

.icon-menu-dot.context-menu {
  /*margin-top: 2px;*/
}

.icon-check {
  background: var(--icon-check) no-repeat !important;
  width: 13px;
  height: 8.5px;
}

.btn-tertiary:hover .icon-search-dark {
  background: var(--icon-search-light) no-repeat;
  background-size: contain;
}

[data-read_status="false"] * {
  font-weight: 800;
  color: black !important;
}

.notification-count {
  width: 20px;
  height: 20px;
  background-color: #ff2500;
  border-radius: 18px;
  bottom: -10px;
  right: -20px;
}

.notification-count * {
  color: #fff !important;
  font-style: normal;
  font-size: var(--font-size-body-small);
}

/*forms*/
.form-group {
  /*max-width: 360px;*/
}

.form-group input,
.form-group select,
.input-group-text {
  border-radius: 0px;
  border-color: var(--secondary-color-third);
}

input::placeholder {
  color: var(--secondary-color-sixth) !important;
}

.form-group,
label {
  color: var(--primary-color-second);
}

.border-color-secondary-first {
  border-color: var(--secondary-color-first) !important;
}

.border-color-secondary-first::placeholder {
  color: var(--primary-color-second) !important;
}

select.form-control:not([size]):not([multiple]) {
  height: unset;
}

.form-control:focus {
  box-shadow: unset;
  border-color: #ced4da;
}

.form-control {
  font-size: var(--font-size-body-copy);
  font-family: var(--body-font-family);
  /*min-height: 45px !important;*/
  height: auto;
}
.select2-search__field {
  min-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
  min-height: 38px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 38px !important;
}
.btn-primary:focus {
  box-shadow: unset !important;
}

.tagwidget {
  padding: 0px;
  border: unset;
}

.select2-choices {
  border-color: var(--secondary-color-third) !important;
}

.search-border {
  border: solid 1px var(--secondary-color-third);
  border-radius: 4px;
}

/*.custom-select{background:#fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23bca68c' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center}*/
.custom-textarea {
  border-radius: 0px !important;
  padding: 20px 20px 40px 20px !important;
}

textarea {
  outline: unset;
}

/*--checkboxes*/
.form-check-input {
  width: 24px;
  height: 24px;
}

.form-check {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.form-check input,
.form-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  left: 20px;
  top: -5px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 24px;
  width: 24px;
  background-color: rgba(9, 19, 33, 0.08);
}

/* On mouse-over, add a grey background color */
.form-check:hover input~.checkmark {
  /*background-color: var(--secondary-color-first);*/
}

.form-check input~.checkmark {
  background-color: var(--primary-color-second);
  border: solid 1px var(--primary-color-second);
}

.form-check input:disabled~.checkmark {
  background-color: var(--secondary-color-third);
  border: solid 1px var(--secondary-color-fourth);
}

/* When the checkbox is checked, add a blue background */
.form-check input:checked~.checkmark {
  /*background-color: var(--primary-color-first);*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-check input:checked~.checkmark:after {
  display: block !important;
}

/* Style the checkmark/indicator */
.form-check .checkmark:after {
  width: 24px;
  height: 24px;
  /*border: solid var(--secondary-color-first);*/
  -ms-transform: unset;
  /*background: var(--secondary-color-first);*/
  background: url('/assets/images/icons/ui/checkbox-light-active.svg') no-repeat;
  left: 0px;
  top: 0px;
}

.form-radio .checkmark,
.form-radio .checkmark::after {
  border-radius: 12px;
}

.border-color-third(border-color: var(--secondary-color-third);
)

/*Tables*/
.table {
  color: var(--primary-color-second);
}

.table.table-hover thead th {
  background: var(--secondary-color-second);
  border: none;
  text-transform: uppercase;
  vertical-align: top;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
}

.table.table-hover thead tr th:first-child,
.table.table-hover tbody tr td:first-child {
  padding-left: 25px;
}

.table.table-hover thead tr th:last-child,
.table.table-hover tbody tr td:last-child {
  padding-right: 30px;
}

/*.table.table-hover thead th:nth-child(n+3) {
  min-width: 75px;
}*/

.items-table.contact-table thead th:nth-child(n+4), .items-table.listings-table thead th:nth-child(n+3) {
  min-width: 75px !important;
}

.table.table-hover tbody tr td {
  border: none;
  border-bottom: 1px solid var(--secondary-color-sixth);
  /*padding: 8.5px;*/
  vertical-align: middle;
  padding-top: 6px;
  padding-bottom: 6px;
}

.bootstrap-datetimepicker-widget table td.active {
  background: var(--secondary-color-first) !important;
  color: #fff !important;
}

.items-table thead th:nth-last-child(2){
  padding-right: 80px;
}
.datepicker thead tr * {
  font-weight: bold !important;
}
.bootstrap-datetimepicker-widget table td.day:hover {
  background: var(--secondary-color-second) !important;
}
.bootstrap-datetimepicker-widget.dropdown-menu {
  min-width: 285px !important;
}
table tbody *, table tbody tr td a {
  color: #666666 !important;
}

table thead {
  color: #000000;
}

.items-table.contact-table tbody td:nth-child(3), .items-table.listings-table tbody td:nth-child(2) {
  border-right: 1px solid var(--secondary-color-sixth) !important;
  min-width: 65px;
}

.items-table thead th:nth-child(1), .items-table tbody td:nth-child(1),
.items-table thead th:nth-child(2), .items-table tbody td:nth-child(2),
.items-table thead th:nth-child(3), .items-table tbody td:nth-child(3)  {
  word-wrap: break-word;
  min-width: unset;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.items-table.contact-table thead th:nth-child(1), .items-table.contact-table tbody td:nth-child(1),
.items-table.contact-table thead th:nth-child(2), .items-table.contact-table tbody td:nth-child(2),
.items-table.contact-table thead th:nth-child(3), .items-table.contact-table tbody td:nth-child(3),
.items-table.listings-table thead th:nth-child(1), .items-table.listings-table tbody td:nth-child(1),
.items-table.listings-table thead th:nth-child(2), .items-table.listings-table tbody td:nth-child(2)
{
  max-width: 43px;
  width: 43px;
}

.items-table.contact-table thead th:nth-child(3), .items-table.contact-table tbody td:nth-child(3),
.items-table.listings-table thead th:nth-child(2), .items-table.listings-table tbody td:nth-child(2)
{
  padding-right: 30px;
}

.items-table.contact-table thead th:nth-child(4), .items-table.contact-table tbody td:nth-child(4),
.items-table.listings-table thead th:nth-child(3), .items-table.listings-table tbody td:nth-child(3) {
  padding-left: 30px;
}

.items-table tbody tr td:last-child {
  border-right: 1px solid var(--secondary-color-sixth);
}

.items-table tbody td {
  white-space: nowrap;
}

.table tbody tr td .form-check {
  line-height: 1;
}

/*Pagination*/
.pagination .page-item.active .page-link {
  color: var(--primary-color-second);
  background-color: var(--main-background-color);
}

.pagination .page-item.arrow .page-link {
  color: var(--primary-color-second);
  font-weight: var(--font-weight-bold)
}

.pagination .page-item .page-link {
  color: var(--secondary-color-third);
  font-family: var(--body-font-family);
  border: none;
  line-height: var(--line-height-base);
  background-color: var(--main-background-color);
}

.page-item.active.disabled .page-link {
  color: #666666;
}

.page-item.disabled .page-link {
  color: var(--secondary-color-sixth);
}



body{
  /*min-height: 100vh;*/
}

main{
  min-height: calc(100vh - 168px);
}


/*==============
    Header
==============*/
header,
.dropdown-menu {
  background-color: var(--main-background-color);
}

header,
main, body {
  background-color: var(--main-background-color);
}

.dropdown-menu, .select2-dropdown.select2-dropdown--below {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: none;
  border-radius: 0px;
}

.select2-dropdown.select2-dropdown--below * {
  font-size: 14px;
}
.dropdown-item {
  color: #4c4c4c !important;
  font-size: 14px;
  font-weight: 400;
}

.navbar-expand-sm .navbar-nav .nav-link {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}

.navbar {
  /*box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);*/
}

header {
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-semi-bold);
  color: var(--nav-link-color) !important;
  font-family: var(--body-font-family);
}

footer {
  background: var(--primary-color-second) !important;
  font-family: var(--body-font-family);
}

footer .nav-link {
  font-size: var(--font-size-body-small) font-weight: normal;
}

.nav-link {
  color: var(--nav-link-color) !important;
}

.nav-link:hover {
  color: rgba(0, 0, 0, .5) !important;
}

.vertical-hr {
  width: 0;
  height: 30px;
  border: solid 1px #4c4c4c;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

header .nav-link {
  text-transform: uppercase;
}

.placeholder-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #4c4c4c;
}

.nav-custom-container {
  max-width: 1000px;
  min-width: 400px;
  width: 100%;
}

/*For hover on md+*/
@media (min-width: 768px) {
  .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: .3s ease all;
  }

  .nav-custom-container {
    max-width: 1000px;
    min-width: 1000px;
    width: 100%;
  }

  .dropdown:hover > .dropdown-menu,
  .dropdown .dropdown-menu:hover {
    display: block;
    visibility: visible;
    opacity: 1;
    transition: .3s ease all;
  }

  .dropdown>.dropdown-toggle:active {
    pointer-events: none;
  }

  .navbar {
    height: 84px;
  }
  .l-amenities li{
    flex-basis: 25%;
  }
}

.datepicker-days tr{
  background: white;
}

/*LOGIN*/
#login-form {
  max-width: 410px;
  margin: 0 auto;
}

.form-inner {
  width: 100%;
}

.password-reset-link p a {
  color: var(--secondary-color-third);
}

.form-inner {
  border-radius: 4px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px rgba(74, 131, 94, 0.3);
  background-color: #fafafa;
  padding: 50px;
}

.login-bg {
  background-image: url('/assets/images/login-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: calc(100vh - 168px);
  /*min-height: 82vh;*/
}

.form_top {
  position: absolute;
  width: 164px;
  top: -5%;
  left: 0;
  right: 0;
  margin: auto;
}

.border-grey {
  border: solid 1px var(--secondary-color-third);
}


/*Activity Stream*/
.stream-icon {
  width: 28px;
  height: 28px;
}

details[open]>summary:marker {
  content: "-";
}

details:focus, summary:focus, td:focus, .dropdown-item:focus, a:focus {
  outline: none;
}

details>summary .details-arrow {
  background: url('/assets/images/icons/ui/path-84.svg') no-repeat;
  background-size: 15px 7.5px;
  width: 15px;
  height: 7.5px;
}

details[open]>summary .details-arrow {
  background: url('/assets/images/icons/ui/path-74.svg') no-repeat;
  background-size: 15px 7.5px;
  width: 15px;
  height: 7.5px;
}

details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}

@keyframes sweep {
  0%    {opacity: 0; margin-top: -10px}
  100%  {opacity: 1; margin-top: 0px}
}

.max-vh-100 {
  max-height: 100vh;
  overflow: scroll;
}

summary::marker {
  font-size: 0px;
}

summary::-webkit-details-marker {
  font-size: 0px;
}
/*.custom-select:focus {border: 1px solid #ced4da !important; box-shadow: unset !important;}*/

/*Context Menu*/
.context-menu-list{
  font-family: var(--body-font-family);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.16);
  border: unset;
  z-index: 120000 !important;
}
.dropdown-menu > .dropdown-item:hover, .context-menu-item:hover {
  background: var(--secondary-color-second) !important;
  color: var(--secondary-color-fourth) !important;
}
.cursor-pointer{
  cursor: pointer;
}
.filter-icon {
  width: 12.7px;
  height: 8.2px;
}
.input-group-prepend{
border: 1px solid #ced4da;
}
.input-group-text{
  border: unset;
}
.starred{
  height: 23px;
  width: 24px;
  background-repeat: no-repeat;
  margin: 4px auto;
  margin-top: 4px;
  margin-bottom: 4px;
}
.starred:hover {
  background-image: url('/assets/images/icons/ui/icon-starred-hover.svg');
}
[data-starred="true"] {
  background-image: url('/assets/images/icons/ui/icon-starred.svg');
}
[data-starred="false"]{
  background-image: url('/assets/images/icons/ui/icon-star-g-light.svg');
}

/*homepage*/
.hero-image {
  background-image: url('/assets/images/hero-image.png');
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 110vh;
}
.home-icons {
  width: 120px;
}
.card {
  border-radius: 12px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.16);
  border: unset;
  min-height: 470px;
}
.card-about {
  min-height: 350px;
}
.card-body {
  min-height: 230px;
}
.tagwidget{
  width: 100% !important;
}

.update-form .form-group {max-width: unset;}

/*Search Bar*/
.search-form-wrapper {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: var(--secondary-color-second);
    z-index: 999;
}
.search-form .form-group{
  max-width: unset !important;
}
.search-form-wrapper.open {
    display: block;
}
[v-cloak] {
  display: none;
}
.activity-stream-container {
  max-height: calc(100vh - 150px);
  height: 100%;
}
.activity-stream {
  /*max-height: 800px;*/
  overflow-y: scroll;
  height: calc(100% - 70px);
}
.activity-stream-content {
  border-radius: 6px;
}
.active-listings.search-border {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.search-row-btn div {
  flex-grow: 1;
  margin: 0px 3px;
}
/*media queries*/
@media (max-width: 768px) {
  h1 {
    font-size: var(--font-size-medium);
  }
  h2 {
   font-size: var(--font-size-small);
  }
  .hero-image {
    background-size: contain;
    background-position: 100% 80%;
    min-height: 90vh;
  }
  .demo-form {
    flex-direction: column;
  }
  .demo-form input, .web-title {
    width: 100% !important;
  }
  footer nav {
    flex-direction: column;
  }
  .search-row-btn div a{
    width: 100%;
    margin-top: 3.5px;
    margin-bottom: 3.5px;
  }
  .l-amenities li{
    flex-basis: 50%;
  }
}


.zindex-dropdown {
  z-index: 1000 !important;
}
.zindex-sticky{
  z-index: 1020 !important;
}
.zindex-fixed{
  z-index: 1030 !important;
}
.zindex-modal-backdrop  {
  z-index: 1040 !important;
}
.zindex-modal{
  z-index: 1050 !important;
}
.zindex-popover {
  z-index: 1060 !important;
}
.zindex-tooltip {
  z-index: 1070 !important;
}

/*alerts*/
.message_list {
  list-style: none;
  padding-left: 0px;
}
.message_list li {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
      border-top-color: transparent;
      border-right-color: transparent;
      border-bottom-color: transparent;
      border-left-color: transparent;
  border-radius: .25rem;
}
.message_list .warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.message_list .error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.message_list .success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.message_list .info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/*Filters*/
.modal-content {
  border-radius: 15px;
}

.filters-form #div_id_status .custom-control, .filters-form #div_id_c_type .custom-control{
  width: 25%;
}
.filters-form #div_id_status > div, .filters-form #div_id_c_type > div {
  display: flex;
  justify-content: flex-start;
}

.page-link:focus {
  box-shadow: unset;
}
.prev-link:hover, .next-link:hover {
    background: var(--secondary-color-first-hover) !important;
}
.custom-checkbox .custom-control-label {
  line-height: 24px !important;
}


/*crispy form*/
/*.custom-checkbox label::before, .custom-checkbox label::after{
  display: none !important;
}*/


/*select 2*/
.select2-container--default .select2-selection--single {
  border-radius: 0px !important;
}
.select2-selection__rendered, .select2-selection__arrow, .select2-selection {
  /*min-height: 40px !important;*/
  /*will adjust more in the next push*/
  /*height: auto !important;*/
  /*line-height: 38px !important;*/
  outline: unset !important;
}
.select2-selection__rendered:foucs {
  outline: unset !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--secondary-color-second) !important;
  color: var(--secondary-color-fourth) !important;
}
.select2-container--default .select2-selection--single {
  border-color: var(--secondary-color-third) !important;
}
.select2-selection__choice {
  background-color: var(--secondary-color-second) !important;
  border-color: var(--secondary-color-first) !important;
}
.select2-search__field {
  outline: none !important;
}
.select2-selection {
  border-radius: 0px !important;
  border-color: var(--secondary-color-third) !important;
}
.white-no-wrap {
  white-space: nowrap;
}
.select2-container {
  width: 100% !important;
  max-width: 600px;
}

.search-form .select2-container {
  max-width: unset !important;
}


.subways { margin-right: 8px;}
/* Subway icons*/
.subways span { display: block; width: 25px; height: 26px; margin: 0; margin-right: 20px; margin-bottom: 20px; background-repeat: no-repeat; background-position: center; background-size: 100%;}
.subways .subway_1 { background-image:  url("/assets/images/icons/subway/1.svg"); }
.subways .subway_2 { background-image:  url("/assets/images/icons/subway/2.svg"); }
.subways .subway_3 { background-image:  url("/assets/images/icons/subway/3.svg"); }
.subways .subway_4 { background-image:  url("/assets/images/icons/subway/4.svg"); }
.subways .subway_5 { background-image:  url("/assets/images/icons/subway/5.svg"); }
.subways .subway_6 { background-image:  url("/assets/images/icons/subway/6.svg"); }
.subways .subway_7 { background-image:  url("/assets/images/icons/subway/7.svg"); }
.subways .subway_A { background-image:  url("/assets/images/icons/subway/a.svg"); }
.subways .subway_C { background-image:  url("/assets/images/icons/subway/c.svg"); }
.subways .subway_E { background-image:  url("/assets/images/icons/subway/e.svg"); }
.subways .subway_H { background-image:  url("/assets/images/icons/subway/h.svg"); }
.subways .subway_B { background-image:  url("/assets/images/icons/subway/b.svg"); }
.subways .subway_D { background-image:  url("/assets/images/icons/subway/d.svg"); }
.subways .subway_F { background-image:  url("/assets/images/icons/subway/f.svg"); }
.subways .subway_M { background-image:  url("/assets/images/icons/subway/m.svg"); }
.subways .subway_G { background-image:  url("/assets/images/icons/subway/g.svg"); }
.subways .subway_J { background-image:  url("/assets/images/icons/subway/j.svg"); }
.subways .subway_Z { background-image:  url("/assets/images/icons/subway/z.svg"); }
.subways .subway_L { background-image:  url("/assets/images/icons/subway/l.svg"); }
.subways .subway_N { background-image:  url("/assets/images/icons/subway/n.svg"); }
.subways .subway_Q { background-image:  url("/assets/images/icons/subway/q.svg"); }
.subways .subway_R { background-image:  url("/assets/images/icons/subway/r.svg"); }
.subways .subway_S { background-image:  url("/assets/images/icons/subway/s.svg"); }
.subways .subway_SIR { background-image:  url("/assets/images/icons/subway/sir.svg"); }
.sub_wrap { clear: both; margin-bottom: 20px}

.stats {
  /*background: url(/assets/images/listings/pattern.png) repeat;*/
  min-height: 105px;
  padding: 35px 0;
  /*border-bottom: 0.5px solid var(--secondary-color-third);*/
}
.table-responsive {
  overflow-y: initial !important;
}

/*Uploads Page*/
.media_upload td:first-child, .media_upload td:nth-child(2) {
  display: none;
}
.media_upload .order input {
  width: 45px;
  background: transparent;
  border: none;
}
.media_upload td:nth-child(4), .draggable-icon{
  background-image: url(/assets/images/icons/ui/re-order.png);
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: 9px center;
}

/*Listing*/
.listing-detail-img {
  max-height: 450px;
  width: auto;
  margin-left: auto;
}

/*Filter*/
.filter-item {
  border-radius: 100px;
  background-color: rgba(74, 131, 94, 0.1);
  color: var(--secondary-color-first);
  font-size: 14px;
  line-height: 18px;
  padding: 4px 10px;
}

.hidden_large {display: block; position:fixed; top:0; left: 0; padding: 10px; background-color: #fff; border-radius: 3px; border:1px solid #ccc; z-index: 2000}
.hidden_large img {max-height: 600px}

#sortable_media {
  max-height: 580px;
  overflow-y: scroll;
}

.listing-photo-row {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow-x: scroll;
  text-align: center;
  padding: 10px 0px;
}

/*::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 9px;
  border: 4px solid transparent;
  background-color: rgba(0, 0, 0, .5);
  box-shadow: 0 0 1px rgba(255, 255, 255, .3);
  background-clip: content-box;
}*/
.flex-row-wrap {
  flex-flow: row wrap;
}
.asteriskField {
  color: red;
  padding-left: 3px;
  font-weight: bold;
  font-size: var(--font-size-body-copy);
}

.modal-header {
  border-bottom: unset;
}

.listing_photo_descr:not(:empty) {
  padding-top: 3px;
  padding-bottom: 3px;
}
.listing_photo_descr {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  width: 200px;
  margin-right: -205px;
  padding-left: 20px;
  background: rgba(2, 2, 2, 0.41);
  color: #fff;
  font-size: 12px;
}

.hint:after, [aria-label]:after {
  white-space: initial !important;
  width: 250px;
  max-width: 250px;
}

.pre .hint:after, .pre:after {
  /*white-space: pre !important;*/
  white-space: break-spaces !important;
}

.items-table thead tr {
  position: relative;
}

.mb-10 {
  margin-bottom: 6rem !important;
}

/*logo*/
header .navbar-brand img{
  height: 20px;
}

.help_text {
  font-size: 16px;
  font-weight: bold;
}

.header-btn {
  font-size: 12px;
}

.nav-item {
  display: flex;
  align-items: center;
}

.video-mb-120 {
  margin-bottom: 8rem;
}

.nav-icon {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.nav-custom-container h5, .nav-custom-container p {
  color: #474748;
}

.nav-custom-container p {
  font-weight: 100;
}

.nav-custom-container {
  border-radius: 15px;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.16);
}

header #nav-left-menu {
  position: relative;
}

header #nav-left-menu .nav-item {
  position: unset;
}

.text-decoration-first:hover {
  text-decoration-color: var(--primary-color-first);
}

.activity-stream-content .text-left ~ div {
  text-align: left !important;
}


/*Automation*/
.automation-card .status-draft {
  border-radius: 20px;
  background-color: var(--secondary-color-sixth);
  color: black;
}

.automation-card .status-active {
  border-radius: 20px;
  background-color: var(--primary-color-first);
  color: white;
}

.automation-card p {
  font-size: var(--font-size-subtitle);
}

.rc-min-height {
  min-height: 220px
}

.report-spacing li, .report-spacing li p {
  display: flex;
  justify-content: space-between;
}


