/*
Theme Name: MSPECS Standard
Description: The new standard theme
Version: 1.1.0
Tags: mspecs, standard
*/

/* Imports */
@import url('bootstrap/css/bootstrap.css');

/* apply a natural box layout model to all elements */
*, *:before, *:after { -webkit-box-sizing: border-box; box-sizing: border-box; }


/* LEGACY CSS, NEED TO GO THROUGH AND REMOVE */
#search { margin: 3px 0 0 0; }

/*#main-navigation { position: fixed; width: 100%; z-index: 100; }*/
#main-navigation .navbar {
    padding: 10px 0;
}
#menu-main-menu li {
    float: left;
    margin-top: 10px;
    margin-right: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 1.1em;
}
@media(max-width: 991px) {
    #menu-main-menu li {
        width: 100%;
    }
}

#menu-main-menu li a { color: #1C1A24;}
#menu-main-menu li a:hover { color: #66CCCC;}
#menu-main-menu .current-menu-item {
    border-bottom: 2px solid #fff;
}
#logo { padding-top: 70px; padding-bottom: 10px; }

/*#main-content { padding: 100px 0 0px; }*/
/*#main-content .container { background-color: #fff; padding-top: 20px; padding-bottom: 30px; }
#main-content .container.no-bg { background-color: transparent !important; }*/
footer { padding: 30px 0; text-align: center; }

/* overwrite css */
.widget_search { display: none !important; }
.widget_recent_entries { display: none !important; }
.widget_recent_comments { display: none !important; }
.widget_archive { display: none !important; }
.widget_categories { display: none !important; }
.widget_meta { display: none !important; }

/* END LEGACY CSS, NEED TO GO THROUGH AND REMOVE */


/* Variables */
:root {
  --mspecs-wp-primary-text-color: #434445;
  --mspecs-wp-secondary-text-color: #8E8E8E;
  --mspecs-wp-link-color: #343B8E;
  --mspecs-wp-primary-font-family: "Roboto", sans-serif;
  --mspecs-wp-primary-bg-color: #FFF;
  --mspecs-wp-secondary-bg-color: #f6f6f6;
  --mspecs-wp-third-bg-color: #eae8e8;
  --mspecs-wp-primary-button-color: #44464B;
  --mspecs-wp-primary-border-color: #C6C6C6;
  --mspecs-wp-large-font-size: 16px;
  --mspecs-wp-body-font-size: 14px;
  --mspecs-wp-small-font-size: 12px;
  --mspecs-wp-tiny-font-size: 11px;
  --mspecs-wp-default-container-width: 1054px;
  --mspecs-wp-large-container-width: 1280px;
}

/* Bootstrap container customizations */
.navbar {
  margin-bottom: 0;
}

/* If we want to increase the container size in the future */
/*@media (min-width: 1330px) {
  .container.mspecs-wp-container-large {
    width: var(--mspecs-wp-large-container-width);
  }
}*/

/* Set the maximum container size */
@media (min-width: 1200px) {
  .container {
    width: var(--mspecs-wp-default-container-width);
  }
}

.container { overflow: hidden; }

/* Helper classes */
.mspecs-wp-center-text { text-align: center; }
.mspecs-wp-right-text { text-align: right; }
.mspecs-wp-primary-background { background-color: var(--mspecs-wp-primary-bg-color); }
.mspecs-wp-secondary-background { background-color: var(--mspecs-wp-secondary-bg-color); }
.mspecs-wp-third-background { background-color: var(--mspecs-wp-third-bg-color); }
.mspecs-wp-first-letter-uppercase::first-letter { text-transform: uppercase; }
.mspecs-wp-block { display: block; }

/* General styles */
body {
  font-family: var(--mspecs-wp-primary-font-family);
  background-color: var(--mspecs-wp-primary-bg-color);
  color: var(--mspecs-wp-primary-text-color);
  font-size: var(--mspecs-wp-body-font-size);
  -webkit-font-smoothing: antialiased;
}

body.mspecs-wp-modal-active {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

a {
  color: var(--mspecs-wp-link-color);
}

.mspecs-wp-h5 {
  font-weight: 500;
  font-size: var(--mspecs-wp-large-font-size);
}

@media (max-width: 767px) {
  body {
    font-size: var(--mspecs-wp-small-font-size);
  }
}

/* Navbar */
.navbar-brand {
  display: block;
  padding: 0;
  height: 42px;
  margin-right: 30px;
}

.navbar-toggle {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mspecs-wp-navbar-logo {
  display: block;
  height: 100%;
}

/* Forms */
.mspecs-wp-input-container {
  margin-bottom: 15px;
}

.mspecs-wp-input-container.mspecs-wp-input-container-checkbox {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mspecs-wp-label {
  display: block;
  font-weight: 600;
}

.mspecs-wp-input-container-checkbox .mspecs-wp-input-checkbox {
  margin-right: 2px;
}

.mspecs-wp-input-checkbox {
  display: none;
}

.mspecs-wp-custom-checkbox {
  margin-right: 5px;
}

.mspecs-wp-input-checkbox + label:before {
  content: "";
  border: 1px solid var(--mspecs-wp-primary-border-color);
  border-radius: 4px;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  color: transparent;
  transition: .1s;
}

.mspecs-wp-input-checkbox:checked + label:before {
  background-color: #5587F7;
  background-image: url(img/check.svg);
  border-color: #5587F7;
  color: #fff;
}

.mspecs-wp-input-checkbox:disabled + label:before {
  opacity: 0.3;
}

.mspecs-wp-input-checkbox:checked:disabled + label:before {
  opacity: 0.3;
}

.mspecs-wp-mandatory-fields-notice {
  color: var(--mspecs-wp-secondary-text-color);
}

.mspecs-wp-mandatory-fields-notice .mspecs-wp-mandatory-asterisk {
  color: var(--mspecs-wp-secondary-text-color);
}

.mspecs-wp-mandatory-asterisk {
  color: #C35F48;
}

/* Deal header */
.mspecs-wp-property-header {
  padding-top: 30px;
}

@media (max-width: 630px) {
  .mspecs-wp-property-header {
    padding-bottom: 15px;
  }
}

.mspecs-wp-main-property-image {
  width: 100%;
}

/* Deal short info */
.mspecs-wp-short-info {
  background: var(--mspecs-wp-secondary-bg-color);
  padding: 10px 0 50px 0;
}

.mspecs-wp-broker-viewings-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 55px;
  margin-top: 10px;
}

.mspecs-wp-broker-container, .mspecs-wp-viewings-container {
  background: var(--mspecs-wp-primary-bg-color);
}

.mspecs-wp-broker-container {
  width: calc(50% - 28px);
  margin-right: 28px;
}

.mspecs-wp-viewings-container {
  width: calc(50% - 28px);
  margin-left: 28px;
}

@media (max-width: 768px) {
  .mspecs-wp-broker-viewings-container {
    flex-flow: column;
    padding: 0 15px;
  }
}

/* Facts */
#short-info {
  padding: 42px 40px 30px 40px;
}

@media (max-width: 768px) {
  #short-info {
    padding: 30px 0 30px 0;
  }
}

.mspecs-wp-short-info-block {
  padding: 10px;
}

.mspecs-wp-short-info-block-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 17px;
}

.mspecs-wp-facts-list-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 8px;
}

.mspecs-wp-facts-list {
  -webkit-columns: 2;
          columns: 2;
  -webkit-column-gap: 55px;
          column-gap: 55px;
}

.mspecs-wp-facts-list-item.mspecs-wp-facts-list-item-multiline {
  display: block;
}

.mspecs-wp-facts-list-item.mspecs-wp-facts-list-item-multiline .mspecs-wp-facts-list-item-inner {
  display: block;
}

.mspecs-wp-short-info .mspecs-wp-facts-list-item {
  width: 100%;
  position: relative;
  display: inline-block;
}

.mspecs-wp-short-info .mspecs-wp-facts-list-item.mspecs-wp-short-facts-bidding {
  margin-bottom: 12px;
}

.mspecs-wp-short-facts-subcontent {
  width: 100%;
  font-style: italic;
  text-transform: uppercase;
  text-align: right;
}

.mspecs-wp-show-bidding-modal {
  text-decoration: underline;
}

.mspecs-wp-facts-list-item-title {
  font-weight: 600;
  padding-right: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.mspecs-wp-facts-list-item-value {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-left: 5px;
}

.mspecs-wp-facts-list-item-multiline .mspecs-wp-facts-list-item-value {
  text-align: left;
}

.mspecs-wp-facts-list-item-spacer {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #DCDDDE;
  position: relative;
  top: -4px;
}

/* Deal short info facts (customizations for main property information section) */
.mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-title {
  width: 220px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-inner {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-spacer {
  display: none;
}

.mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-value {
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 767px) {
  .mspecs-wp-facts-list {
    -webkit-columns: unset;
            columns: unset;
  }
}

@media (max-width: 480px) {
  .mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-inner {
    display: block;
  }
  .mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-title {
    width: auto;
    padding-right: 0;
  }
  .mspecs-wp-property-information-wrapper .mspecs-wp-facts-list-item-value {
    display: block;
    padding-left: 0;
  }
}

/* Short info broker section */
.mspecs-wp-broker {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.mspecs-wp-broker:last-child {
  margin-bottom: 0;
}

.mspecs-wp-broker-image-container {
  padding-right: 15px;
  max-height: 170px;
}

.mspecs-wp-broker-info-container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  word-break: break-word;
}

.mspecs-wp-broker-name {
  font-weight: 700;
  margin-bottom: 20px;
}

/* If there are multiple brokers/contacts */
.mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker:last-child {
  margin-bottom: 0;
}

.mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker-info-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 991px) {
  .mspecs-wp-short-info-block-officers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .mspecs-wp-broker-image-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 172px;
    flex: 0 1 172px;
    margin-bottom: 10px;
  }
  .mspecs-wp-broker {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker {
    margin-bottom: 20px;
    width: 100%;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker:last-child {
    margin-bottom: 0;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker:nth-child(odd) {
    padding-right: 0px;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker:nth-child(even) {
    padding-left: 0px;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker-image-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 140px;
    flex: 0 1 140px;
    padding-right: 15px;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker-info-container {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .mspecs-wp-broker-container {
    width: 100%;
    margin-right: 0;
  }
  .mspecs-wp-viewings-container {
    width: 100%;
    margin-left: 0;
  }
  .mspecs-wp-broker {
    width: 100%;
  }
  .mspecs-wp-broker-image-container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 180px;
    flex: 0 0 180px;
  }
  .mspecs-wp-short-info-block-officers {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .mspecs-wp-broker {
    margin-bottom: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
  }
  .mspecs-wp-broker-image-container {
    padding-right: 0;
    margin-bottom: 20px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .mspecs-wp-short-info-block-heading {
    margin-bottom: 10px;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker-image-container {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-right: 0;
  }
  .mspecs-wp-short-info-block-officers.mspecs-wp-multiple-brokers .mspecs-wp-broker {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
}

/* Short info viewings section */
.mspecs-wp-viewing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}

.mspecs-wp-viewing:last-child {
  margin-bottom: 0;
}

.mspecs-wp-viewing-info-datetime {
  font-weight: 600;
}

@media (max-width: 480px) {
  .mspecs-wp-viewing {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .mspecs-wp-viewing-info {
    margin-bottom: 10px;
  }
  .mspecs-wp-viewing-info, .mspecs-wp-viewing-button-container {
    width: 100%;
  }
}

/* Deal shortcuts */
.mspecs-wp-shortcuts {
  background: var(--mspecs-wp-third-bg-color);
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  padding-top: calc(1px);
  z-index: 1;
  width: 100%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.mspecs-wp-shortcuts.shadow {
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.mspecs-wp-shortcuts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: var(--mspecs-wp-body-font-size);
}

.mspecs-wp-shortcuts-list-item {
  padding: 24px 27px;
}

.mspecs-wp-shortcuts-list-item:first-child {
  padding-left: 0;
}

.mspecs-wp-shortcuts-list-item:last-child {
  padding-right: 0;
}

.mspecs-wp-shortcuts-link {
  color: var(--mspecs-wp-primary-text-color);
}

@media (max-width: 1199px) {
  .mspecs-wp-shortcuts-list-item {
    padding: 30px 12px;
  }
}

@media (max-width: 991px) {
  .mspecs-wp-shortcuts-list-item-files, .mspecs-wp-shortcuts-list-item-floorplan {
    display: none;
  }
}

@media (max-width: 630px) {
  .mspecs-wp-shortcuts {
    position: fixed;
    bottom: 0;
    top: auto;
  }
  .mspecs-wp-shortcuts-list-item {
    font-size: var(--mspecs-wp-small-font-size);
    padding: 20px 8px;
  }
}

@media (max-width: 480px) {
  .mspecs-wp-shortcuts-list-item {
    font-size: var(--mspecs-wp-tiny-font-size);
    padding: 16px 4px;
  }
}

@media (max-width: 400px) {
  .mspecs-wp-shortcuts-list-item-interest {
    display: none;
  }
}

/* Deal object description */
.mspecs-wp-object-description {
  text-align: center;
  padding: 73px 0;
}

.mspecs-wp-object-description-heading {
  font-size: 29px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
}

.mspecs-wp-object-description-short {
  font-size: var(--mspecs-wp-large-font-size);
}

.mspecs-wp-object-description-short pre {
  line-height: 1.3;
}

@media (max-width: 480px) {
  .mspecs-wp-object-description {
    padding: 40px 0;
  }
}

/* Deal images */
#property-images {
  text-align: center;
  background: var(--mspecs-wp-primary-bg-color);
  padding-top: 40px;
}

#property-images .img-floorplan-nav span { font-size: 15px; }

.mspecs-wp-floorplans {
  margin-top: 70px;
  padding: 0 15px;
}

.mspecs-wp-floorplans-heading {
  font-size: 22px;
  margin-bottom: 30px;
}

/* Deal interest form */
.mspecs-wp-interest-form {
  background: var(--mspecs-wp-secondary-bg-color);
  padding: 30px 0;
  position: relative;
}

.mspecs-wp-interst-form-header {
  margin-bottom: 50px;
  font-size: 22px;
}

.mspecs-wp-input-text, .mspecs-wp-textarea {
  border: 1px solid var(--mspecs-wp-primary-border-color);
  margin-bottom: 5px;
  padding: 6px 10px;
  display: block;
  width: 100%;
  border-radius: 4px;
}

.mspecs-wp-textarea {
  width: 100%;
}

/* Files */
.mspecs-wp-files-container {
  margin-bottom: 50px;
  padding: 0 15px;
}

.mspecs-wp-files {
  width: 100%;
  max-width: 600px;
  columns: 2;
  column-gap: 40px;
  margin-left: auto;
  margin-right: auto;
}

.mspecs-wp-file {
  width: 100%;
  break-inside: avoid;
}

.mspecs-wp-file-filename {
  padding: 5px 10px;
}

@media (max-width: 480px) {
  .mspecs-wp-files {
    columns: 1;
    column-gap: 0;
  }
  .mspecs-wp-file {
    width: 100%;
  }
}

/* Deal maps */
.mspecs-wp-maps {
  padding: 50px 0;
}

.mspecs-wp-maps-heading {
  font-size: 22px;
}

/* Modals */
.mspecs-wp-modal-container {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
}

.mspecs-wp-modal-container.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mspecs-wp-modal-overlay {
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mspecs-wp-modal {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: #FFF;
  border-radius: 6px;
  width: 100%;
  max-width: 780px;
  max-height: 100%;
  overflow-y: auto;
}

.mspecs-wp-modal-header {
  text-align: center;
  border-bottom: 1px solid var(--mspecs-wp-primary-border-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.mspecs-wp-modal-heading {
  margin-top: 0;
}

.mspecs-wp-modal-description {
  font-size: var(--mspecs-wp-large-font-size);
}

.mspecs-wp-modal-viewing-details {
  font-weight: 600;
  margin-bottom: 30px;
}

.mspecs-wp-modal-viewing-details-date {
  margin-bottom: 15px;
}

.mspecs-wp-modal-viewing-details-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mspecs-wp-viewing-slot-select {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--mspecs-wp-primary-border-color);
  border-radius: 4px;
  font-size: var(--mspecs-wp-body-font-size);
  font-weight: 400;
  padding: 5px 20px 5px 10px;
  margin-left: 22px;
  color: var(--mspecs-wp-primary-text-color);
  background: #FFF;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='14' height='9' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.00087499 9c.28524767 0 .55299547-.11925.71661913-.32025l6.12494978-7.5c.1872485-.22875.2082483-.528.0594995-.77625C13.7505697.15525 13.4521971 0 13.1258248 0H.8741752C.54780286 0 .2494303.15525.09805654.4035c-.14874878.24825-.12774895.5475.05949951.77625l6.12494982 7.5c.16362366.201.43137146.32025.71661913.32025h.00174998C7 9 7 9 7.00087499 9z' fill='%23141416' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right .7em top 50%, 0 0;
  background-size: .65em auto, 100%;
}

.mspecs-wp-viewing-slot-select.active {
  display: block;
}

.mspecs-wp-modal-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
}

.mspecs-wp-modal-close-image {
  width: 24px !important;
  height: 24px !important;
  min-width: auto !important;
  min-height: auto !important;
}

.mspecs-wp-viewing-form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  display: none;
  z-index: 1;
  background: #FFF;
  font-size: var(--mspecs-wp-large-font-size);
}

.mspecs-wp-viewing-form-success.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mspecs-wp-booking-form {
  position: relative;
}

/* Bidding modal */
.mspecs-wp-bidding-table {
  width: 100%;
}

.mspecs-wp-bidding-table-body {
  background: var(--mspecs-wp-secondary-bg-color);
}

.mspecs-wp-bidding-table-th, .mspecs-wp-bidding-table-td {
  padding: 10px 50px;
}

@media (max-width: 767px) {
  .mspecs-wp-modal {
    padding: 15px;
  }
  .mspecs-wp-bidding-table-th, .mspecs-wp-bidding-table-td {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .mspecs-wp-bidding-table {
    font-size: var(--mspecs-wp-small-font-size);
  }
}

/* Make reCAPTCHA smaller so it fits in the very smallest mobile screens */
@media (max-width: 362px) {
  .mspecs-wp-modal-recaptcha {
    -webkit-transform: scale(0.86);
            transform: scale(0.86);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@media (max-width: 332px) {
  .mspecs-wp-recaptcha {
    -webkit-transform: scale(0.96);
            transform: scale(0.96);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

/* Back to top button */
.mspecs-wp-backtotop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 14px 13px;
  display: inline-block;
  background: var(--mspecs-wp-primary-button-color);
  pointer-events: all;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.mspecs-wp-backtotop.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.mspecs-wp-backtotop-image {
  width: 24px;
}

@media (max-width: 630px) {
  .mspecs-wp-backtotop {
    right: 10px;
    bottom: 70px;
    transform: scale(0.5);
    transform-origin: bottom right;
  }
}

@media (max-width: 480px) {
  .mspecs-wp-backtotop {
    bottom: 60px;
  }
}

/* Bottom border for deal page */
.mspecs-wp-deal-page-bottom-border {
  background: var(--mspecs-wp-third-bg-color);
  height: 72px;
}

@media (max-width: 630px) {
  .mspecs-wp-deal-page-bottom-border {
    height: 58px;
  }
}

/* Make wpadminbar go under the shortcuts (fixed and sticky elements don't work well together) */
#wpadminbar {
  z-index: 0 !important;
}

/*
Overlay image of design for checking positioning of design
Just add the following somehere:
<img src="<?php echo get_template_directory_uri(); ?>/img/beskrivning_standard_1024_reference.jpg" class="mspecs-wp-design-ref" alt="" />
*/
.mspecs-wp-design-ref {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -810px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 3;
}

hr {
  margin: 10px 0 10px 0;
}

.logo {
  width: 135px;
  height: 90px;
}
.logo img {
  width: 100%;
}

.print-logo {
  display: none;
}

pre {
  display: block;
  padding: 0px;
  margin: 0px;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.428571429;
  color: #333;
  white-space: pre-wrap;       /* css-3 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: normal;       /* Internet Explorer 5.5+ */
  word-break: normal;
  background-color: transparent;
  border: 0px solid #fff;
  border-radius: 0px;
  font-weight: 400;
  overflow-x: hidden;
}

.obj-info {
  padding: 20px;
  background: #fff;
  font-size: 15px;
  line-height: 20px;
  height: 250px;
}
.bottom {
  position: absolute;
  bottom: 20px;
}

/** image popup classes **/
.mspecs-wp-property-image-wrapper {
  display: inline-block;
  width: 100%;
  margin-bottom: 14px;
}

.mspecs-wp-property-image-wrapper.mspecs-wp-property-image-wrapper-portrait {
  max-width: 600px;
}

.mspecs-wp-property-image-wrapper.mspecs-wp-property-image-wrapper-portrait.mspecs-wp-property-image-wrapper-floorplan {
  max-width: 460px;
}

.mspecs-wp-property-image {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 80px);
}

.mspecs-wp-image-title {
  display: block;
  margin-top: 2px;
}


.object-type-title {
  font-size: 0.9em;
  margin: 15px 0 0 0;
  text-transform: uppercase;
  font-weight: 600;
  color: #999;
  color: rgba(0,0,0,0.4);
}

.objectlist-item {
  padding: 0;
  background: #fff;
  font-size: 15px;
  line-height: 20px;
  margin: 15px 0;
  overflow: hidden;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 2px rgba(22,22,22,0.1);
          box-shadow: 0px 1px 2px rgba(22,22,22,0.1);
  font-size: 0.9em;
  border: 0 solid transparent;
  border-bottom-width: 5px;
}

.objectlist-item:hover {
  border-color: rgba(22,22,22,0.1);
  border-bottom-color: #006EB9;
}

.objectlist-item .property-image {
  padding: 0;
  margin: 0;
  text-align: center;
  height: 150px;
  overflow: hidden;
  background-color: rgba(100,100,100,0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.objectlist-item .property-image img {
  width: 100%;
  margin: 0 auto;
}
.objectlist-item .property-info {
  padding: 10px 0;
  min-height: 145px;
}
.objectlist-item .property-city {
  text-transform: uppercase;
  color: #aaa;
}
.objectlist-item .property-name {
  font-weight: 600;
  font-size: 1.4em;
  margin: 2px 0 15px 0;
  line-height: 1.2em;
}
.objectlist-item .property-name a {
  color: inherit;
}
.objectlist-item .property-name a:hover {
  text-decoration: underline;
}
.objectlist-item .property-address {
  color: #777;
}

.column {
  height: 315px;
}

.col-centered {
  margin: 0 auto;
  float: none;
}

.img-preview {
  padding: 20px 0px;
}
.clear { clear:both; }
ul { list-style-type: none; margin: 0; padding: 0;}

#object .print-button {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#object .property-title {
  font-size: 37px;
  font-weight: 700;
  text-align: center;
  margin-top: 16px;
}

#object .property-region {
  margin: 0;
  font-weight: 400;
  font-size: 23px;
  text-align: center;
  margin-bottom: 37px;
  margin-top: 12px;
}

.description-label {
  font-weight: 600;
  margin-right: 3px;
  width: 50%;
}

.capitalized{
  text-transform: capitalize;
}

.cursive{
  font-style: italic;
}

#property-information ul {
  margin-top: 10px;
}

#property-information ul li {
  margin-bottom: 10px;
}

#object #short-info pre {
  text-align: justify;
}

@media (max-width: 768px) {
  #object #short-info li {
      width: 100%;
  }
}

#object .object-contacts img {
  min-width: 120px;
  max-height: 170px;
}

#search {
  display: inline-block;
}

#search-box {
  text-align: right;
/*     display: inline-block; */
}

#search-box input[type='text'] {
  border: 0px solid #ccc;
  padding: 5px;
  outline: none;
  border-radius: 6px;
  font: 13px "Source Sans Pro", Helvetica, Arial, sans-serif;
  color: #777;
  margin: 0;
  width: 180px;
  max-width: 100%;
  background: #fff;
  height: 35px;
}
#search-box input[type="text"]:focus {
  display: inline;
  font-weight: normal;
  font-size: 13px;
}
.search-button {
  background: transparent;
  font-size: 20px;
  border: none;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
}

.searchbox {
  width: 50%;
  margin-bottom: 25px;
  text-align: left;
  border: 1px solid;
  padding-right: 10px;
  padding-left: 10px;
}

@media (max-width: 991px) {
  #search-box {
      margin-top: 15px;
  }
}

@media (min-width: 768px) {
  #search {
      float: right;
  }
}

@media (max-width: 767px) {
  #search {
      width: 100%;
  }

  .searchbox {
      width: 90%;
  }

  #search-box {
      text-align: center;
  }

  #search-box input[type='text'] {
      width: 80%;
  }

  .navigation-item {
      width: 90%;
      margin: 2px 5% !important;
  }
}

#object strong {
  font-weight: bolder;
  color: #000;
}

.mspecs-wp-button {
  padding: 12px 20px;
  font-size: var(--mspecs-wp-body-font-size);
  background: var(--mspecs-wp-primary-button-color);
  color: #FFF;
  border: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  display: inline-block;
  text-transform: uppercase;
}
.mspecs-wp-button:hover {
  background: #0364a5;
  border: solid 0px #2A4E77;
  text-decoration: none;
}
.mspecs-wp-button:active {
  -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
  background: #2E5481;
  border: solid 0px #203E5F;
}
.mspecs-wp-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.mspecs-wp-button.mspecs-wp-button-submit-interest {
  padding: 12px 40px;
}

.recap {
  float: left;
  /*Making recaptcha responsive*/
  margin-left: -26px;
  -webkit-transform: scale(0.93);
          transform: scale(0.93);
}

#property-information {
  background: var(--mspecs-wp-secondary-bg-color);
  padding-top: 30px;
  padding-bottom: 30px;
}

#property-information .mspecs-wp-property-information-wrapper {
  background: #FFF !important;
  padding: 0px 80px;
}

@media (max-width: 767px) {
  #property-information .mspecs-wp-property-information-wrapper {
    padding: 0 15px;
  }
}

#property-information .mspecs-wp-property-information-wrapper pre {
  font-size: var(--mspecs-wp-body-font-size);
  line-height: 1.4;
}
@media (max-width: 767px) {
  #property-information .mspecs-wp-property-information-wrapper pre {
    font-size: var(--mspecs-wp-small-font-size);
  }
}

.mspecs-wp-location-image {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.mspecs-wp-location-text {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .mspecs-wp-property-information-wrapper {
    padding: 0px 15px;
  }
}

.mspecs-wp-property-information-section:last-child {
  margin-bottom: 0;
}

.mspecs-wp-property-information-col-left {
  padding-right: 30px;
}

.mspecs-wp-property-information-col-right {
  padding-left: 30px;
}

.mspecs-wp-buildings-list ul {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .mspecs-wp-property-information-col-left {
    padding: 0px 15px;
  }

  .mspecs-wp-property-information-col-right {
    padding: 0px 15px;
  }
}

.mspecs-wp-property-information-heading {
  margin-top: 60px;
  margin-bottom: 20px;
  font-size: 22px;
}

.mspecs-wp-property-information-heading.mspecs-wp-property-description-heading {
  margin-top: 35px;
}

.mspecs-wp-property-information-subheading {
  font-size: 20px;
  margin-bottom: 15px;
}

#property-images .property-image, #property-floorplan {
  min-height: 360px;
  text-align: center;
  margin-bottom: 20px;
}

#property-images .property-image img {
  max-height: 360px;
  margin: 0 auto;
}


.header-logo {
  height: 30px;
  margin-top: -5px;
}

#contacts .broker {
  text-align: center;
  line-height: 1.3em;
  margin: 10px 0 20px 0;
  height: 285px;
}

#print-header {
  display: none;
}

.map-wrap{
  height:0;
  width:0;
  overflow:hidden;
}

#map-canvas {
  height: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 0px
}

.webhomeImage {
  width: 100%;
  max-height: 600px;
}

.marker {
  width: 10px;
  height: 10px;
  float: left;
  border-radius: 10px;
  margin: 10px 3px;
}

.bidding-is-active {
  background-color: #006EB9;
  text-align: center;
  padding: 5px;
  margin-top: 15px;
  color: #fff;
  cursor: pointer;
  min-height: 60px;
}

.email-success {
  color: #258F1C;
  padding: 10px 0 0 0;
  font-weight: bold;
}
.email-fail {
  color: #E73939;
  padding: 10px 0 0 0;
  font-weight: bold;
}
#email-loading, #booking-loading {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
#email-loading img, #booking-loading img {
  left: 50%;
  margin-left: -100px;
  position: absolute;
  top: 50%;
  margin-top: -100px;
}

.button-book {
  padding: 2px 5px !important;
  margin: 5px 5px !important;
}

.sold-image {
  width: 85px;
  height: 27px;
  background: #CF4915;
  position: absolute;
  z-index: 1;
  color: #FFF;
  padding: 3px 28px;
  font-size: 17px;
  transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin: 9px 0px 0px -15px;
}

.property-description {
  font-weight: 100;
  font-size: 1.3em;
  margin: 2px 0 15px 0;
}


.list-image {
  margin-left: -25px !important;
  margin-right: -25px !important;;
  margin-top: 5px !important;
}

.fix-left-margin {
  margin: 0 -10px;
}

#object #short-info li.desc-responsive {
  display: none;
}

@media screen and (max-width: 440px) {
  #object #short-info li.desc-large {
      display: none;
  }
  #object #short-info li.desc-responsive {
      display: block;
  }
}

.iti { width: 100%; }

.mspecs-wp-pagepadding-and-bg {
  background-color: #e6e6e6;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

#cookie-notice {
  display: none !important;
}
