/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Variables
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
|
| This file holds all of the variables for the site.
| 1. Fonts
| 2. Colors
| 3. Color Variations
| 4. Transparent Colors
| 5. Color List
| 6. Screen Sizes / Breakpoints
|
*/
/*
| 1. Fonts
| --------------------------------------------------
| These font variables are used to hold the values for
| the sitewide fonts used on the project.
|
*/
/*
| 2. Colors
| --------------------------------------------------
| The variables are used to store the color theme for
| the site.
|
*/
/*
| 3. Color Variations
| --------------------------------------------------
| These color variations are auto generated by the
| following functions below.
*/
/*
| 4. Transparent Colors
| --------------------------------------------------
| These transparent colors are auto generated by the
| following functions below.
*/
/*
| 5. Colors List
| --------------------------------------------------
| This list is used for building out the various
| classes for using colors accross the site, classes
| for type, background colors, etc.
*/
/*
| 6. Screen Sizes / Breakpoints
| --------------------------------------------------
| Breakpoint variables in pixel widths for media queries.
|
*/
/*
| Extra small mobile
*/
/*
| Mobile
*/
/*
| Tablet
*/
/*
| Middle Sized Devices
*/
/*
| Small Laptop
*/
/*
| Large Laptop / Desktop
*/
/*
| Large Desktop
*/
/*
       _ _                     _   _
 _ __ / / | ___ _ __ ___  __ _| |_(_)_   _____
| '_ \| | |/ __| '__/ _ \/ _` | __| \ \ / / _ \
| |_) | | | (__| | |  __/ (_| | |_| |\ V /  __/
| .__/|_|_|\___|_|  \___|\__,_|\__|_| \_/ \___|
|_|

/*
|--------------------------------------------------------------------------
| Mixins
| Author: P11 Interactive Team
| Visit us: @ p11.com
|--------------------------------------------------------------------------
| 1. Resets
| 2. Positioning
|
| Notes: Define patterns of property value pairs, which can then be reused in other rule sets
|
*/
/*
| Font Smoothing
| --------------------------------------------------
|
| Aligns most of the browsers with the same font antialiasing.
|
*/
/*
| Strict Button Style
| --------------------------------------------------
|
| Sets the button style appearance to none for various
| mobile browsers and OS's that will auto change the styling
|
*/
/*
| Positioning
| --------------------------------------------------
|
| The following mixins are used for positioning elements
| via the absolute rule
|
*/
/*
| Transition
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| transition property
|
*/
/*
| Box Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| box-shadow property
|
*/
/*
| Text Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| text-shadow property
|
*/
/*
| SVG Shadow
| --------------------------------------------------
|
| Used to apply all browser prefixes for the css3
| filter property
|
*/
/*
| Responsive Media Query Mixins
| --------------------------------------------------
|
| The following mixins are used for applying various
| media queries and specified breakpoints
|
*/
/*
| Transparent Colors
| --------------------------------------------------
|
| Function for creating transparent colors.
|
*/
/*
| Gradient Backgrounds
| --------------------------------------------------
|
| Mixin for creating gradient backgrounds
| @include bg-gradient(fn-transparent-color($color-black, 1), fn-transparent-color($color-black, 0), top, bottom, 0%, 100%);
|
*/
/*
| Rotation
| --------------------------------------------------
|
| Mixin for applying the correct browser prefixes for the
| transform: rotate property
|
*/
/*
| Keyframe animations
| --------------------------------------------------
| Mixin for applying animations to elements
|
*/
/* This is the core CSS of Tooltipster */
/* GENERAL STRUCTURE RULES (do not edit this section) */
.tooltipster-base {
  /* this ensures that a constrained height set by functionPosition,
  if greater that the natural height of the tooltip, will be enforced
  in browsers that support display:flex */
  display: flex;
  pointer-events: none;
  /* this may be overriden in JS for fixed position origins */
  position: absolute;
}

.tooltipster-box {
  /* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
  and flex-basis auto for IE11- (at least) */
  flex: 1 1 auto;
}

.tooltipster-content {
  /* prevents an overflow if the user adds padding to the div */
  box-sizing: border-box;
  /* these make sure we'll be able to detect any overflow */
  max-height: 100%;
  max-width: 100%;
  overflow: auto;
}

.tooltipster-ruler {
  /* these let us test the size of the tooltip without overflowing the window */
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
}

/* ANIMATIONS */
/* Open/close animations */
/* fade */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}

.tooltipster-fade.tooltipster-show {
  opacity: 1;
}

/* grow */
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}

.tooltipster-grow.tooltipster-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

/* swing */
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}

.tooltipster-swing.tooltipster-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}

/* fall */
.tooltipster-fall {
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-fall.tooltipster-initial {
  top: 0 !important;
}

.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0 !important;
  opacity: 0;
}

/* slide */
.tooltipster-slide {
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.tooltipster-slide.tooltipster-initial {
  left: -40px !important;
}

.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0 !important;
  opacity: 0;
}

/* Update animations */
/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */
/* fade */
@keyframes tooltipster-fading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.tooltipster-update-fade {
  animation: tooltipster-fading 400ms;
}

/* rotate */
@keyframes tooltipster-rotating {
  25% {
    transform: rotate(-2deg);
  }
  75% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(0);
  }
}
.tooltipster-update-rotate {
  animation: tooltipster-rotating 600ms;
}

/* scale */
@keyframes tooltipster-scaling {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.tooltipster-update-scale {
  animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 *
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */
/* .tooltipster-box */
.tooltipster-sidetip .tooltipster-box {
  background: #FFF;
  border: 2px solid black;
  border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
  margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
  margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
  margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 8px;
}

/* .tooltipster-content */
.tooltipster-sidetip .tooltipster-content {
  color: white;
  line-height: 18px;
  padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */
.tooltipster-sidetip .tooltipster-arrow {
  overflow: hidden;
  position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  height: 10px;
  /* half the width, for centering */
  margin-left: -10px;
  top: 0;
  width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  right: 0;
  /* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
  been positioned yet */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  height: 20px;
  margin-top: -10px;
  left: 0;
  /* same as .tooltipster-left .tooltipster-arrow */
  top: 0;
  width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  bottom: 0;
  height: 10px;
  margin-left: -10px;
  width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
  height: 0;
  position: absolute;
  width: 0;
}

/* .tooltipster-arrow-background */
.tooltipster-sidetip .tooltipster-arrow-background {
  border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #FFF;
  left: 0;
  top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #FFF;
  left: -3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #FFF;
  left: 3px;
  top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #FFF;
  left: 0;
  top: -3px;
}

/* .tooltipster-arrow-border */
.tooltipster-sidetip .tooltipster-arrow-border {
  border: 10px solid transparent;
  left: 0;
  top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
  border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
  border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
  border-top-color: black;
}

/* tooltipster-arrow-uncropped */
.tooltipster-sidetip .tooltipster-arrow-uncropped {
  position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
  left: -10px;
}

.controlHolder {
  top: auto;
  top: 2.5%;
  right: 2%;
  transform: scale(0.9);
  background-color: #005E8A;
  border: #ffffff 2px solid;
}
.zoomHolder {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
@media (max-width: 700px) {
  .zoomHolder {
    position: relative !important;
  }
}

#sp {
  width: 100%;
  display: inline-block;
  text-align: center;
}
#sp .map-all {
  display: inline-block;
  text-align: center;
  margin: 1.5em auto;
  width: calc(100% - 4em);
  height: 82vh;
  max-height: 700px;
  max-width: 1400px;
  background-color: #ffffff;
  border: 1px solid #005E8A;
  overflow: hidden;
}
@media (max-width: 1350px) {
  #sp .map-all {
    width: calc(100% - 1em);
  }
}
@media (max-width: 1024px) {
  #sp .map-all {
    float: left;
    width: 100%;
    height: auto;
    max-height: 100%;
    border-top: 1px solid #005E8A;
  }
}
#sp .map-all .map-container {
  width: calc(100% - 300px);
  height: 100%;
  overflow: hidden;
  float: left;
  position: relative;
}
@media (max-width: 1024px) {
  #sp .map-all .map-container {
    width: 100%;
  }
}
#sp .map-all .map-container .zoomHolder {
  width: 100%;
  height: 100%;
  max-width: auto;
  max-height: 700px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  left: 0;
}
@media (max-width: 1024px) {
  #sp .map-all .map-container .zoomHolder {
    position: relative !important;
  }
}
#sp .map-all .map-container .zoomHolder .map-holder {
  width: 100%;
  height: 100%;
  max-width: auto;
  max-height: 700px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  left: 0;
}
@media (max-width: 1024px) {
  #sp .map-all .map-container .zoomHolder .map-holder {
    width: 100%;
    float: left;
  }
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan {
  position: relative;
  width: auto;
  max-width: auto;
  height: 100%;
  display: inline-block;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .bg {
  width: auto;
  height: 82vh;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .bg img {
  max-width: 100% !important;
  max-height: 100% !important;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level {
  width: auto;
  height: 82vh;
  position: absolute;
  z-index: 4;
  display: none;
  background-color: #ffffff;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .layer, #sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .layer-cover, #sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .base {
  position: absolute;
  display: block;
  z-index: 2;
  width: auto;
  height: 82vh;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .layer img, #sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .layer-cover img, #sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .base img {
  max-width: 100% !important;
  max-height: 700px !important;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level #trees {
  z-index: 5;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level #models {
  z-index: 6;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level #community-text {
  z-index: 7;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level #community-overlay {
  z-index: 8;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level #community-icon {
  z-index: 9;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .layer {
  z-index: 10;
  display: none;
}
#sp .map-all .map-container .zoomHolder .map-holder .siteplan .level .base {
  position: relative;
  display: block;
  z-index: 1;
}
#sp .map-all .sidebar {
  width: 300px;
  min-height: 100%;
  float: right;
  border-left: solid 1px #005E8A;
  overflow: hidden;
  position: relative;
  background-color: #746a6c;
}
@media (max-width: 1024px) {
  #sp .map-all .sidebar {
    display: block;
    width: 100%;
    float: left;
    border-left: none;
  }
}
#sp .map-all .sidebar .sidebar-header {
  width: 100%;
  background: #393435;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 100;
}
#sp .map-all .sidebar .sidebar-header h2 {
  font-family: "Proxima Nova Bold", Arial, Helvetica, sans-serif;
  padding: 0.7em 0;
  font-size: 1.3em;
  line-height: 1.1em;
  color: #ffffff;
  text-align: center;
  margin: 0;
}
@media (max-width: 1024px) {
  #sp .map-all .sidebar .sidebar-header {
    display: none;
  }
}
#sp .map-all .sidebar .sidebar-scroll {
  text-align: left;
  position: absolute;
  top: 65px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow-y: auto;
}
@media (max-width: 1024px) {
  #sp .map-all .sidebar .sidebar-scroll {
    top: 0;
    position: relative;
    float: left;
    overflow: hidden;
    width: 100%;
  }
}
#sp .map-all .sidebar .sidebar-scroll #accordian {
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  position: absolute;
  z-index: 2;
  width: 100%;
  min-height: 270px;
  margin: 0;
  color: #ffffff;
}
@media (max-width: 1024px) {
  #sp .map-all .sidebar .sidebar-scroll #accordian {
    float: left;
    position: relative;
  }
}
#sp .map-all .sidebar .sidebar-scroll #accordian h3 {
  font-family: "Proxima Nova Bold", Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1.7em;
  cursor: pointer;
  padding: 0.2em 0 0.15em 1.2em;
  margin-bottom: 1px;
  background-color: rgba(57, 52, 53, 0.3);
  background-repeat: no-repeat;
  background-size: auto 30px;
}
#sp .map-all .sidebar .sidebar-scroll #accordian h3 span {
  font-size: 1.4em;
  margin-right: 10px;
}
#sp .map-all .sidebar .sidebar-scroll #accordian h3.on {
  background-color: #0086c6;
}
#sp .map-all .sidebar .sidebar-scroll #accordian li {
  list-style-type: none;
}
#sp .map-all .sidebar .sidebar-scroll #accordian li.active ul {
  display: block;
}
#sp .map-all .sidebar .sidebar-scroll #accordian ul {
  padding: 0 0 0.5em 0;
}
#sp .map-all .sidebar .sidebar-scroll #accordian ul ul {
  display: none;
}
#sp .map-all .sidebar .sidebar-scroll #accordian ul ul li {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
  color: #000000;
  text-decoration: none;
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  font-size: 0.9em;
  line-height: 1.3em;
  display: block;
  padding: 0.4em 0.3em 0.4em 1em;
  margin-bottom: 1px;
}
#sp .map-all .sidebar .sidebar-scroll #accordian ul ul li:hover {
  background-color: rgba(255, 255, 255, 0.8);
  background-repeat: no-repeat;
  background-position: left center;
}
#sp .map-all .sidebar .sidebar-scroll #accordian ul ul li.active {
  background-color: #ffffff;
}

.detail-content {
  padding: 0 0 0.3em 0;
  display: block;
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  overflow: hidden;
}
.detail-content a.close-btn {
  position: absolute;
  z-index: 1000;
  right: 19px;
  top: 10px;
  width: 55px;
  height: 55px;
  cursor: pointer;
}
.detail-content a.close-btn img {
  width: 100%;
  height: auto;
}
.detail-content .detail-photo {
  width: 280px;
  height: 150px;
  margin-bottom: 0.5em;
}
.detail-content .detail-photo img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1300px) {
  .detail-content .detail-photo {
    width: 200px;
    height: 107px;
  }
}
.detail-content .detail-text {
  float: left;
  width: 96%;
  padding: 0 0.2em 0 0.7em;
  font-family: "Proxima Nova Bold", Arial, Helvetica, sans-serif;
}
.detail-content .detail-text h2 {
  color: #000000;
  font-size: 0.9em;
  line-height: 1.2em;
  margin: 0 0 0.2em 0;
  padding: 0;
}
@media (max-width: 1300px) {
  .detail-content .detail-text h2 {
    font-size: 0.75em;
  }
}
.detail-content .detail-text h2.upper {
  text-transform: uppercase;
  font-size: 1em;
}
@media (max-width: 1300px) {
  .detail-content .detail-text h2.upper {
    font-size: 0.8em;
  }
}
.detail-content .detail-text h3 {
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 0.82em;
  line-height: 1.4em;
  margin: 0 0 0.3em 0;
  padding: 0;
}
@media (max-width: 1300px) {
  .detail-content .detail-text h3 {
    font-size: 0.7em;
  }
}
.detail-content .detail-text h4 {
  font-family: "Proxima Nova Bold", Arial, Helvetica, sans-serif;
  color: #005E8A;
  font-size: 0.9em;
  line-height: 1.4em;
  margin: 0 0 0.3em 0;
  padding: 0;
}
@media (max-width: 1300px) {
  .detail-content .detail-text h4 {
    font-size: 0.8em;
  }
}
.detail-content .detail-text p {
  font-family: "Proxima Nova", Arial, Helvetica, sans-serif;
  color: #000000;
  font-size: 0.6em;
  line-height: 1.3em;
  padding: 0;
  margin: 0.7em 0 0.3em 0;
}
.detail-content .detail-text a:link, .detail-content .detail-text a:visited {
  display: inline-block;
  padding: 0.3em 0.7em;
  margin: 0.4em 0 0 0;
  color: #ffffff;
  background: #005E8A;
  text-align: center;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 400;
  line-height: 1.2em;
  cursor: pointer;
}
@media (max-width: 1300px) {
  .detail-content .detail-text a:link, .detail-content .detail-text a:visited {
    font-size: 0.8em;
    padding: 0.2em 0.7em;
  }
}
.detail-content .detail-text a:link:hover, .detail-content .detail-text a:visited:hover {
  background-color: #393435;
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
  background: #ffffff;
  border: 2px solid #000000;
  border-radius: 3px;
  box-shadow: 5px 5px 2px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 1300px) {
  .tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-box {
    width: 220px !important;
    max-width: 220px !important;
    min-width: 220px !important;
  }
}

.tooltipster-sidetip.tooltipster-noir.tooltipster-noir-customized .tooltipster-content {
  float: left;
  padding: 8px;
}

.tooltipster-sidetip .tooltipster-arrow-border {
  border: 20px solid transparent;
}

.tooltipster-sidetip .tooltipster-arrow-background {
  border: 20px solid transparent;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  left: 0;
  margin-left: -20px;
  top: 0;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
  width: 40px;
  height: 40px;
  margin-top: -20px;
  right: 0;
  margin-right: -20px;
}
.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
  width: 40px;
  height: 40px;
  margin-left: -20px;
  top: -20px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
  margin-bottom: 18px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
  width: 40px;
  height: 40px;
  margin-left: -20px;
  bottom: -20px;
}

#tip-lennartownhomes {
  left: 55.53%;
  top: 43.83%;
}

#tip-weekleyfalls40 {
  left: 62.77%;
  top: 45.81%;
}

#tip-weekleyfalls40alley {
  left: 60.07%;
  top: 43.24%;
}

#tip-lennar {
  left: 54.47%;
  top: 34.53%;
}

#tip-weekleyfalls60 {
  left: 38.33%;
  top: 25.63%;
}

#tip-tollbrothers60 {
  left: 41.45%;
  top: 24.25%;
}

#tip-tollbrothers70 {
  left: 44.85%;
  top: 23.07%;
}

#tip-dreamfinders70 {
  left: 60.43%;
  top: 24.76%;
}

#tip-master {
  left: 34.8%;
  top: 44.55%;
}

#tip-drees70 {
  left: 26.78%;
  top: 46.77%;
}

#tip-drees80 {
  left: 24.44%;
  top: 50.68%;
}

#tip-north-loop-trail {
  left: 53.2%;
  top: 32.05%;
}

#tip-north-trout-creek-trail {
  left: 76%;
  top: 42.98%;
}

#tip-parkway-multi-use-trail {
  left: 53.2%;
  top: 60.98%;
}

#tip-pinewoods-trail {
  left: 39.16%;
  top: 54.21%;
}

#tip-the-falls-trail {
  left: 65.07%;
  top: 60.49%;
}

#tip-school-trail {
  left: 62.11%;
  top: 11.33%;
}

#tip-east-creek-trail {
  left: 83.13%;
  top: 29.42%;
}

#tip-west-trail {
  left: 42.95%;
  top: 17.45%;
}

#tip-west-connector {
  left: 40.03%;
  top: 41.71%;
}

#tip-north-connector {
  left: 67.32%;
  top: 23.72%;
}

/*# sourceMappingURL=community-maps.css.map */
