body {
  font-family: "Open Sans", sans-serif !important;
}

.floating-action-button {
  right: 10px;
  bottom: 10px;
  padding: 10px;
  z-index: 1000;
}

.floating-action-button--icon {
  width: 35px;
  height: 35px;
}

.header-middle {
  border-top: 2px solid var(--gray6);
}

.header-top--btn {
  padding: 4px 20px;
  transition: all 0.2s;
}

.header-top--btn:hover {
  background: var(--white);
  color: var(--gray);
}

.header-bottom-sticky {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  position: fixed;
  top: 48px;
  left: 0;
  width: 100%;
  right: 0;
  z-index: 999;
  transition: opacity 0.5s ease-in-out, max-height 0.3s ease-in-out;
}

.header-bottom-sticky.show {
  opacity: 1 !important;
  max-height: 500px !important;
}

.header-item--link {
  position: relative;
}

.header-item--link.active {
  color: var(--green);
}

#carouselHome {
  height: 100%;
  aspect-ratio: 2 / 1;
  max-height: 530px;
  width: 100%;
}

#carouselHome .carousel-item {
  background-color: black;
  animation: fadeIn 2s linear;
}

.carousel-control-next,
.carousel-control-prev {
  z-index: 1000;
}

#carouselHome .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: transparent;
  border: 3px solid var(--white);
  opacity: 1;
}

#carouselHome .carousel-indicators .active {
  background-color: var(--gray6);
}

#carouselHome .carousel-control-next,
#carouselHome .carousel-control-prev {
  opacity: 0 !important;
  transition: opacity 0.3s linear;
}

#carouselHome .carousel-control-next:focus,
#carouselHome .carousel-control-next:hover,
#carouselHome .carousel-control-prev:focus,
#carouselHome .carousel-control-prev:hover {
  opacity: 1 !important;
}

#carouselHome .carousel-item--content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-item--content--text {
  width: 100%;
}

.carousel-item--subtitle {
  font-size: clamp(16px, 5vw, 46px);
  opacity: 0;
  animation: fadeInBottomToTop 0.5s linear 1s forwards;
}

.carousel-item--desc {
  font-size: clamp(14px, 4vw, 25px);
  opacity: 0;
  animation: fadeIn 0.5s linear 1.5s forwards;
}

/* #carouselHome .carousel-item--content {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

.carousel-item--title {
  font-size: clamp(20px, 6vw, 66px);
}

.apartamentos-card--title:hover {
  color: var(--green);
  transition: color 0.2s linear;
}

.apartamentos-card--icon {
  width: 13px;
  height: 13px;
}

.apartamentos-card--image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.apartamentos-card--image > img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.apartamentos-card--image > img:hover {
  transform: scale(1.1);
  opacity: 0.8;
  transition: 0.2s linear;
}

.apartamentos-button-next,
.experiencias-button-next,
.apartamentos-button-prev,
.experiencias-button-prev {
  width: 45px;
  height: 45px;
  background-color: var(--gray7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.2s linear;
}

.apartamentos-button-next:hover,
.experiencias-button-next:hover,
.apartamentos-button-prev:hover,
.experiencias-button-prev:hover {
  background-color: var(--green);
}

.apartamentos-button-next:hover .stroke-gray8,
.experiencias-button-next:hover .stroke-gray8,
.apartamentos-button-prev:hover .stroke-gray8,
.experiencias-button-prev:hover .stroke-gray8 {
  stroke: var(--white);
}

.apartamentos-button-next > .apartamentos-button--icon,
.experiencias-button-next > .apartamentos-button--icon {
  transform: rotate(90deg);
}

.apartamentos-button-prev > .apartamentos-button--icon,
.experiencias-button-prev > .apartamentos-button--icon {
  transform: rotate(-90deg);
}

.apartamentos-button--icon {
  width: 28px;
  height: 28px;
}

.apartamentos-buttons {
  position: absolute;
  top: -10px;
  right: 10px;
}

.footer-link {
  color: #7f7f7f;
  transition: 0.2s linear;
}

.footer-link:hover {
  color: #5b5b5b;
}

.header-bottom nav ul {
  position: relative;
}

.header-item {
  position: relative;
}

.header-item--link {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  text-decoration: none;
  color: var(--green3);
}

.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--green);
  transition: all 0.3s ease;
  pointer-events: none;
}

.header-item.active .header-item--link,
.header-item:hover .header-item--link {
  color: var(--green);
}

.active .header-item--link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: var(--green);
}

.header-item .header-item--link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: calc(100% - 40px);
  height: 2px;
  background-color: transparent;
  transition: all 0.3s ease;
}

@media screen and (max-width: 992px) {
  .header-item--link.active::after,
  .header-item--link:hover::after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header-top {
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 3px 5px #808080;
  }
}

@media screen and (min-width: 992px) {
  .header-bottom-sticky {
    -webkit-box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInBottomToTop {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.widgetHotelsForm * {
  margin: 0;
}

.widgetHotelsForm .acessa_widget_block .widgetHotelsInputText,
.widgetHotelsForm .acessa_widget_block select {
  border: 1px solid #3b3b3b;
  border-radius: 4px 4px 4px 4px;
  box-shadow: none;
  color: #5b5b5b;
  float: left;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 12px;
  line-height: 20px;
  padding: 4px 22px 4px 6px;
}

.widgetHotelsForm .acessa_widget_block select {
  width: 100%;
  height: 30px;
  float: none;
}

.widgetHotelsForm .acessa_widget_block .widgetHotelsInputText.date,
.widgetHotelsForm .acessa_widget_block select {
  width: 70px;
  height: 20px !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  margin: 0;
  background: #fff;
}

.widgetHotelsForm .acessa_widget_block {
  display: inline-block !important;
  margin-right: 10px !important;
  position: relative;
}

.widgetHotelsForm a.submit_link {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 1px 2px rgba(0, 0, 0, 0.05);
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  margin-top: 20px;
  padding: 4px 12px;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  max-width: 180px;
  border: 1px solid #fff;
}

.CloudBedsWidget .widgetHotelsForm a.submit_link {
  border-radius: 0 !important;
  background: #464646;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 4px;
  min-width: 100px;
  margin-top: -5px;
  text-shadow: none;
  white-space: normal;
  cursor: pointer;
}

.CloudBedsWidget .widgetHotelsForm a.submit_link:hover {
  background: #fff;
  color: #464646;
}

.CloudBedsWidget .horizontal-widget a.submit_link:hover {
  background: #808080;
  color: #fff;
}

.widgetHotelsForm p {
  width: auto !important;
  margin-left: auto !important;
  margin-top: auto !important;
}

.widgetHotelsForm .acessa_widget_block p {
  font-size: 13px;
  line-height: 20px;
  padding: 0;
  margin-bottom: 0;
  /*font-stretch: semi-condensed;*/
}

.widgetHotelsForm .horizontal-widget a.submit_link {
  margin-top: 0px;
  color: #ffffff;
  position: relative;
  top: 24px;
}

.widgetHotelsForm .vertical-widget .acessa_widget_block {
  float: none !important;
  margin-right: 0 !important;
  margin-top: 10px;
}

.widgetHotelsForm .vertical-widget a.submit_link {
  margin-top: 9px;
}

.widgetHotelsForm .vertical-widget a.submit_link:hover {
  background: #808080;
  color: #fff;
}

.widgetHotelsForm .vertical-widget .acessa_widget_block .widgetHotelsInputText {
  float: none;
}

.button {
  border: none;
  height: 28px;
  width: 96px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
}

.button:hover {
  background-position: center -28px;
}

.button:active {
  background-position: center -56px;
}

.largeButton {
  border: none;
  height: 38px;
  width: 206px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 36px;
}

.largeButton:hover {
  background-position: center -38px;
}

.largeButton:active {
  background-position: center -76px;
}

/* ###################################### FLOAT WIDGET ###################################### */
.float_bg2 {
  background: #464646;
  width: 100%;
  z-index: 50001;
  left: 0;
  top: 0;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border: none;
  border-bottom: 2px solid #fff;
  box-shadow: 0 3px 5px #808080;
}

.float {
  padding-top: 3px;
  margin-left: auto;
  margin-right: auto;
  width: 1060px;
}

a.submit_link {
  text-decoration: none;
  width: 100%;
}

.float_bg2 a.submit_link {
  margin: 0;
  border: 1px solid #fff;
}

.float_bg2 .acessa_widget_block p {
  float: left;
  line-height: 24px;
  padding: 16px 4px 3px 0;
  color: #ffffff;
  font-size: 14px;
  display: inline-block;
}

.float_bg2 .acessa_float_left {
  float: left;
}

.float_bg2 .acessa_float_dates .form_group,
.float_bg2 .acessa_float_dates .input_group {
  display: inline-block;
}

.CloudBedsWidget .float .form_group {
  margin-right: 10px;
  margin-bottom: 0;
  width: auto;
}

.CloudBedsWidget .float .form_group label {
  display: inline-block;
  margin-right: 10px;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  line-height: 14px;
  vertical-align: text-bottom;
  max-width: 80px !important;
}

.CloudBedsWidget .float_bg2 .acessa_float_description {
  margin: 14px 4px 14px 4px;
  font-size: 14px;
  width: 390px;
  line-height: 15px;
}

.CloudBedsWidget .float_bg2 input[type="text"].date,
.CloudBedsWidget .float_bg2 select {
  width: 120px;
  height: 32px;
  border: none;
  margin: 6px 0;
  padding: 0 0 0 10px;
  color: #464646;
  font-size: 13px;
  font-weight: 300;
  box-sizing: border-box !important;
  border-radius: 2px;
  display: inline-block;
  background: #fff;
}

.widgetHotelsForm .widget_text {
  text-align: center;
  margin: 30px 51px 0;
  font-size: 19px;
  color: black;
}

.float_bg2 .acessa_float_dates {
  width: 620px;
  text-align: right;
}

.widgetHotelsForm.v2 .acessa_widget_block {
  margin-right: 13px !important;
  display: inline-block;
}

.CloudBedsWidget .float .dates_group {
  display: inline-block;
}

@media (min-width: 1060px) {
  .float {
    width: 1060px;
  }

  .float_bg2 {
    position: fixed;
    height: 50px;
  }

  .floatWrapper {
    padding-bottom: 51px;
  }
}

@media (max-width: 1059px) {
  .float {
    width: auto;
  }

  .CloudBedsWidget .float_bg2 {
    position: fixed;
    /* Make the div "float" over the site */
    height: 87px;
  }

  .CloudBedsWidget .float .form_group label {
    display: inline-block;
    text-align: left;
  }

  .CloudBedsWidget .float_bg2 .acessa_float_dates {
    width: 100%;
    text-align: center;
    clear: both;
  }

  .CloudBedsWidget .float_bg2 .acessa_float_description {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }

  .floatWrapper {
    padding-bottom: 82px;
  }
}

@media (max-width: 549px) {
  .float {
    width: auto;
  }

  .CloudBedsWidget .float_bg2 {
    position: absolute !important;
    width: 100%;
    height: 107px;
  }

  .CloudBedsWidget .float .dates_group {
    clear: both;
  }

  .CloudBedsWidget .float .dates_group .end_date {
    margin-right: 0 !important;
  }

  .CloudBedsWidget .float .form_group label {
    display: block;
    text-align: left;
  }

  .CloudBedsWidget .widgetHotelsForm.float a.submit_link {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
    max-width: 252px !important;
  }

  .CloudBedsWidget .float_bg2 .acessa_float_description {
    display: none;
  }

  .floatWrapper {
    padding-bottom: 106px;
  }
}

/* #################################### OTHER ####################################*/
.modul_website_published.btn-group {
  display: inline-block;
  font-size: 0;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  z-index: 1;
}

.modul_website_published .btn-group {
  display: inline-block;
  font-size: 0;
  position: relative;
  vertical-align: middle;
  white-space: nowrap;
  z-index: 1;
}

.modul_website_published .btn-group > .btn:first-child,
.modul_website_published .btn-group > .btn.first-child {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
  color: #757575;
  font-size: 12px;
  margin-left: 0;
}

.modul_website_published .btn-group div.smm {
  padding: 0;
  width: 46px;
}

.modul_website_published .social_fc > div.btn {
  border-color: #222f65;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  height: 44px;
}

.modul_website_published .social_fc > div.bigger {
  padding: 0 20px;
}

.modul_website_published .social_tw > div.btn {
  border-color: #4b81c5;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  height: 44px;
}

.modul_website_published .social_tw > div.bigger {
  padding: 0 30px;
}

.modul_website_published .btn-group > .btn,
.modul_website_published .btn-group > .dropdown-menu {
  font-size: 12px;
}

.modul_website_published .btn-group > .btn {
  border-radius: 0 0 0 0;
  position: relative;
}

.modul_website_published .btn {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  background-color: #f3f3f3;
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) #a2a2a2;
  border-image: none;
  border-radius: 4px 4px 4px 4px;
  border-style: solid;
  border-width: 1px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 1px 2px rgba(0, 0, 0, 0.05);
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
}

.modul_website_published .btn-group > .btn:last-child,
.modul_website_published .btn-group > .dropdown-toggle {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.modul_website_published .btn-group > .btn + .btn {
  margin-left: -1px;
}

div.bigger span {
  padding-top: 10px;
  display: block;
}

div.smm img {
  padding-top: 10px;
}

.modul_website_published .buttons {
  padding-top: 30px;
  text-align: center;
}

.CloudBedsDatePicker table.ui-datepicker-calendar th,
.CloudBedsDatePicker table.ui-datepicker-calendar td {
  width: auto;
}

/* ************ Style for new datapicker ************** */
.pika-lendar {
  width: 210px;
}

.CloudBedsDatePicker {
  z-index: 50002 !important;
}

.CloudBedsDatePicker.pika-single .is-today .pika-button {
  color: #7aad3a;
  font-weight: bold;
}

.CloudBedsDatePicker.pika-single .is-today .pika-button:hover {
  color: #fff;
  font-weight: bold;
}

.CloudBedsDatePicker.pika-single .is-selected .pika-button {
  color: #000;
  font-weight: bold;
  background: #b1b1b1 none repeat scroll 0 0;
  box-shadow: 0 1px 3px #ccc inset;
  border-radius: 3px;
}

.CloudBedsDatePicker .pika-button:hover {
  color: #fff;
  background: #7aad3a;
  box-shadow: none;
  border-radius: 3px;
}

.CloudBedsDatePicker.pika-single {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif !important;
}

.CloudBedsDatePicker.pika-single .pika-table button {
  box-shadow: none !important;
  border: none;
}

.CloudBedsDatePicker.pika-single .pika-table td {
  width: auto;
  border: none !important;
  padding: 0 !important;
}

.CloudBedsDatePicker.pika-single .pika-table th {
  width: auto;
  color: #000 !important;
  border: none !important;
  padding: 0 !important;
}

.CloudBedsDatePicker.pika-single table {
  left: 0 !important;
  margin-bottom: 0 !important;
}

.CloudBedsDatePicker .pika-button {
  border-radius: 0;
  box-shadow: none !important;
}

.CloudBedsDatePicker button {
  min-width: 10px !important;
}

.CloudBedsWidget .vertical-widget {
  width: 100px;
}

.acessa_float_dates .input_group {
  position: relative;
}

.date_mobile {
  font-size: 13px !important;
  width: 110px !important;
  border: 1px solid #3b3b3b !important;
}

.widget_hide {
  display: none !important;
}

.float_assoc2 .acessa_float_dates {
  width: 700px;
  text-align: right;
}

@media (min-width: 1200px) {
  .float_assoc2 .float {
    width: 1200px;
  }
}

@media (max-width: 1199px) {
  .float_assoc2 .float {
    width: auto;
  }
}
