/* RESET */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-display: block;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

hr, h1, h2, h3, h4, h5, p, img, ul, li {
  border: 0;
  padding: 0;
  margin: 0;
  outline: 0;
}

ul, ol, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: objects;
}

a, button, input, textarea {
  border: 0;
  padding: 0;
  font-size: inherit;
}
a:focus, a:active, a:hover, button:focus, button:active, button:hover, input:focus, input:active, input:hover, textarea:focus, textarea:active, textarea:hover {
  outline: none;
}

select, button, input {
  font-family: inherit;
  overflow: visible;
  border: none;
  /* Para safari , IOS*/
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  /* */
  /* Para crome, le quita la fechita*/
  /* */
}
select::-ms-expand, button::-ms-expand, input::-ms-expand {
  display: none;
}
select:hover, button:hover, input:hover {
  cursor: pointer;
}
select:focus, button:focus, input:focus {
  outline: none;
}

input[type=submit]:hover {
  cursor: pointer;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

audio, video, canvas {
  display: inline-block;
}

button, input, select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.sps-w-full {
  width: 100%;
}

.sps-w-screen {
  width: 100vw;
}

.sps-h-full {
  height: 100%;
}

.sps-h-screen {
  height: 100vh;
}

.sps {
  --font-family: Montserrat;
  --ip-link-color: #157edc;
  --button-text-color: #fff;
  --button-background-color: #202020;
  --button-border-color: #202020;
  --button-text-color-hover: #202020;
  --button-background-color-hover: #fff;
  --button-border-color-hover: #fff;
  --ibc-tremgroup-color: #3f69ff;
  --ibc-heading-font-family: var(--font-family);
  --ibc-heading-font-weight: 400;
  --ibc-heading-font-style: normal;
  --ibc-heading-letter-spacing: normal;
  --ibc-heading-text-transform: none;
  --ibc-heading-font-size: 16px;
  --ibc-heading-tablet-font-size: 16px;
  --ibc-heading-mobile-font-size: 16px;
  --ibc-body-font-family: var(--font-family);
  --ibc-body-font-weight: 400;
  --ibc-body-font-style: normal;
  --ibc-body-letter-spacing: normal;
  --ibc-body-text-transform: none;
  --ibc-body-font-size: 16px;
  --ibc-body-tablet-font-size: 16px;
  --ibc-body-mobile-font-size: 16px;
}

body {
  font-family: var(--font-family), sans-serif;
  font-weight: 400;
  padding-top: 110px !important;
}
body.unbranded {
  padding-top: 80px !important;
}
@media screen and (min-width: 1024px) {
  body {
    padding-top: 0 !important;
  }
  body.unbranded {
    padding-top: 0 !important;
  }
}

.sps-btn {
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  color: var(--button-text-color);
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  height: 50px;
  letter-spacing: 1px;
  line-height: 50px;
  padding: 0 30px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media screen and (min-width: 991px) {
  .sps-btn {
    font-size: 13px;
    height: 60px;
    line-height: 60px;
    min-width: 242px;
  }
}
.sps-btn:hover {
  background-color: var(--button-background-color-hover);
  border-color: var(--button-border-color);
  color: var(--button-text-color-hover);
}
.sps-btn:disabled {
  cursor: default;
  opacity: 0.65;
}

.sps-section {
  position: relative;
  margin: 0 auto;
  width: 90%;
  padding: 30px 0;
}

.sps-label {
  display: inline-block;
  padding: 7px 15px;
  background-color: #000;
  text-transform: uppercase;
  color: #FFF;
  font-size: 8px;
  letter-spacing: 1px;
}

/*Modal Floorplans*/
.sps-active-mds .sps-modal-sp-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
  text-align: center;
}
.sps-active-mds .sps-modal-sp-slider img {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.sps-active-mds .sps-modal-sp-slider .alt-text {
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 4px 12px;
  width: 90%;
}

.sps-modal-sp-slider {
  display: none;
}
.sps-modal-sp-slider .sps-close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #FFF;
  color: #333;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
  text-indent: -999999px;
  overflow: hidden;
  border-radius: 100%;
  transition: all 0.3s;
}
.sps-modal-sp-slider .sps-close:before {
  content: "X";
  font-weight: bold;
  text-indent: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.sps-modal-sp-slider .sps-close:hover {
  background-color: #000;
  color: #FFF;
}
.sps-modal-sp-slider .gs-next-arrow,
.sps-modal-sp-slider .gs-prev-arrow {
  height: 55px;
  width: 40px;
}
.sps-modal-sp-slider .gs-next-arrow:before,
.sps-modal-sp-slider .gs-prev-arrow:before {
  background-size: 12px;
}

#sps-modal-sp-slider {
  position: relative;
  width: 100%;
}
#sps-modal-sp-slider .sps-gallery-img-wrapper {
  margin-left: auto;
  width: calc(100% - 100px);
  margin-right: auto;
}

/*----------------------------------------------------------------------------------*/
/* Great slider
/*----------------------------------------------------------------------------------*/
.gs-none {
  display: none !important;
}

.gs-container-slider {
  position: relative;
}
.gs-container-slider.gs-infs {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
.gs-container-slider.gs-infs .gs-style-prev,
.gs-container-slider.gs-infs .gs-style-next,
.gs-container-slider.gs-infs .gs-fs {
  opacity: 0.8;
}
.gs-container-slider.gs-infs .gs-wrapper-items {
  height: 100% !important;
}

.gs-container-items {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gs-container-items.gs-mouse-enter {
  cursor: -webkit-grab;
  cursor: grab;
}
.gs-container-items.gs-mouse-enter.gs-mouse-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.gs-wrapper-items {
  /*overflow: hidden;*/
  width: 100%;
  height: 100%;
}
.gs-wrapper-items.gs-transition-fade {
  position: relative;
}
.gs-wrapper-items.gs-transition-fade .gs-item-slider {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.gs-wrapper-items.gs-transition-fade .gs-item-slider.gs-item-active {
  z-index: 1;
  opacity: 1;
}
.gs-wrapper-items.gs-transition-swipe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gs-item-slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gs-item-slider.gs-item-loaded:before, .gs-item-slider.gs-item-loaded:after {
  opacity: 0;
}

.gs-item-loading:before, .gs-item-loading:after {
  content: "";
  position: absolute;
  display: block;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gs-item-loading:before {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: #F6F6F6;
  opacity: 0.8;
}
.gs-item-loading:after {
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #555;
  -webkit-animation: spin 0.7s linear infinite;
          animation: spin 0.7s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

.gs-wrapper-content img, .gs-wrapper-content video, .gs-wrapper-content iframe {
  max-width: 100%;
}
.gs-wrapper-content * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

.gs-wrapper-arrows {
  z-index: 4;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gs-wrapper-arrows.gs-style-arrow .gs-prev-arrow,
.gs-wrapper-arrows.gs-style-arrow .gs-next-arrow {
  background-color: #000;
  opacity: 0.45;
  overflow: hidden;
  -webkit-transition: margin 0.1s linear, opacity 0.2s linear;
  transition: margin 0.1s linear, opacity 0.2s linear;
  position: relative;
}
.gs-wrapper-arrows.gs-style-arrow .gs-prev-arrow:before,
.gs-wrapper-arrows.gs-style-arrow .gs-next-arrow:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../../images/arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 25px;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.gs-wrapper-arrows.gs-style-arrow .gs-prev-arrow:hover,
.gs-wrapper-arrows.gs-style-arrow .gs-next-arrow:hover {
  opacity: 0.8;
  cursor: pointer;
}
.gs-wrapper-arrows.gs-style-arrow .gs-prev-arrow:active,
.gs-wrapper-arrows.gs-style-arrow .gs-next-arrow:active {
  opacity: 1;
}
.gs-wrapper-arrows.gs-style-arrow .gs-prev-arrow:before {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.gs-prev-arrow,
.gs-next-arrow {
  height: 60px;
  width: 45px;
}

.gs-style-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
  max-width: 100%;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gs-style-bullets .gs-bullet {
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #d2d2d2;
  margin-right: 10px;
  opacity: 0.5;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.gs-style-bullets .gs-bullet:last-child {
  margin-right: 0;
}
.gs-style-bullets .gs-bullet:hover {
  cursor: pointer;
  opacity: 0.9;
  background-color: #333;
}
.gs-style-bullets .gs-bullet:active {
  opacity: 1;
}
.gs-style-bullets .gs-bullet.gs-bullet-active {
  opacity: 0.8;
  background-color: #fff;
}
.gs-style-bullets .gs-bullet.gs-bullet-active:hover {
  background-color: #fff;
}

.gs-fs {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #000;
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  opacity: 0.45;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
  text-indent: -200px;
  border-radius: 1px;
}
.gs-fs:before, .gs-fs:after {
  content: "";
  display: block;
  background-image: url("../../images/arrow.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 12px;
  height: 19px;
  position: absolute;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
.gs-fs:before {
  bottom: 3px;
  left: 6px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.gs-fs:after {
  top: 3px;
  right: 6px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.gs-fs:hover {
  cursor: pointer;
  opacity: 1;
}
.gs-fs:hover:before {
  bottom: 2px;
  left: 5px;
}
.gs-fs:hover:after {
  top: 2px;
  right: 5px;
}
.gs-fs.gs-infs:before {
  bottom: 5px;
  left: 9px;
  -webkit-transform: rotate(-48deg);
          transform: rotate(-48deg);
}
.gs-fs.gs-infs:after {
  top: 5px;
  right: 9px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.gs-fs {
  overflow: hidden;
  height: 0;
  width: 0;
}

.gs-infs .gs-wrapper-content img {
  width: auto !important;
  height: auto !important;
}

.mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-prev-arrow,
.mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-next-arrow {
  height: 46px;
  width: 34px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
  cursor: pointer;
  /*&:before {
  	content: "\e921";
  	font-family: "idx-icons"!important;
  	display: inline-block;
  	font-size: 18px;
  	color: #FFF;
  	margin: 0 auto;
  	display: flex;
  	width: 100%;
  	height: 100%;
  	align-items: center;
  	justify-content: center;
  	transform: rotate(90deg);
  }*/
}
.mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-prev-arrow:hover, .mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-prev-arrow:active,
.mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-next-arrow:hover,
.mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-next-arrow:active {
  background-color: rgba(0, 0, 0, 0.9);
}
.mg-neighborhoods .gs-container-navs .gs-wrapper-arrows .gs-next-arrow:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.sps-modal-sp-slider .gs-wrapper-content iframe,
.sps-modal-sp-slider .gs-wrapper-content img,
.sps-modal-sp-slider .gs-wrapper-content video {
  max-height: 95vh;
  max-width: 90%;
  width: auto;
}

/*----------------------------------------------------------------------------------*/
/* Video modal
/*----------------------------------------------------------------------------------*/
.video-inside {
  z-index: 999999;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  height: 0;
  left: 0;
  opacity: 0;
  bottom: 0;
  -webkit-transform: translateY(100vh);
          transform: translateY(100vh);
  -webkit-transition: opacity 0.5s ease, height 0s ease 0.5s, visibility 0s ease 0.5s, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, height 0s ease 0.5s, visibility 0s ease 0.5s, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, height 0s ease 0.5s, visibility 0s ease 0.5s;
  transition: transform 0.5s ease, opacity 0.5s ease, height 0s ease 0.5s, visibility 0s ease 0.5s, -webkit-transform 0.5s ease;
  visibility: hidden;
  width: 100vw;
}
.video-inside.ms-show-video {
  height: 100%;
  opacity: 1;
  -webkit-transition: height 0.5s ease, -webkit-transform 0.5s ease;
  transition: height 0.5s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, height 0.5s ease;
  transition: transform 0.5s ease, height 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.video-inside .iframe {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background: transparent;
  border: 0;
}
.video-inside .iframe:after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
.video-inside .iframe iframe,
.video-inside .iframe video {
  position: absolute;
  bottom: 0;
  left: 0;
  border: 0;
  top: 50%;
  width: 100%;
  height: 100%;
  padding: 100px 20px;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.video-inside .close-vi {
  z-index: 11;
  position: absolute;
  top: 30px;
  right: 30px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #FFF;
  color: #333;
  font-size: 21px;
  font-weight: bold;
}
.video-inside .close-vi:hover {
  background-color: #000;
  border-color: #000;
  color: #FFF;
}
.video-inside .bg-close {
  z-index: 9;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 768px) {
  .video-inside .iframe iframe,
  .video-inside .iframe video {
    padding-right: 100px;
    padding-left: 100px;
  }
}
#ms-slider-wp {
  position: relative;
  width: 100%;
}
#ms-slider-wp .ms-wrap-action-btn {
  position: absolute;
  width: 100%;
  height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  padding: 0 25px;
  z-index: 2;
  margin-top: -20px;
}
#ms-slider-wp .ms-wrap-action-btn button {
  overflow: hidden;
  text-indent: -999999px;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  color: #000;
  background-color: #FFF;
  -webkit-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-top: -25px;
  position: relative;
  /*&.ms-btn-prev{
  	transform: rotate(90deg);
  }*/
}
#ms-slider-wp .ms-wrap-action-btn button:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("../../images/nav-arrows.png");
  background-repeat: no-repeat;
  background-size: 24px 19px;
  width: 11px;
  height: 19px;
  margin-left: -6px;
  margin-top: -9px;
}
#ms-slider-wp .ms-wrap-action-btn button.ms-btn-next {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
#ms-slider-wp .ms-wrap-action-btn button:hover {
  background-color: #000;
  color: #FFF;
}
#ms-slider-wp .ms-wrap-action-btn button:hover:before {
  background-position: -13px 0;
}

#ms-slider-prop .sps-wrap-img:after {
  padding-bottom: 62%;
}
#ms-slider-prop .ms-item {
  padding: 15px;
}
#ms-slider-prop .sps-wrap-btn {
  margin-bottom: 5px !important;
}
#ms-slider-prop .sps-wrap-btn .sps-link {
  font-size: 14px !important;
}
#ms-slider-prop .gs-container-navs {
  margin-top: 15px;
}
#ms-slider-prop .gs-container-navs .gs-attached {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#ms-slider-prop .gs-container-navs .gs-attached button {
  border: 1px solid #ccc;
  padding: 5px;
  width: 23%;
  margin-right: 2.666666%;
  margin-bottom: 15px;
  background-color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#ms-slider-prop .gs-container-navs .gs-attached button:nth-child(4n) {
  margin-right: 0;
}
#ms-slider-prop .gs-container-navs .gs-attached button.gs-bullet-active {
  border-color: #000;
}
#ms-slider-prop .gs-container-navs .gs-attached button span {
  display: block;
  width: 100%;
  background-size: cover !important;
}
#ms-slider-prop .gs-container-navs .gs-attached button span:after {
  content: "";
  display: block;
  padding-bottom: 63%;
}

/*----------------------------------------------------------------------------------*/
/* ACCESIBILIDAD HACK GENERAL
/*----------------------------------------------------------------------------------*/
:focus {
  border-color: #3887fd !important;
  -webkit-box-shadow: 0 0 0 3.2px #3887fd !important;
          box-shadow: 0 0 0 3.2px #3887fd !important;
  outline: 0 !important;
}

.ms-focus {
  border: 3px solid transparent;
}
.ms-focus:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.ms-focus-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: transparent !important;
}

.wrap-result .result-search > li .wrap-slider .clidxboost-btn-check,
.wrap-result #result-search > li .wrap-slider .clidxboost-btn-check,
#wrap-result .result-search > li .wrap-slider .clidxboost-btn-check,
#wrap-result #result-search > li .wrap-slider .clidxboost-btn-check {
  border-radius: 100%;
}
.wrap-result .result-search > li .wrap-slider .next,
.wrap-result .result-search > li .wrap-slider .prev,
.wrap-result #result-search > li .wrap-slider .next,
.wrap-result #result-search > li .wrap-slider .prev,
#wrap-result .result-search > li .wrap-slider .next,
#wrap-result .result-search > li .wrap-slider .prev,
#wrap-result #result-search > li .wrap-slider .next,
#wrap-result #result-search > li .wrap-slider .prev {
  display: none;
}

.flex-block-description .ib-view-detailt {
  border: 3px solid transparent;
}
.flex-block-description .ib-view-detailt:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

body.using-mouse :focus,
body.using-mouse *:focus {
  border-color: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  outline: 0 !important;
}

.sp-wrap-modal .sp-layer-modal {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 0;
  cursor: pointer;
}

.sp-modal-ms {
  height: 100%;
  min-height: 100vh;
  background-color: #FFF;
  position: relative;
  z-index: 2;
  width: 100%;
}
.sp-modal-ms.ms-height {
  height: auto !important;
}
.sp-modal-ms .sp-modal-body {
  padding: 30px 20px 20px;
}
.sp-modal-ms .sp-modal-body .sp-modal-title {
  color: #000;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
  display: block;
  margin-bottom: 15px;
}
.sp-modal-ms .sp-modal-body p:not(.ibc-u-heading, .ibc-u-text) {
  font-size: 14px;
  line-height: 1.6;
  color: #000;
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 300;
}
.sp-modal-ms .sp-modal-body p:not(.ibc-u-heading, .ibc-u-text) .sp-black {
  font-weight: 500;
}
.sp-modal-ms .sp-input-form {
  margin-top: 10px;
}
.sp-modal-ms .sp-input-form input:not([type=checkbox]), .sp-modal-ms .sp-input-form textarea {
  border-radius: 4px;
  border: 1px solid #c0c0c0;
  cursor: text;
  font-family: var(--font-family);
  font-size: 14px;
  width: 100%;
}
.sp-modal-ms .sp-input-form input:not([type=checkbox]):-moz-read-only, .sp-modal-ms .sp-input-form textarea:-moz-read-only {
  background-color: rgba(239, 239, 239, 0.5);
  cursor: default;
}
.sp-modal-ms .sp-input-form input:not([type=checkbox]):disabled, .sp-modal-ms .sp-input-form input:not([type=checkbox]):read-only, .sp-modal-ms .sp-input-form textarea:disabled, .sp-modal-ms .sp-input-form textarea:read-only {
  background-color: rgba(239, 239, 239, 0.5);
  cursor: default;
}
.sp-modal-ms .sp-input-form input:not([type=checkbox]) {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
}
.sp-modal-ms .sp-input-form textarea {
  height: 100px;
  padding: 15px;
  resize: none;
}
.sp-modal-ms .sp-input-form .sp-button {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--button-background-color);
  border: 1px solid var(--button-border-color);
  color: var(--button-text-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
}
.sp-modal-ms .sp-input-form .sp-button:hover {
  background-color: var(--button-background-color-hover);
  border-color: var(--button-border-color-hover);
  color: var(--button-text-color-hover);
}
.sp-modal-ms .sp-input-form .sp-button:disabled {
  cursor: default;
  opacity: 0.65;
}
.sp-modal-ms .sp-input-form .form-message {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
}
.sp-modal-ms .ms-wrap-img {
  display: none;
}
.sp-modal-ms .sp-close-modal,
.sp-modal-ms .sp-close {
  width: 30px;
  height: 30px;
  text-indent: -999999px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #000;
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 100%;
  color: #FFF;
  z-index: 2;
}
.sp-modal-ms .sp-close-modal:before,
.sp-modal-ms .sp-close:before {
  text-indent: 0;
  content: "X";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.sp-modal-ms .sp-close-modal:hover,
.sp-modal-ms .sp-close:hover {
  background-color: #333;
}
@media screen and (min-width: 640px) {
  .sp-modal-ms {
    min-height: auto;
    height: auto;
    width: 90%;
    max-width: 800px;
  }
  .sp-modal-ms .sp-modal-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sp-modal-ms .sp-modal-body {
    width: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .sp-modal-ms .ms-wrap-img {
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px;
    width: 50%;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #FFF;
    text-align: center;
    position: relative;
  }
  .sp-modal-ms .ms-wrap-img:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.33);
    z-index: 1;
  }
  .sp-modal-ms .ms-wrap-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .sp-modal-ms .ms-wrap-img .sp-img-title {
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.33);
    font-size: 30px;
    font-weight: normal;
    position: relative;
    z-index: 2;
    line-height: 1.1;
  }
  .sp-modal-ms .ms-wrap-img p {
    font-size: 14px;
    line-height: 1.4;
    text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.33);
    font-weight: normal;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  .sp-modal-ms .sp-modal-content {
    height: 100%;
  }
  .sp-modal-ms .sp-modal-body .sp-modal-title {
    font-size: 25px;
    margin-top: 10px;
  }
  .sp-modal-ms .sp-modal-body p {
    font-size: 16px;
  }
  .sp-modal-ms .sp-input-form .sp-button {
    font-size: 13px;
    height: 54px;
    line-height: 54px;
  }
  .sp-modal-ms .ms-wrap-img .sp-img-title {
    font-size: 42px;
  }
  .sp-modal-ms .ms-wrap-img p {
    font-size: 17px;
  }
}

@media screen and (min-width: 640px) {
  #modal_schedule .sp-modal-ms {
    max-width: 480px;
  }
  #modal_schedule .sp-modal-ms .sp-modal-body {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
  }
  #modal_schedule .sp-modal-ms .ms-wrap-img {
    display: none;
  }
}

.sp-body-modal {
  padding: 30px;
}
.sp-body-modal p {
  font-size: 15px;
  line-height: 1.6;
  font-weight: normal;
  margin-bottom: 20px;
}
.sp-body-modal p a {
  color: #157edc;
}
.sp-body-modal p a:hover {
  text-decoration: underline;
}
.sp-body-modal p strong {
  font-weight: 600;
}
.sp-body-modal .ms-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.sp-body-modal .ms-sub-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.openModal {
  overflow: hidden !important;
}
@media screen and (min-width: 1024px) {
  .openModal.openMenu {
    overflow: initial !important;
  }
}

.sp-modal-dialog {
  position: relative;
  width: auto;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100vh;
  justify-content: center;
}
@media screen and (min-width: 576px) {
  .sp-modal-dialog {
    min-height: calc(100vh - 60px);
    margin: 30px auto;
  }
}

.overlay_modal.sp-center-modal.active_modal {
  display: block !important;
}
.overlay_modal.sp-center-modal ul {
  margin: 20px 0;
}
.overlay_modal.sp-center-modal ul li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
  font-size: 15px;
  line-height: 1.6;
  font-weight: normal;
}
.overlay_modal.sp-center-modal ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 8px;
}
.overlay_modal.sp-center-modal ul li a {
  color: #157edc;
}
.overlay_modal.sp-center-modal ul li a:hover {
  text-decoration: underline;
}

.ms-access-accordion .accordion-item {
  margin-bottom: 10px;
}
.ms-access-accordion .accordion-title {
  border: 1px solid #ccc;
  background-color: #eaeaea;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 15px;
  padding: 1rem 3rem 1rem 1rem;
  position: relative;
  width: 100%;
}
.ms-access-accordion .accordion-title:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid black;
  top: 50%;
  right: 15px;
  margin-top: -4px;
}
.ms-access-accordion .ms-access-content {
  border: 1px solid #ccc;
  clear: both;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 2rem;
  -webkit-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
  margin-bottom: 5px;
}
.ms-access-accordion .ms-access-content.active {
  opacity: 1;
  padding: 2rem;
  max-height: 100%;
  -webkit-transition: all 0.35s ease 0.15s;
  transition: all 0.35s ease 0.15s;
  margin-top: -1px;
}

.sp-bottom-footer {
  border: 0;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
}
.sp-bottom-footer .sp-sub-menu-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto;
}
.sp-bottom-footer .sp-sub-menu-footer li {
  margin: 0 5px;
  width: auto;
  font-size: 12px;
}
.sp-bottom-footer .sp-sub-menu-footer li a {
  color: #1375cc;
  text-decoration: underline;
}
.sp-bottom-footer .sp-trem {
  text-transform: uppercase;
  font-size: 9px;
  position: relative;
  z-index: 2;
}
.sp-bottom-footer .sp-trem .sp-trem-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sp-bottom-footer .sp-trem .sp-trem-link img {
  height: 21px;
  margin-left: 8px;
}
@media screen and (min-width: 1024px) {
  .sp-bottom-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    max-width: 1055px;
    margin-right: auto;
    margin-left: auto;
  }
  .sp-bottom-footer .sp-copyright {
    width: auto !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
  }
  .sp-bottom-footer .sp-sub-menu-footer {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0;
    z-index: 1;
  }
  .sp-bottom-footer .sp-sub-menu-footer li {
    margin: 0 5px;
    width: auto;
    font-size: 12px;
  }
  .sp-bottom-footer .sp-sub-menu-footer li a {
    color: #157edc;
    text-decoration: none;
  }
  .sp-bottom-footer .sp-sub-menu-footer li a:hover {
    text-decoration: underline;
  }
}

.ip-form-check {
  display: block;
  min-height: 24px;
  padding-left: 24px;
  margin-bottom: 2px;
  text-align: left;
}
.ip-form-check a {
  color: var(--ip-link-color);
}
.ip-form-check a:hover {
  text-decoration: underline;
}

.ip-form-check-label {
  position: relative;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: 400;
}

.ip-form-check-input {
  float: left;
  width: 16px;
  height: 16px;
  margin: 2px 0 0 -24px;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border-color: var(--ip-form-field-border-color);
  border-style: solid;
  border-width: var(--ip-form-field-border-width);
  -webkit-box-shadow: var(--ip-form-field-box-shadow);
          box-shadow: var(--ip-form-field-box-shadow);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.ip-form-check-input:checked {
  background-color: #000;
}
.ip-form-check-input[type=checkbox] {
  border-radius: var(--ip-form-field-border-radius);
}
.ip-form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.ip-form-check-input[type=radio] {
  border-radius: 50%;
}
.ip-form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.ip-form-opt-text-message {
  font-size: 9px !important;
  color: #858585 !important;
  display: block !important;
  line-height: 1.5 !important;
}
.ip-form-opt-text-message a {
  color: var(--ip-link-color);
  text-decoration: underline;
}

.ibc-c-block-content a:not(.ibc-c-button) {
  color: var(--ip-link-color);
}

.ibc-u-heading {
  --ibc-body-margin-bottom: .5em;
  --ibc-body-tablet-margin-bottom: .5em;
  --ibc-body-mobile-margin-bottom: .5em;
  margin-right: 0;
  margin-left: 0;
  font-family: var(--ibc-heading-font-family);
  font-style: var(--ibc-heading-font-style);
  font-weight: var(--ibc-heading-font-weight);
  text-transform: var(--ibc-heading-text-transform);
}

.ibc-u-text {
  --ibc-body-margin-bottom: 1.25em;
  --ibc-body-tablet-margin-bottom: 1.25em;
  --ibc-body-mobile-margin-bottom: 1.25em;
  margin-right: 0;
  margin-left: 0;
  font-family: var(--ibc-body-font-family);
  font-weight: var(--ibc-body-font-weight);
}

.ibc-u-heading,
.ibc-u-text {
  margin-top: var(--ibc-body-mobile-margin-top);
  margin-bottom: var(--ibc-body-mobile-margin-bottom);
  line-height: var(--ibc-body-mobile-line-height);
  text-align: var(--ibc-body-mobile-alignment);
}

.heading-2xl {
  --ibc-heading-mobile-font-size: 56px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.143;
}

.heading-xl {
  --ibc-heading-mobile-font-size: 48px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.166;
}

.heading-lg {
  --ibc-heading-mobile-font-size: 40px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.1;
}

.heading-md {
  --ibc-heading-mobile-font-size: 32px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.125;
}

.heading-sm {
  --ibc-heading-mobile-font-size: 24px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.166;
}

.heading-xs {
  --ibc-heading-mobile-font-size: 20px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.2;
}

.heading-2xs {
  --ibc-heading-mobile-font-size: 16px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.25;
}

.heading-3xs {
  --ibc-heading-mobile-font-size: 16px;
  font-size: var(--ibc-heading-mobile-font-size);
  line-height: 1.25;
}

.body-xl {
  --ibc-body-mobile-font-size: 21px;
  font-size: var(--ibc-body-mobile-font-size);
  line-height: 1.5;
}

.body-lg {
  --ibc-body-mobile-font-size: 18px;
  font-size: var(--ibc-body-mobile-font-size);
  line-height: 1.5;
}

.body-md {
  --ibc-body-mobile-font-size: 16px;
  font-size: var(--ibc-body-mobile-font-size);
  line-height: 1.5;
}

.body-sm {
  --ibc-body-mobile-font-size: 14px;
  font-size: var(--ibc-body-mobile-font-size);
  line-height: 1.5;
}

.body-xs {
  --ibc-body-mobile-font-size: 12px;
  font-size: var(--ibc-body-mobile-font-size);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .ibc-u-heading,
  .ibc-u-text {
    margin-top: var(--ibc-body-tablet-margin-top);
    margin-bottom: var(--ibc-body-tablet-margin-bottom);
    line-height: var(--ibc-body-tablet-line-height);
    text-align: var(--ibc-body-tablet-alignment);
  }
  .heading-2xl {
    --ibc-heading-tablet-font-size: 64px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.125;
  }
  .heading-xl {
    --ibc-heading-tablet-font-size: 56px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.143;
  }
  .heading-lg {
    --ibc-heading-tablet-font-size: 48px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.166;
  }
  .heading-md {
    --ibc-heading-tablet-font-size: 40px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.1;
  }
  .heading-sm {
    --ibc-heading-tablet-font-size: 32px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.125;
  }
  .heading-xs {
    --ibc-heading-tablet-font-size: 24px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.166;
  }
  .heading-2xs {
    --ibc-heading-tablet-font-size: 20px;
    font-size: var(--ibc-heading-tablet-font-size);
    line-height: 1.2;
  }
  .heading-3xs {
    --ibc-heading-tablet-font-size: 16px;
    font-size: var(--ibc-heading-tablet-font-size);
  }
  .body-xl {
    --ibc-body-tablet-font-size: 21px;
    font-size: var(--ibc-body-tablet-font-size);
  }
  .body-lg {
    --ibc-body-tablet-font-size: 18px;
    font-size: var(--ibc-body-tablet-font-size);
  }
  .body-md {
    --ibc-body-tablet-font-size: 16px;
    font-size: var(--ibc-body-tablet-font-size);
  }
  .body-sm {
    --ibc-body-tablet-font-size: 14px;
    font-size: var(--ibc-body-tablet-font-size);
  }
  .body-xs {
    --ibc-body-tablet-font-size: 12px;
    font-size: var(--ibc-body-tablet-font-size);
  }
}
@media (min-width: 992px) {
  .ibc-u-heading,
  .ibc-u-text {
    margin-top: var(--ibc-body-margin-top);
    margin-bottom: var(--ibc-body-margin-bottom);
    line-height: var(--ibc-body-line-height);
    text-align: var(--ibc-body-alignment);
  }
  .heading-2xl {
    --ibc-heading-font-size: 64px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-xl {
    --ibc-heading-font-size: 56px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-lg {
    --ibc-heading-font-size: 48px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-md {
    --ibc-heading-font-size: 40px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-sm {
    --ibc-heading-font-size: 32px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-xs {
    --ibc-heading-font-size: 24px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-2xs {
    --ibc-heading-font-size: 20px;
    font-size: var(--ibc-heading-font-size);
  }
  .heading-3xs {
    --ibc-heading-font-size: 16px;
    font-size: var(--ibc-heading-font-size);
  }
  .body-xl {
    --ibc-body-font-size: 21px;
    font-size: var(--ibc-body-font-size);
  }
  .body-lg {
    --ibc-body-font-size: 18px;
    font-size: var(--ibc-body-font-size);
  }
  .body-md {
    --ibc-body-font-size: 16px;
    font-size: var(--ibc-body-font-size);
  }
  .body-sm {
    --ibc-body-font-size: 14px;
    font-size: var(--ibc-body-font-size);
  }
  .body-xs {
    --ibc-body-font-size: 12px;
    font-size: var(--ibc-body-font-size);
  }
}
.sps-header {
  --header-background-color: #fff;
  --header-box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.16);
  --header-text-color: #000;
  --header-link-color: #222;
  --header-link-color-hover: #000;
}

.sps-header-dark {
  --header-background-color: #000;
  --header-box-shadow: none;
  --header-text-color: #fff;
  --header-link-color: #9c9c9c;
  --header-link-color-hover: #fff;
}

#sps-header {
  background-color: var(--header-background-color);
  -webkit-box-shadow: var(--header-box-shadow);
          box-shadow: var(--header-box-shadow);
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}
#sps-header .sps-wrap-header {
  position: relative;
  width: 100%;
  padding-top: 30px;
}
.unbranded #sps-header .sps-wrap-header {
  padding-top: 0;
}
#sps-header .sps-wrap-header .sps-row {
  width: 100%;
}
#sps-header .sps-wrap-header .sps-row .sps-show-menu {
  display: none;
}
#sps-header .sps-wrap-header .sps-row .sps-close-menu {
  display: none;
}
#sps-header .sps-wrap-header .sps-row .sps-header-contact {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #eaeaea;
  width: 100%;
  padding: 0 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 11px;
}
#sps-header .sps-wrap-header .sps-row .sps-header-contact a {
  color: #222;
  text-shadow: none;
}
#sps-header .sps-wrap-header .sps-row .sps-header-contact a:hover {
  color: #000;
}
#sps-header .sps-wrap-header .sps-row .sps-header-logo {
  text-align: center;
  padding: 15px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-title,
#sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-slogan {
  color: var(--header-text-color);
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: none;
  text-transform: uppercase;
}
#sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-title {
  font-size: 20px;
}
#sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-slogan {
  margin-top: 3px;
  font-size: 12px;
}
#sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-image {
  max-height: 80px;
  height: auto;
  max-width: 100%;
  width: auto;
}
@media screen and (max-width: 1023.98px) {
  #sps-header .sps-wrap-header .sps-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-logo {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-image {
    max-height: 70px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-show-menu {
    background-color: var(--header-background-color);
    color: var(--header-text-color);
    display: block;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 10px;
    height: 80px;
    margin-left: 0;
    margin-right: 0;
    text-transform: uppercase;
    width: 80px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-show-menu span {
    display: block;
    height: 2px;
    margin: 14px auto;
    background-color: var(--header-text-color);
    position: relative;
    text-indent: -999999px;
    width: 30px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-show-menu span::before, #sps-header .sps-wrap-header .sps-row .sps-show-menu span::after {
    background: var(--header-text-color);
    content: "";
    display: block;
    height: 2px;
    right: 0;
    position: absolute;
    text-indent: 0;
    top: -7px;
    width: 13px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-show-menu span::after {
    top: 7px;
    width: 22px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-close-menu {
    background-color: transparent;
    color: #202020;
    display: block;
    font-size: 8px;
    height: 35px;
    letter-spacing: 1.25px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    top: 8px;
    width: 35px;
    z-index: 4;
  }
  .openMenu #sps-header .sps-wrap-header .sps-row .sps-close-menu {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
  }
  #sps-header .sps-wrap-header .sps-row .sps-close-menu span {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-indent: -999999px;
    width: 100%;
  }
  #sps-header .sps-wrap-header .sps-row .sps-close-menu span::before, #sps-header .sps-wrap-header .sps-row .sps-close-menu span::after {
    background: #202020;
    content: "";
    display: block;
    height: 1px;
    left: 2px;
    position: absolute;
    text-indent: 0;
    top: 16px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 30px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-close-menu span::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors {
    background-color: #fff;
    min-height: 100vh;
    height: 100%;
    overflow-y: auto;
    padding: 60px 30px;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transform: translate(100%, 0%);
            transform: translate(100%, 0%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    max-width: 320px;
    width: 0;
    z-index: 2;
  }
  .openMenu #sps-header .sps-wrap-header .sps-row .sps-header-anchors {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 60%;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors a {
    display: block;
    font-weight: normal;
    padding: 15px 0;
  }
  #sps-header #modal_menu {
    overflow: hidden;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  #sps-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding: 50px 50px 20px 50px;
  }
  #sps-header .sps-wrap-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
  }
  #sps-header .sps-wrap-header .sps-row {
    width: auto;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-contact {
    display: inline-block;
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0;
    position: relative;
    height: auto;
    font-size: 13px;
    background-color: transparent;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-contact a {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-contact a:before {
    content: "";
    display: block;
    height: 10px;
    background-color: #FFF;
    width: 1px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 0;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
            box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-contact a:last-child {
    padding-right: 0;
    margin-right: 0;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-contact a:last-child:before {
    display: none;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li {
    padding-right: 15px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li:last-child {
    padding-right: 0;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li a {
    font-size: 15px;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li a:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
            box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li a.active:after, #sps-header .sps-wrap-header .sps-row .sps-header-anchors li a:hover:after {
    opacity: 1;
  }
  #sps-header .sps-wrap-header .sps-row.sps-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-logo {
    display: inline-block;
    padding: 0;
    height: auto;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-title {
    color: #FFF;
    font-size: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-slogan {
    color: #FFF;
    font-size: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  }
  #sps-header.headerColor {
    background-color: #FFF;
    -webkit-box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.16);
            box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.16);
    padding-top: 20px;
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-anchors li a {
    color: #9c9c9c;
    text-shadow: none;
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-anchors li a:after {
    /*background-color: #000;
    box-shadow: none;*/
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-anchors li a.active, #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-anchors li a:hover {
    color: #000;
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-contact a {
    color: #9c9c9c;
    text-shadow: none;
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-contact a:before {
    background-color: #000;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-contact a:hover {
    color: #000;
  }
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-logo .sps-logo-title,
  #sps-header.headerColor .sps-wrap-header .sps-row .sps-header-logo .sps-logo-slogan {
    color: #000;
    text-shadow: none;
  }
  #sps-header.headerColorB {
    background-color: var(--header-background-color);
    -webkit-box-shadow: var(--header-box-shadow);
            box-shadow: var(--header-box-shadow);
    padding-top: 20px;
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-anchors li a {
    color: var(--header-link-color);
    text-shadow: none;
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-anchors li a:after {
    background-color: var(--header-link-color);
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-anchors li a.active, #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-anchors li a:hover {
    color: var(--header-link-color-hover);
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-contact a {
    color: var(--header-link-color);
    text-shadow: none;
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-contact a:before {
    background-color: var(--header-link-color);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-contact a:hover {
    color: var(--header-link-color-hover);
  }
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-logo .sps-logo-title,
  #sps-header.headerColorB .sps-wrap-header .sps-row .sps-header-logo .sps-logo-slogan {
    color: var(--header-text-color);
    text-shadow: none;
  }
  #sps-header.sps-header-dark.headerColorB .sps-wrap-header .sps-row .sps-header-anchors li a:after {
    background-color: #FFF;
  }
  .openModal.openMenu #sps-header #modal_menu {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 1440px) {
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li {
    padding-right: 25px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-anchors li a {
    height: 45px;
  }
  #sps-header .sps-wrap-header .sps-row .sps-header-logo .sps-logo-title {
    font-size: 30px;
  }
}

#sps-footer {
  background-color: #fafafa;
  position: relative;
  width: 100%;
}
#sps-footer .sps-footer-img {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 1055px;
  width: 90%;
}
#sps-footer .sps-footer-img-alt {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sps-footer .sps-footer-img img {
  display: block;
  max-height: 50px;
  max-width: 50%;
  width: auto;
}
@media screen and (min-width: 1024px) {
  #sps-footer .sps-footer-img {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#sps-footer p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 15px;
  max-width: 1055px;
  width: 90%;
}

.ip-footer-bottom {
  max-width: 1055px;
  padding: 0 10px;
  margin: 0 auto;
}
.ip-footer-bottom.ip-flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.ip-footer-bottom.ip-justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ip-footer-bottom.ip-text-center {
  text-align: center;
}
.ip-footer-bottom .ip-d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ip-footer-bottom .ip-d-flex.ip-flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ip-footer-bottom .ip-align-items-center, .ip-footer-bottom.ip-align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ip-footer-bottom .ip-justify-content-center, .ip-footer-bottom.ip-justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ip-footer-bottom .ip-position-relative {
  position: relative;
}
.ip-footer-bottom .ibc-c-logo-designer-wrapper {
  color: #202020;
  white-space: nowrap;
}
.ip-footer-bottom .ibc-c-logo-designer-img {
  display: block;
  width: 100%;
  margin-right: 10px;
}
.ip-footer-bottom .ip-footer-links {
  color: #202020;
  text-align: center;
  margin-top: 10px;
}
.ip-footer-bottom .ip-footer-links a {
  margin: 0 5px;
  color: #202020;
}
.ip-footer-bottom .ip-footer-links a:hover, .ip-footer-bottom .ip-footer-links a:focus {
  color: var(--ip-link-hover-color);
}
.ip-footer-bottom .ip-footer-links span {
  margin: 0 5px;
}
.ip-footer-bottom .ip-idxboost {
  font-size: 9px;
  color: #202020;
}
.ip-footer-bottom .ip-idxboost a {
  line-height: 0;
}
.ip-footer-bottom .ip-idxboost-logo {
  min-width: 76px;
  max-width: 80px;
  fill: #d1345a;
}
.ip-footer-bottom .ibc-c-logo-designer-link {
  margin: 0 5px;
  font-family: Arial;
  font-weight: 400;
  color: #202020;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ip-footer-bottom .ibc-c-logo-designer-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--ibc-tremgroup-color);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.ip-footer-bottom .ibc-c-logo-designer-link::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #202020;
}
.ip-footer-bottom .ibc-c-logo-designer-link:hover {
  color: var(--ibc-tremgroup-color);
}
.ip-footer-bottom .ibc-c-logo-designer-link:hover::after {
  width: 100%;
}
.ip-footer-bottom .ibc-c-logo-designer-link.ibc-s-color-idxboost {
  color: #202020;
}
.ip-footer-bottom .ibc-c-logo-designer-link.ibc-s-color-idxboost:hover {
  color: #d43558;
}
.ip-footer-bottom .ibc-c-logo-designer-link.ibc-s-color-idxboost::after {
  background-color: #d43558;
}
@media screen and (min-width: 992px) {
  .ip-footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90%;
    padding: 0;
  }
  .ip-footer-bottom.ip-justify-content-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ip-footer-bottom .ibc-c-logo-designer-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ip-footer-bottom .ibc-c-logo-designer-wrapper span {
    padding: 0;
  }
  .ip-footer-bottom .ip-footer-links {
    margin-top: 0;
  }
  .ip-footer-bottom .ibc-c-logo-designer-img {
    display: inline;
    width: auto;
    padding: 3px 0;
  }
  .ip-footer-bottom .ibc-c-logo-designer-img svg {
    position: relative;
    top: 2px;
  }
}

/*Contenedor principal del modal*/
.overlay_modal {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5) !important;
  visibility: hidden;
  z-index: 35;
  opacity: 0;
  /** DEMO PARA MOBILE **/
  position: fixed;
  cursor: pointer;
  overflow: scroll;
}
.overlay_modal.active_modal {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow-y: auto;
}
.overlay_modal.active_modal .modal_cm {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

/*Layer para cerrar el modal*/
.overlay_modal_closer,
.overlay_modal_closer_pt {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}

/*Contenedor general del modal*/
.modal_cm {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f4f5f9;
  /** DEMO PARA MOBILE **/
  position: relative;
  min-height: 100%;
  height: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  /*Informacion de contacto*/
  /*Mensaje*/
  /*Boton close del modal*/
  /*Contendor principal del modal*/
  /*formulario en el modal*/
  /*Mensaje Confirmacion*/
}
@media screen and (min-width: 640px) {
  .modal_cm {
    min-height: auto;
  }
}
.modal_cm .contact-opt {
  margin-bottom: 1rem;
}
.modal_cm .contact-opt:after {
  content: "";
  display: block;
  clear: both;
}
.modal_cm .contact-opt li {
  float: left;
  position: relative;
  width: auto;
  margin-right: 20px;
  font-size: 0.8125rem;
}
.modal_cm .contact-opt li:after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: #333;
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: -11px;
  display: block;
}
.modal_cm .contact-opt li:last-child {
  margin-right: 0;
}
.modal_cm .contact-opt li:last-child:after {
  display: none;
}
.modal_cm .contact-opt li a {
  font-size: 0.8125rem;
}
.modal_cm .contact-opt li a.cnt-opt-email {
  color: #0b6bbd;
}
.modal_cm .contact-opt li a.cnt-opt-email:hover {
  text-decoration: underline;
}
.modal_cm .message-alert {
  padding: 0.625rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.modal_cm .close-modal {
  width: 30px;
  height: 30px;
  background-color: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 4;
  overflow: hidden;
  display: block;
  text-indent: -999999px;
  border-radius: 100%;
  background-color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal_cm .close-modal:before {
  content: "X";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: bold;
  text-indent: 0;
}
.modal_cm .close-modal:hover {
  background-color: #000;
  color: #FFF;
}
.modal_cm .content_md {
  padding-bottom: 1rem;
  /*Cabecera del modal*/
  /*Cuerpo del modal*/
  /*Footer del modal*/
}
.modal_cm .content_md * {
  font-size: 0.875rem;
}
.modal_cm .content_md .heder_md {
  padding: 1rem;
  padding-right: 3.125rem;
}
.modal_cm .content_md .heder_md h2, .modal_cm .content_md .heder_md font, .modal_cm .content_md .heder_md .ms-modal-title {
  margin: 0;
  font-weight: 600;
  color: #333;
  font-size: 1.375rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.modal_cm .content_md .heder_md h2 span, .modal_cm .content_md .heder_md font span, .modal_cm .content_md .heder_md .ms-modal-title span {
  display: block;
  margin-top: 10px;
}
.modal_cm .content_md .body_md {
  padding: 0 1rem;
}
.modal_cm .content_md .body_md p {
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 400;
}
.modal_cm .content_md .footer_md {
  border-top: 1px solid #c0c0c0;
  padding: 1rem 1rem 0 1rem;
}
.modal_cm .form_content {
  margin-bottom: 1rem;
  /*Inicio con Gravity Form*/
  /*Inicio login y register Form*/
}
.modal_cm .form_content .gform_body .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal_cm .form_content .gform_body .gform_fields .gfield {
  margin-bottom: 0.625rem;
  width: 100%;
}
.modal_cm .form_content .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  margin-bottom: 0.1875rem;
}
.modal_cm .form_content .gform_body .gform_fields .gfield .medium {
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  width: 100%;
  height: 45px;
  padding: 0 1rem;
  font-family: "Montserrat";
}
.modal_cm .form_content .gform_body .gform_fields .gfield .medium.textarea {
  padding: 0.625rem 1rem;
  height: 100px;
  resize: none;
}
.modal_cm .form_content .gform_body .gform_fields .gfield select {
  background-image: url("../../images/select.png");
  background-position: center right;
  background-repeat: no-repeat;
}
.modal_cm .form_content .gform_body .gform_fields .gfield select.medium {
  padding-right: 2rem;
}
.modal_cm .form_content .gform_footer .gform_button {
  height: 45px;
  background-color: #333;
  border: 1px solid #333;
  color: #FFF;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.75rem;
}
.modal_cm .form_content .gform_footer .gform_button:hover {
  background-color: #FFF;
  color: #333;
}
.modal_cm .form_content .form_md {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal_cm .form_content .form_md .form_input {
  width: 100%;
  margin-bottom: 0.625rem;
  position: relative;
}
.modal_cm .form_content .form_md .form_input input {
  border: 1px solid #c0c0c0;
  border-radius: 4px;
  width: 100%;
  height: 40px;
  padding: 0 1rem;
}
.modal_cm .form_content .btn_form {
  height: 45px;
  background-color: #333;
  border: 1px solid #333;
  color: #FFF;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 0.75rem;
}
.modal_cm .form_content .btn_form:hover {
  background-color: #FFF;
  color: #333;
}
.modal_cm .confirm-message {
  padding: 116px 0;
  text-align: center;
}
.modal_cm .confirm-message .confirmation-icon {
  width: 100px;
  height: 100px;
  position: relative;
  display: block;
  margin: 0 auto;
  /*&:before{
  	content: "\e917";
  	font-family: $web-icons;
  	font-size: 100px;
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 100%;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  }*/
}
.modal_cm .confirm-message h2, .modal_cm .confirm-message .ms-confirmation-title {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}
.modal_cm .confirm-message p {
  margin-top: 0.625rem;
  padding: 0 1rem;
  font-weight: 600;
  font-size: 1.125rem;
}
.modal_cm .confirm-message p:after {
  content: "";
  width: 84px;
  height: 2px;
  margin: 1rem auto;
  display: block;
  background-color: #333;
}

/*----------------------------------------------------------------------------------*/
/* Modal - Schedule
/*----------------------------------------------------------------------------------*/
#modal_schedule .modal_cm .form_content .gform_body .gform_fields .gfield:nth-child(7), #modal_schedule .modal_cm .form_content .gform_body .gform_fields .gfield:nth-child(8) {
  width: 48%;
}
#modal_schedule .modal_cm .form_content .gform_body .gform_fields .gfield.field_sublabel_below {
  width: 100%;
}
#modal_schedule .gfield.date .ginput_container {
  position: relative;
}
#modal_schedule .gfield.date .ginput_container .ui-datepicker {
  position: absolute !important;
  top: auto !important;
  right: 0 !important;
  left: auto !important;
  bottom: 100% !important;
}

/** Resize: 480 **/
@media screen and (min-width: 640px) {
  .overlay_modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    height: 100vh;
    overflow: hidden;
  }
  .modal_cm {
    margin: 0;
    position: relative;
    height: auto;
    width: 400px;
  }
  .modal_cm .content_md .heder_md {
    padding-left: 1.25rem;
  }
  .modal_cm .content_md .body_md,
  .modal_cm .content_md .footer_md {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.alt-ss .alt-ss-title {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
.alt-ss .alt-ss-title:after {
  content: "";
  width: 84px;
  height: 2px;
  margin: 1rem auto;
  display: block;
  background-color: #333;
}
.alt-ss p {
  font-size: 0.875rem !important;
  font-weight: normal !important;
}
.alt-ss p:after {
  display: none !important;
}
.alt-ss .btn-link {
  height: 45px;
  line-height: 45px;
  display: inline-block;
  padding: 0 30px;
  background-color: #333333;
  color: #FFF;
  border: 1px solid #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.alt-ss .btn-link:hover {
  background-color: #FFF;
  color: #333;
}

/*----------------------------------------------------------------------------------*/
/* Modal - Properties (z-index y propiedades adiciones)
/*----------------------------------------------------------------------------------*/
.overlay_modal#modal_property_detail {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.overlay_modal#modal_property_detail #full-main {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .overlay_modal#modal_property_detail #full-main {
    margin-top: 57px;
  }
}
.overlay_modal#modal_property_detail .clidxboost-schools-container .list-amenities {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.overlay_modal#modal_property_detail .modal_cm {
  position: relative;
  background-color: #FFF;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  min-height: 100%;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal {
  padding: 0;
  background-color: #FFF;
  width: 100% !important;
  -webkit-animation: none !important;
          animation: none !important;
}
@media screen and (min-width: 768px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal {
    width: calc(100% - 50px) !important;
  }
}
@media screen and (min-width: 1300px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal {
    width: 1200px !important;
  }
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #FFF;
  z-index: 6;
  -webkit-box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 3px -2px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title {
    width: calc(100% - 67px);
  }
}
@media screen and (min-width: 1300px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title {
    width: 1200px;
  }
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .content-fixed-title {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  padding: 7px 10px;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .content-fixed-title .title-page {
  font-size: 1.25rem;
  font-weight: 600;
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .content-fixed-title .title-page span {
  color: #a7a6ae;
  font-weight: normal;
  font-size: 0.8125rem;
  text-transform: uppercase;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: -4px;
}
@media screen and (min-width: 768px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .content-fixed-title {
    width: 75%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 5px 10px;
  }
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .content-fixed-title .title-page {
    font-size: 1.5rem;
  }
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li {
  width: 50%;
  border-left: 1px solid #ccc;
  height: 45px;
  border-bottom: 1px solid #ccc;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li button, .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 13px;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  color: #333 !important;
  font-weight: 600;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  background-color: #FFF;
  /*&.close-modal-pt{
  	span:before{
  		content: "\e914";
  	}
  }
  &.expand-btn{
  	margin-left: -1px;
  	span:before{
  		content: "\e915";
  	}
  }*/
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li button span, .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  text-indent: 0;
  color: #333 !important;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li button span:before, .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li a span:before {
  content: "";
  display: inline-block;
  font-size: 19px;
  margin-right: 0.625rem;
  font-weight: normal;
  font-family: "idx-icons" !important;
  font-weight: normal;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li button:hover, .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li a:hover {
  background-color: #333333;
  color: #FFF !important;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li button:hover span, .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li a:hover span {
  color: #FFF !important;
}
@media screen and (min-width: 768px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal {
    width: 25%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li {
    height: 100%;
    border-bottom: 0;
  }
  .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li button.expand-btn, .overlay_modal#modal_property_detail .modal_cm.detail-modal #md-title .options-modal li a.expand-btn {
    margin-left: 0;
  }
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal .form-content .gform_body .gform_button {
  text-align: center !important;
}
.overlay_modal#modal_property_detail .modal_cm.detail-modal .main .aside {
  margin-left: 0;
}
@media (min-width: 1024px) {
  .overlay_modal#modal_property_detail .modal_cm.detail-modal .main .aside {
    width: 320px;
  }
}

body.modal-property-active {
  overflow: hidden !important;
}
body.modal-property-active .active_modal:not(.modal_property_detail) {
  z-index: 1010;
}

@media screen and (min-width: 640px) {
  .ib-frm-active {
    overflow: hidden;
  }
}
.sps {
  --sps-section-background-color: #fff;
  --sps-section-background-opacity: 0;
}

.sps-section-background,
.sps-section-background-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.sps-section-background {
  overflow: hidden;
  pointer-events: none;
  background: #fff;
}
.sps-section-background img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sps-section-background-overlay {
  background: var(--sps-section-background-color);
  opacity: var(--sps-section-background-opacity);
}

.sps-section-home {
  height: auto;
  min-height: calc(100vh - 110px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}
.unbranded .sps-section-home {
  min-height: calc(100vh - 80px);
}
.sps-section-home .sps-main-title,
.sps-section-home .sps-main-slogan {
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.33);
  z-index: 2;
}
.sps-section-home .sps-btn {
  position: relative;
  z-index: 2;
}
.sps-section-home .sps-main-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 25px;
  margin-bottom: 3px;
  margin-top: -50px;
  text-align: center;
  font-weight: 500;
}
.sps-section-home .sps-main-title span {
  background: #fff;
  border-radius: 5px;
  color: #000;
  font-size: 10px;
  margin: 0 auto 10px;
  padding: 5px 12px;
  text-align: center;
  text-shadow: none;
}
.sps-section-home .sps-main-slogan {
  margin-bottom: 15px;
  font-size: 15px;
}
.sps-section-home .sps-main-video video,
.sps-section-home .sps-main-video iframe {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sps-section-home .sps-main-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sps-section-home .sps-slider .sps-item {
  position: absolute;
  top: 0;
  left: 0;
}
.sps-section-home .gs-container-items {
  z-index: 0;
}
@media (min-aspect-ratio: 16/9) {
  .sps-section-home .sps-main-video iframe {
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .sps-section-home .sps-main-video iframe {
    width: 177.78vh;
  }
}
@media screen and (min-width: 768px) {
  .sps-section-home .sps-main-title {
    font-size: 35px;
    letter-spacing: 2px;
  }
  .sps-section-home .sps-main-slogan {
    letter-spacing: 1px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  .sps-section-home {
    min-height: 100vh;
    border: 15px solid #FFF;
  }
  .unbranded .sps-section-home {
    min-height: 100vh;
  }
  .sps-section-home .sps-main-title {
    font-size: 40px;
    margin-top: -60px;
  }
}
@media screen and (min-width: 1440px) {
  .sps-section-home .sps-main-title {
    font-size: 48px;
  }
  .sps-section-home .sps-main-slogan {
    font-size: 19px;
    margin-bottom: 25px;
  }
  .sps-section-home .sps-btn {
    height: 60px;
    line-height: 60px;
    padding: 0 35px;
    font-size: 13px;
  }
}

#sps-details {
  max-width: 960px;
  /**** List ****/
}
#sps-details .sps-section-title {
  font-size: 23px;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 15px 0;
}
#sps-details .sps-section-title br {
  display: none;
}
#sps-details .sps-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 20px 0 10px 0;
  text-align: center;
}
#sps-details .sps-list li {
  padding: 0 20px;
  font-size: 23px;
  margin-bottom: 15px;
  width: auto;
}
#sps-details .sps-list li:first-child {
  width: 100%;
}
#sps-details .sps-list li span {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
#sps-details .ibc-u-heading,
#sps-details .ibc-u-text {
  text-align: var(--ibc-body-mobile-alignment);
}
#sps-details .ibc-l-image-editor {
  text-align: var(--ibc-body-mobile-alignment);
}
#sps-details .ibc-l-image-editor img {
  width: var(--ibc-editor-img-width-mobile);
  max-width: 100%;
}
#sps-details .ibc-c-ol li {
  list-style: numeric;
}
#sps-details .ibc-c-ul li {
  list-style: disc;
}
#sps-details .ibc-c-ul,
#sps-details .ibc-c-ol {
  margin-bottom: 1em;
}
#sps-details .ibc-c-ul li,
#sps-details .ibc-c-ol li {
  margin-bottom: 3px;
  text-align: var(--ibc-body-mobile-alignment);
  font-size: var(--ibc-body-mobile-font-size);
  line-height: 1.5em;
  list-style-position: inside;
}
#sps-details .ibc-c-ul li:last-child,
#sps-details .ibc-c-ol li:last-child {
  margin-bottom: 0;
}
#sps-details .ibc-u-text b,
#sps-details .ibc-u-text strong {
  font-weight: 600;
}
#sps-details .ibc-u-text i {
  font-style: italic;
}
#sps-details .ibc-u-text a {
  color: #157edc;
  cursor: pointer;
}
#sps-details .ibc-u-text a:hover {
  text-decoration: underline;
}
#sps-details .ip-text {
  text-align: center;
}
#sps-details .ibc-l-image-editor {
  text-align: var(--ibc-body-mobile-alignment);
}
#sps-details .ibc-l-image-editor img {
  width: var(--ibc-editor-img-width-mobile);
  max-width: 100%;
}
@media screen and (min-width: 640px) {
  #sps-details .sps-section-title {
    font-size: 28px;
  }
  #sps-details .sps-section-title br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  #sps-details {
    padding-top: 50px;
  }
  #sps-details .sps-label {
    padding: 9px 25px;
    font-size: 10px;
  }
  #sps-details .sps-section-title {
    margin-top: 20px;
    font-size: 32px;
  }
  #sps-details .sps-list {
    margin: 40px 0 30px 0;
  }
  #sps-details .sps-list li {
    font-size: 32px;
  }
  #sps-details .sps-list li:first-child {
    width: auto;
  }
  #sps-details .ibc-u-heading,
  #sps-details .ibc-u-text,
  #sps-details .ibc-c-ul li,
  #sps-details .ibc-c-ol li {
    text-align: var(--ibc-body-tablet-alignment);
    font-size: var(--ibc-body-tablet-font-size);
  }
  #sps-details .ip-text {
    text-align: center;
  }
  #sps-details .ibc-l-image-editor {
    text-align: var(--ibc-body-tablet-alignment);
  }
  #sps-details .ibc-l-image-editor img {
    width: var(--ibc-editor-img-width-tablet);
  }
}
@media (min-width: 992px) {
  #sps-details .ibc-c-ul li,
  #sps-details .ibc-c-ol li {
    text-align: var(--ibc-body-alignment);
    font-size: var(--ibc-body-font-size);
  }
  #sps-details .ibc-l-image-editor {
    text-align: var(--ibc-body-alignment);
  }
  #sps-details .ibc-l-image-editor img {
    width: var(--ibc-editor-img-width);
  }
}
@media screen and (min-width: 1024px) {
  #sps-details .sps-section-title {
    font-size: 36px;
  }
  #sps-details .sps-list li {
    font-size: 36px;
    letter-spacing: 2px;
  }
  #sps-details .sps-list li span {
    font-size: 12px;
    margin-top: 3px;
  }
  #sps-details .ibc-u-heading,
  #sps-details .ibc-u-text {
    text-align: var(--ibc-body-alignment);
  }
  #sps-details .ip-text {
    text-align: center;
  }
}
@media screen and (min-width: 1440px) {
  #sps-details .sps-section-title {
    font-size: 41px;
  }
  #sps-details .sps-list li {
    padding: 0 30px;
    font-size: 40px;
  }
}

#sps-amenities {
  text-align: center;
  max-width: 960px;
}
#sps-amenities .sps-section-title {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 20px;
}
#sps-amenities .sps-amenities-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
}
#sps-amenities .sps-amenities-list.columns-1 {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
#sps-amenities .sps-amenities-list li {
  line-height: 1.4;
  margin-bottom: 5px;
  padding-left: 25px;
  position: relative;
}
#sps-amenities .sps-amenities-list li:before {
  content: "";
  display: block;
  background: url("../../images/sorts.png") no-repeat;
  background-position: -32px -1px;
  background-size: 60px;
  width: 15px;
  height: 11px;
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (min-width: 640px) {
  #sps-amenities .sps-amenities-list.columns-2, #sps-amenities .sps-amenities-list.columns-3, #sps-amenities .sps-amenities-list.columns-4 {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media screen and (min-width: 768px) {
  #sps-amenities {
    padding-bottom: 60px;
  }
  #sps-amenities .sps-section-title {
    font-size: 28px;
  }
  #sps-amenities .sps-amenities-list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    font-size: 16px;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    margin: 30px 0;
  }
  #sps-amenities .sps-amenities-list.columns-3, #sps-amenities .sps-amenities-list.columns-4 {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
  #sps-amenities .sps-amenities-list li {
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 1024px) {
  #sps-amenities .sps-section-title {
    font-size: 33px;
  }
  #sps-amenities .sps-amenities-list {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin: 40px 0;
  }
  #sps-amenities .sps-amenities-list.columns-4 {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.sps-galery .sps-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sps-galery .sps-slider .sps-sl-item {
  margin-right: 1px;
  margin-bottom: 1px;
  width: 49%;
}
.sps-galery .sps-slider .sps-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
  background-color: #333;
}
.sps-galery .sps-slider .sps-item .text_hover {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.57);
  color: #fff;
  display: none;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  position: absolute;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
  z-index: 3;
}
.sps-galery .sps-slider .sps-item:nth-child(2n) {
  margin-right: 0;
}
.sps-galery .sps-slider .sps-item:after {
  content: "";
  display: block;
  padding-bottom: 66.66%;
}
.sps-galery .sps-slider .sps-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s, -webkit-transform 1s;
}
.sps-galery .sps-slider .sps-item:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
          transform: scale3d(1.1, 1.1, 1);
}
.sps-galery .sps-slider .sps-item:hover .text_hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .sps-galery .sps-slider .sps-sl-item {
    width: 33%;
  }
}
@media screen and (min-width: 1024px) {
  .sps-galery .sps-slider .sps-sl-item {
    width: calc(25% - 1px);
  }
}

.sps-wrap-media .sps-wrap-img {
  position: relative;
  width: 100%;
  display: block;
  border: 1px solid #ccc;
}
.sps-wrap-media .sps-wrap-img img {
  width: 100%;
  height: auto;
  z-index: 0;
}
.sps-wrap-media .sps-play-video {
  width: 70px;
  height: 70px;
  background-color: #FFF;
  border-radius: 100%;
  text-indent: -999999px;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sps-wrap-media .sps-play-video:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 16px solid #000;
  border-bottom: 10px solid transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: -6px;
}
.sps-wrap-media .sps-play-video:hover {
  background-color: #000;
}
.sps-wrap-media .sps-play-video:hover:before {
  border-left: 16px solid #FFF;
}
.sps-wrap-media .sps-wrap-btn {
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sps-wrap-media .sps-wrap-btn .sps-floorplan-title, .sps-wrap-media .sps-wrap-btn .sps-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
.sps-wrap-media .sps-wrap-btn .sps-link {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.sps-wrap-media .sps-wrap-btn .sps-link:hover {
  color: #3879da;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.fade.in {
  opacity: 1;
}

.sps-slider-floorplans {
  margin: 0 -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.sps-slider-floorplans li {
  margin: 0;
  padding: 0;
  padding: 0 10px;
  margin-bottom: 10px;
  width: 50%;
}
.sps-slider-floorplans li .sps-wrap-img {
  overflow: hidden;
}
.sps-slider-floorplans li .sps-wrap-img:after {
  padding-bottom: 80%;
}
.sps-slider-floorplans li .sps-wrap-img img {
  transition: transform 1s, -webkit-transform 1s;
}
.sps-slider-floorplans li .sps-wrap-img:hover img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
          transform: scale3d(1.1, 1.1, 1);
}

.sps-floorplans-name {
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 500;
}

/****************/
@media screen and (min-width: 768px) {
  .sps-wrap-media .sps-play-video {
    width: 90px;
    height: 90px;
  }
  .sps-wrap-media .sps-play-video:before {
    border-top: 15px solid transparent;
    border-left: 24px solid #000;
    border-bottom: 15px solid transparent;
    margin-left: -9px;
  }
  .sps-wrap-media .sps-play-video:hover:before {
    border-left: 24px solid #FFF;
  }
  .sps-wrap-media .sps-slider-floorplans li {
    width: 33.33%;
  }
  .sps-wrap-media .sps-wrap-img .sps-wrap-img-header .sps-video-title {
    font-size: 38px;
    margin-bottom: 70px;
    margin-top: -90px;
  }
  .sps-wrap-media .sps-wrap-img .sps-wrap-img-header .sps-video-subtitle {
    font-size: 18px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 1440px) {
  .sps-wrap-media .sps-slider-floorplans li {
    width: 25%;
  }
}

.sps-wrap-media #floorplans .gs-wrapper-content {
  width: 100%;
}
.sps-wrap-media #floorplans .gs-wrapper-content .sps-wrap-img {
  border: none;
}
.sps-wrap-media #floorplans .gs-container-items {
  border: 1px solid #ccc;
}

#sps-location {
  text-align: center;
}
#sps-location .sps-map {
  background-color: #333;
  min-height: 280px;
  position: relative;
  width: 100%;
}
#sps-location .sps-map .sps-map-img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #sps-location {
    padding-bottom: 70px;
    padding-top: 50px;
  }
  #sps-location .sps-map {
    height: 380px;
  }
  #sps-location .sps-section-title {
    font-size: 25px;
  }
}
@media screen and (min-width: 1024px) {
  #sps-location {
    padding-bottom: 100px;
  }
  #sps-location .sps-map {
    height: 480px;
  }
  #sps-location .sps-section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}

#sps-media,
#sps-location {
  max-width: 1055px;
}
#sps-media .sps-section-title,
#sps-location .sps-section-title {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #sps-media .sps-section-title,
  #sps-location .sps-section-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  #sps-media .sps-section-title,
  #sps-location .sps-section-title {
    font-size: 33px;
    margin-bottom: 30px;
  }
}
#sps-media #virtual,
#sps-location #virtual {
  margin-bottom: 30px;
}
#sps-media #virtual .gs-container-items,
#sps-location #virtual .gs-container-items {
  border: 1px solid #ccc;
}
#sps-media #virtual .ms-item,
#sps-location #virtual .ms-item {
  width: 100%;
  display: block;
  padding: 15px;
}
#sps-media #virtual .ms-item img,
#sps-location #virtual .ms-item img {
  position: relative;
}
#sps-media #virtual .sps-wrap-img-header,
#sps-location #virtual .sps-wrap-img-header {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
@media (min-width: 1024px) {
  #sps-media #virtual,
  #sps-location #virtual {
    margin-bottom: 30px;
  }
}
#sps-media #virtual .ms-slider-video,
#sps-location #virtual .ms-slider-video {
  position: relative;
  width: 100%;
}
#sps-media #virtual .ms-slider-video .gs-item-slider,
#sps-media #virtual .ms-slider-video .gs-wrapper-content,
#sps-location #virtual .ms-slider-video .gs-item-slider,
#sps-location #virtual .ms-slider-video .gs-wrapper-content {
  position: relative;
  width: 100%;
}
#sps-media #virtual .ms-slider-video .gs-wrapper-content,
#sps-location #virtual .ms-slider-video .gs-wrapper-content {
  padding: 15px;
}
#sps-media #virtual .ms-slider-video .gs-container-navs,
#sps-location #virtual .ms-slider-video .gs-container-navs {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 3;
  height: auto;
  width: 100%;
}
#sps-media #virtual .ms-slider-video .gs-wrapper-arrows,
#sps-location #virtual .ms-slider-video .gs-wrapper-arrows {
  padding: 0 25px;
}
#sps-media #virtual .ms-slider-video .gs-prev-arrow,
#sps-media #virtual .ms-slider-video .gs-next-arrow,
#sps-location #virtual .ms-slider-video .gs-prev-arrow,
#sps-location #virtual .ms-slider-video .gs-next-arrow {
  background-color: #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.15);
  color: #000;
  height: 50px;
  opacity: 1;
  overflow: hidden;
  position: relative;
  text-indent: -999999px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 50px;
}
#sps-media #virtual .ms-slider-video .gs-prev-arrow:before,
#sps-media #virtual .ms-slider-video .gs-next-arrow:before,
#sps-location #virtual .ms-slider-video .gs-prev-arrow:before,
#sps-location #virtual .ms-slider-video .gs-next-arrow:before {
  content: "";
  background-image: url("../../images/nav-arrows.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 24px 19px;
  display: block;
  height: 19px;
  left: 50%;
  margin: initial;
  margin-left: -6px;
  margin-top: -9px;
  position: absolute;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
  top: 50%;
  width: 11px;
}
#sps-media #virtual .ms-slider-video .gs-prev-arrow:hover,
#sps-media #virtual .ms-slider-video .gs-next-arrow:hover,
#sps-location #virtual .ms-slider-video .gs-prev-arrow:hover,
#sps-location #virtual .ms-slider-video .gs-next-arrow:hover {
  background-color: #000;
  color: #fff;
}
#sps-media #virtual .ms-slider-video .gs-prev-arrow:hover:before,
#sps-media #virtual .ms-slider-video .gs-next-arrow:hover:before,
#sps-location #virtual .ms-slider-video .gs-prev-arrow:hover:before,
#sps-location #virtual .ms-slider-video .gs-next-arrow:hover:before {
  background-position: -13px 0;
}
#sps-media #virtual .ms-slider-video .gs-next-arrow,
#sps-location #virtual .ms-slider-video .gs-next-arrow {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
#sps-media #virtual .ms-slider-video .ms-play-video,
#sps-location #virtual .ms-slider-video .ms-play-video {
  background-color: #fff;
  border-radius: 100%;
  height: 70px;
  left: 50%;
  margin-left: -35px;
  margin-top: -35px;
  position: absolute;
  text-indent: -999999px;
  top: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 70px;
  z-index: 2;
}
#sps-media #virtual .ms-slider-video .ms-play-video.hide,
#sps-location #virtual .ms-slider-video .ms-play-video.hide {
  z-index: -1;
}
#sps-media #virtual .ms-slider-video .ms-play-video::before,
#sps-location #virtual .ms-slider-video .ms-play-video::before {
  content: "";
  border-bottom: 10px solid transparent;
  border-left: 16px solid #000;
  border-top: 10px solid transparent;
  display: block;
  height: 0;
  left: 50%;
  margin-left: -6px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
}
#sps-media #virtual .ms-slider-video .ms-play-video:hover,
#sps-location #virtual .ms-slider-video .ms-play-video:hover {
  background-color: #000;
}
#sps-media #virtual .ms-slider-video .ms-play-video:hover::before,
#sps-location #virtual .ms-slider-video .ms-play-video:hover::before {
  border-left: 16px solid #fff;
}
@media screen and (min-width: 768px) {
  #sps-media #virtual .ms-slider-video .ms-play-video,
  #sps-location #virtual .ms-slider-video .ms-play-video {
    height: 90px;
    width: 90px;
  }
  #sps-media #virtual .ms-slider-video .ms-play-video::before,
  #sps-location #virtual .ms-slider-video .ms-play-video::before {
    border-bottom: 15px solid transparent;
    border-left: 24px solid #000;
    border-top: 15px solid transparent;
    margin-left: -9px;
  }
  #sps-media #virtual .ms-slider-video .ms-play-video:hover::before,
  #sps-location #virtual .ms-slider-video .ms-play-video:hover::before {
    border-left: 24px solid #fff;
  }
}
#sps-media #virtual .ms-slider-video .ms-item,
#sps-location #virtual .ms-slider-video .ms-item {
  padding: 0;
  position: relative;
  width: 100%;
}
#sps-media #virtual .ms-slider-video .ms-item::after,
#sps-location #virtual .ms-slider-video .ms-item::after {
  content: "";
  display: block;
  padding-bottom: 56.25%;
}
#sps-media #virtual .ms-slider-video .ms-item img,
#sps-location #virtual .ms-slider-video .ms-item img {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
#sps-media #virtual .ms-slider-video .ms-item iframe,
#sps-media #virtual .ms-slider-video .ms-item video,
#sps-location #virtual .ms-slider-video .ms-item iframe,
#sps-location #virtual .ms-slider-video .ms-item video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

#sps-contact {
  background-color: #fafafa;
  width: 100%;
}
#sps-contact .sps-wrap-form {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  max-width: 1055px;
  position: relative;
}
#sps-contact .sps-wrap-form .form-message {
  color: #000;
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 10px;
  text-align: center;
  text-transform: uppercase;
}
#sps-contact .sps-form-title {
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 20px;
}
#sps-contact .sps-contact-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#sps-contact .sps-contact-header .sps-wrap-img {
  width: 150px;
  line-height: 0;
  margin-bottom: 15px;
}
#sps-contact .sps-contact-header .sps-wrap-img img {
  width: 100%;
}
#sps-contact .sps-agent-info {
  margin-left: 15px;
}
#sps-contact .sps-agent-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: left;
}
#sps-contact .sps-agent-info li strong, #sps-contact .sps-agent-info li a {
  margin-bottom: 3px;
  display: inline-block;
}
#sps-contact .sps-agent-info li strong {
  font-weight: 600;
}
#sps-contact .sps-agent-info-alt {
  margin-left: 0;
}
#sps-contact .sps-agent-info-alt li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1024px) {
  #sps-contact .sps-agent-info-alt li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#sps-contact .sps-contact-body ul {
  margin-bottom: 15px;
  width: 100%;
}
#sps-contact .sps-contact-body ul li {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
#sps-contact .sps-contact-body ul li input:not([type=checkbox]), #sps-contact .sps-contact-body ul li textarea {
  border-radius: 4px;
  border: 1px solid #c0c0c0;
  cursor: text;
  font-family: var(--font-family);
  font-size: 14px;
  height: 45px;
  letter-spacing: 1px;
  padding: 15px;
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
  width: 100%;
}
#sps-contact .sps-contact-body ul li input:not([type=checkbox]):focus, #sps-contact .sps-contact-body ul li textarea:focus {
  border-color: #acb0c3;
}
#sps-contact .sps-contact-body ul li input:not([type=checkbox]):-moz-read-only, #sps-contact .sps-contact-body ul li textarea:-moz-read-only {
  background-color: rgba(239, 239, 239, 0.5);
  cursor: default;
}
#sps-contact .sps-contact-body ul li input:not([type=checkbox]):disabled, #sps-contact .sps-contact-body ul li input:not([type=checkbox]):read-only, #sps-contact .sps-contact-body ul li textarea:disabled, #sps-contact .sps-contact-body ul li textarea:read-only {
  background-color: rgba(239, 239, 239, 0.5);
  cursor: default;
}
#sps-contact .sps-contact-body ul li textarea {
  height: 120px;
  resize: none;
}
#sps-contact .sps-contact-body ul li:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #sps-contact {
    padding-top: 50px;
  }
  #sps-contact .sps-form-title {
    font-size: 28px;
  }
  #sps-contact .sps-contact-body ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    width: auto;
  }
  #sps-contact .sps-contact-body ul li {
    padding: 0 10px;
    width: 50%;
  }
  #sps-contact .sps-contact-body ul li:last-child, #sps-contact .sps-contact-body ul li.terms-and-conditions {
    width: 100%;
  }
  #sps-contact .sps-agent-info li {
    margin-bottom: 20px;
    font-size: 15px;
  }
  #sps-contact .sps-agent-info li strong {
    font-size: 17px;
  }
}
@media screen and (min-width: 991px) {
  #sps-contact .sps-wrap-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 80px;
  }
  #sps-contact .sps-wrap-form .sps-form-title {
    width: 100%;
  }
  #sps-contact .sps-wrap-form .sps-contact-header {
    width: 50%;
    padding-right: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #sps-contact .sps-wrap-form .sps-contact-body {
    width: 50%;
  }
  #sps-contact .sps-wrap-form .sps-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #sps-contact .sps-wrap-form .form-message {
    font-size: 13px;
    bottom: -30px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #sps-contact .sps-contact-header .sps-wrap-img {
    width: 190px;
  }
}
@media screen and (min-width: 1024px) {
  #sps-contact .sps-form-title {
    font-size: 33px;
    margin-bottom: 30px;
  }
}

fieldset {
  border: 0;
  padding: 0;
}
fieldset legend, fieldset label {
  position: absolute;
  height: 0;
  width: 0;
  overflow: hidden;
}

.compass-sans-and-serif #sps-welcome .sps-main-title,
.compass-sans-and-serif #sps-details .sps-section-title,
.compass-sans-and-serif #sps-amenities .sps-section-title,
.compass-sans-and-serif #sps-media .sps-section-title,
.compass-sans-and-serif #sps-media-floorplan .sps-section-title,
.compass-sans-and-serif #sps-location .sps-section-title,
.compass-sans-and-serif #sps-contact .sps-form-title {
  font-family: "Compass Serif";
  font-weight: 400;
}
.compass-sans-and-serif #sps-welcome .sps-main-title span {
  font-family: "Compass Sans";
}

@font-face {
  font-family: "DINEngschrift";
  font-style: normal;
  font-weight: 100;
  font-display: fallback;
  src: url("https://idxboost-spw-assets.idxboost.us/fonts/resf/ResfSans-Thin.woff2") format("woff2"), url("https://idxboost-spw-assets.idxboost.us/fonts/resf/ResfSans-Thin.woff") format("woff"), url("https://idxboost-spw-assets.idxboost.us/fonts/resf/ResfSans-Thin.ttf") format("truetype");
}
.dinengschrift-and-open-sans #sps-welcome .sps-main-title,
.dinengschrift-and-open-sans #sps-details .sps-section-title,
.dinengschrift-and-open-sans #sps-amenities .sps-section-title,
.dinengschrift-and-open-sans #sps-media .sps-section-title,
.dinengschrift-and-open-sans #sps-media-floorplan .sps-section-title,
.dinengschrift-and-open-sans #sps-location .sps-section-title,
.dinengschrift-and-open-sans #sps-contact .sps-form-title {
  font-family: "DINEngschrift", sans-serif;
  font-weight: 400;
}
.dinengschrift-and-open-sans #sps-welcome .sps-main-title span {
  font-family: "Open Sans";
}