/*************************/
/* Mixins */
/*************************/
@media only screen and (min-width: 992px) {
  .display-mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 991px) {
  .display-desktop {
    display: none !important;
  }
}
html {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (min-width: 1640px) {
  html {
    font-size: 16px;
  }
}
html body {
  font-family: var(--sdk-template-font-default);
  color: var(--sdk-color-text-default);
}
html body strong {
  color: var(--sdk-color-text-strong);
  font-weight: 700;
}
html body a {
  transition: color 0.25s ease-in-out, opacity 0.25s ease-in-out;
  text-decoration: none;
}

body.wp-admin.post-type-page #poststuff h2,
h2,
.title-h2 {
  font-family: var(--sdk-template-font-title);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.875rem;
  color: var(--sdk-color-title-default);
}
@media only screen and (min-width: 992px) {
  body.wp-admin.post-type-page #poststuff h2,
  h2,
  .title-h2 {
    margin-bottom: 3.75rem;
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1640px) {
  body.wp-admin.post-type-page #poststuff h2,
  h2,
  .title-h2 {
    font-size: 5rem;
  }
}
body.wp-admin.post-type-page #poststuff h2 strong,
h2 strong,
.title-h2 strong {
  color: var(--sdk-color-title-strong);
}

body.wp-admin.post-type-page #poststuff h3,
h3,
.title-h3 {
  font-size: 1.25rem;
  color: var(--sdk-color-title-default);
  font-weight: 600;
  line-height: 1.3;
}
@media only screen and (min-width: 992px) {
  body.wp-admin.post-type-page #poststuff h3,
  h3,
  .title-h3 {
    font-size: 1.5rem;
  }
}
body.wp-admin.post-type-page #poststuff h3 strong,
h3 strong,
.title-h3 strong {
  color: var(--sdk-color-title-strong);
}

.label {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 991px) {
  .label {
    font-size: 0.75rem;
  }
}

.text-price {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}
@media only screen and (min-width: 992px) {
  .text-price {
    font-size: 40px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.kwpb-wysiwig a:not([class*=btn]):not([class*=button]) {
  color: var(--sdk-color-theme-primary);
  text-decoration: underline;
}
.kwpb-wysiwig a:not([class*=btn]):not([class*=button]):hover {
  opacity: 0.8;
}
.kwpb-wysiwig p {
  margin-bottom: 1.5rem;
}
.kwpb-wysiwig ul + p {
  margin-top: 1.5rem;
}
.kwpb-wysiwig ul, .kwpb-wysiwig ol {
  margin-block: 0.625rem;
  overflow: hidden;
}
.kwpb-wysiwig ul li, .kwpb-wysiwig ol li {
  position: relative;
  margin-top: 0.875rem;
  padding-left: 24px;
}
.kwpb-wysiwig ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url("../../images/sdk-template/svg/icon-check.svg");
  mask-image: url("../../images/sdk-template/svg/icon-check.svg");
  -webkit-mask-size: 16px;
  mask-size: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left;
  mask-position: left;
  background-color: var(--sdk-color-theme-primary);
}
.kwpb-wysiwig ol {
  counter-reset: list;
}
.kwpb-wysiwig ol li::before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.5;
  font-weight: 400;
  color: var(--sdk-color-theme-primary);
}

.contact .container {
  display: grid;
  grid-template-columns: 8px repeat(12, minmax(0px, 1fr)) 8px;
  align-items: center;
  column-gap: 8px;
  row-gap: 8px;
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .contact .container {
    column-gap: 24px;
    row-gap: 24px;
    grid-template-columns: 72px repeat(12, minmax(0px, 1fr)) 72px;
  }
}
@media only screen and (min-width: 992px) {
  .contact .container {
    padding-top: 0;
    padding-bottom: 15vh;
  }
}
.contact__header {
  grid-column-start: 2;
  grid-column-end: span 12;
  grid-row-start: 1;
  grid-row-end: span 1;
}
@media only screen and (min-width: 992px) {
  .contact__header {
    text-align: center;
    grid-column-start: 5;
    grid-column-end: span 6;
  }
}
.contact__text, .contact__title {
  position: relative;
}
.contact__text {
  font-size: 1.25rem;
}
.contact__form {
  grid-column-start: 2;
  grid-column-end: span 12;
  grid-row-start: 2;
  grid-row-end: span 1;
}
@media only screen and (min-width: 992px) {
  .contact__form {
    grid-column-start: 5;
    grid-column-end: span 6;
    grid-row-start: 2;
    grid-row-end: span 1;
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .contact__form .gfield--type-checkbox {
    width: auto;
    flex-basis: auto !important;
    margin-inline: auto !important;
  }
}
.contact__form .ginput_container_email {
  text-align: left;
}

/* cyrillic-ext */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/onest/v9/gNMKW3F-SZuj7xmS-HY6EQ.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/onest/v9/gNMKW3F-SZuj7xmb-HY6EQ.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* latin-ext */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/onest/v9/gNMKW3F-SZuj7xmR-HY6EQ.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/onest/v9/gNMKW3F-SZuj7xmf-HY.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.thumb-infos__metas.ul-room-metas .li-types br {
  display: none !important;
}
.rooms-wrapper .diadao-room-item[data-slug*=vendu] .thumb-media {
  filter: grayscale(100%);
}
.rooms-wrapper .diadao-room-item[data-slug*=vendu] .thumb-media:before {
  content: "Vendu";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

body h2,
body .banner__content .banner__big-title h2,
body #header-menu span {
  font-family: "Onest", sans-serif;
  font-weight: 300;
  line-height: 72px;
  font-size: 64px;
}
body h2 strong,
body .banner__content .banner__big-title h2 strong,
body #header-menu span strong {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 992px) {
  body h2,
  body .banner__content .banner__big-title h2,
  body #header-menu span {
    font-size: 24px;
    line-height: 32px;
  }
  body h2 strong,
  body .banner__content .banner__big-title h2 strong,
  body #header-menu span strong {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
  }
}

@media only screen and (max-width: 991px) {
  .swiper-actions.offersSwiper {
    margin-top: 16px !important;
  }
  .swiper-actions.offersSwiper .swiper-pagination {
    display: none;
  }
}

#diadao-booking-open, #diadao-booking-open-gallery {
  display: none !important;
}

body.home #diadao-booking-open {
  display: inline-block !important;
}

/*# sourceMappingURL=diadao-sdktemplate-urbania-collection.css.map */
