/* X-Small devices (portrait phones, less than 576px) */
/* No media query for `xs` since this is the default */

:root {
    --yellow: #E88B1E;
    --light_yellow: #F6F1EC;
    --black: #1E1E1E;
    --white: #ffffff;
    --green: #00732D;
    --red: #B61717;
    --blue: #0D5EA5;
}

html {
    font-size: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
}

a {
    text-decoration: none;
}

h5 {
    font-weight: 700;
}

hr {
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, .5);
}

.bebas-neue {
    font-family: 'Bebas Neue', sans-serif;
}

.bebas-neue-title-2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
}

.white {
    color: var(--white);
}

.white-bg {
    background-color: var(--white);
}

.black {
    color: var(--black);
}

.yellow {
    color: var(--yellow);
}

.yellow-bg {
    background-color: var(--yellow);
}

.green {
    color: var(--green);
}

.red {
    color: var(--red);
}

.red-bg {
    background-color: var(--red);
}

.blue {
    color: var(--blue);
}

.light-yellow-bg {
    background-color: var(--light_yellow);
}

.max-width-1200 {
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    z-index: 99999;
    width: 100%;
}

.mobile-navigation a.call {
    color: var(--black);
    font-size: 1.3rem;
}

.mobile-menu-bg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .6);
    width: 100vw;
    height: 100vh;
    display: none;
    z-index: 10;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -2000px;
    width: 75vw;
    background-color: white !important;
    padding: 15px 20px 30px 40px;
    z-index: 20;
    overflow: hidden;
}

@keyframes show-mobile-menu {
    from {
        left: -1000px;
    }

    to {
        left: 0;
    }
}

@keyframes hide-mobile-menu {
    from {
        left: 0;
    }

    to {
        left: -1000px;
    }
}

.mobile-menu-hide a {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
}

.mobile-menu,
.mobile-menu-more {
    list-style: none;
    padding: 0;
}

.mobile-menu li > a,
.mobile-menu-more li > a {
    display: block;
    text-decoration: none;
    padding: 6px 0;
    color: black;
}

.mobile-menu-more li > a {
    padding: 12px 0;
    font-size: 24px;
}

.mobile-menu a > i {
    font-size: 1rem;
}

.mobile-menu-more {
    border-top: 1px solid black;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    align-items: center;
    padding-top: 10px;
}

.mobile-menu-more li > a {
    padding-left: 10px;
    padding-right: 10px;
}

.header-border {
    border-bottom: 1px solid #e7e7e7;
}

.mobile-booking-form {
    height: 92px;
    z-index: 2;
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

#mobile-booking-form-header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100px;
    z-index: 2;
    background-color: var(--white);
}

#mobile-booking-form-header .title {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
}

#mobile-booking-form-header .fake-submit {
    width: 136px;
    height: 50px;
    background-color: var(--yellow);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.mc-close {
    width: 136px;
    text-align: right;
}

#mobile-booking-form-body {
    position: relative;
    transform: translateY(-310px);
    transition: all 1s;
    z-index: 0;
    background-color: var(--white);
}

.mbfb-anim {
    transform: translateY(0px) !important;
    transition-timing-function: ease;
}

.all-checkbox {
    position: relative;
    height: 20px;
    width: 20px;
    background: url("/assets/images/checkbox-unchecked.png") center center no-repeat;
}

.all-checkbox img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 500ms;
}

.show {
    opacity: 1 !important;
}

.hide {
    opacity: 0 !important;
}

.mobile-apartment-selector,
.mobile-apartment-input {
    height: 50px;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 12px 16px;
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.mobile-apartment-selector-container {
    position: relative;
    height: 55px;
    margin-top: 10px;
}

.mobile-apartment-selector {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: var(--white);
    overflow: hidden;
    transition: height 500ms;
    display: block;
    cursor: default;
}

.mobile-apartment-selector > div {
    display: flex;
    justify-content: space-between;
}

.mas-building {
    height: 34px;
}

.mas-building i {
    color: var(--yellow);
}

.mobile-apartment-inputs-container {
    display: inline-flex;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
}

.mobile-form-submit {
    width: 100%;
    height: 50px;
    background-color: var(--yellow);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    margin-top: 20px;
}

#home_carousel {
    margin-top: 174px;
}

.home-carousel-overlay {
    background-color: #00000066;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: opacity 1000ms;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators [data-bs-target] {
    border: 5px solid #000;
    width: 12px;
    height: 12px;
    border-radius: 100px;
    opacity: 1;
    background-color: rgba(255, 255, 255, .65);
}

.carousel-indicators .active {
    background-color: rgba(0, 0, 0, .65);
}

.banner-seguro {
    position: relative;
    display: flex;
    width: 400px;
    height: 500px;
    margin: 0 20px;
    background-color: #ffffff;
    flex-direction: row;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.banner-seguro-content h1 {
    font-size: 34px;
}

.banner-seguro .close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 24px;
    cursor: pointer;
}

.banner-seguro-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 33px;
    text-align: center;
}

.banner-seguro-content a {
    display: flex;
    height: 50px;
    width: fit-content;
    padding: 0 40px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.donde-estamos-mobile {
    padding-top: 50px;
    background-color: var(--light_yellow);
}

.donde-estamos-mobile h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
}

.donde-estamos-mobile i {
    font-size: 1.4rem;
    display: inline-block;
    margin-right: 15px;
}

footer {
    min-height: 500px;
    background-color: var(--light_yellow);
    padding: 68px 40px 15px;
}

footer a,
.copy a {
    color: var(--black);
}

footer a:hover,
.copy a:hover {
    text-decoration: underline;
}

/*.footer-contact {
    max-width: 325px;
}*/


.footer-rrss a {
    color: var(--black);
    font-size: 1.55rem;
    display: inline-block;
}

.copy {
    border-top: 1px solid rgba(0, 0, 0, .2);
    text-align: center;
    padding: 30px;
    background-color: var(--light_yellow);
}

.section-header {
    max-width: 980px;
}

.owl-carousel .customer-opinion {
    max-width: 380px;
    height: 440px;
    background-color: var(--light_yellow);
    padding: 30px;
    margin: auto;
}

.co-header {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 2px solid #E9E6E2;
}

.co-header .avatar {
    width: 100px;
    margin-right: 20px;
}

.co-name {
    padding: 0;
    margin-bottom: 6px;
}

.stars {
    color: #FA9D4C;
}

.customer-opinion .stars {
    margin-bottom: 30px;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    box-sizing: border-box;
    border: 4px solid var(--black);
    background-color: var(--white);
    width: 20px;
    height: 20px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: var(--black);
}

.other-houses-wrap {
    position: relative;
    background-color: var(--black);
    height: 200px;
}

.other-houses-wrap:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    transition: opacity 500ms;
}

.other-houses-wrap#dau:before {
    background-image: url('../images/bg-dau-studios.jpg');
}

.other-houses-wrap#dau:hover:before {
    opacity: .5;
}

.other-houses-wrap#feten:before {
    background-image: url('../images/bg-feten.jpg');
}

.other-houses-wrap#feten:hover:before {
    opacity: .5;
}

.other-houses-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.white-frame {
    position: relative;
    z-index: 1;
    width: 270px;
    height: 120px;
    border: 1px solid var(--white);
    padding: 10px;
}

.left-line,
.right-line {
    height: 1px;
    width: 9999px;
    background-color: var(--white);
    position: absolute;
    top: 60px
}

.left-line {
    left: -9999px;
}

.right-line {
    right: -9999px;
}

.white-frame-inside {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.white-frame-inside h3 {
    font-weight: 700;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    grid-template-areas:
        "top top top top"
        "middle middle middle middle"
        ". bottom bottom .";
}

.newsletter-email {
    grid-area: top;
}

.newsletter-email input {
    width: 100%;
    height: 50px;
    border: 1px solid rgba(0, 0, 0, .18);
    padding: 0 15px;
}

.newsletter-submit {
    grid-area: bottom;
    height: 50px;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
    border: 1px solid var(--black);
    width: 100%;
}

.newsletter-acceptance {
    grid-area: middle;
    margin: 20px auto;
}

.last-ig-item {
    max-width: 380px;
    margin: auto;
    border: 1px solid rgba(0, 0, 0, .18);
    padding: 20px;
}

.lii-header {
    display: flex;
    align-items: center;
}

.lii-header img {
    width: 50px !important;
    margin-right: 20px;
}

.lii-header span {
    font-size: .8rem;
    font-weight: bold;
}

.lii-image {
    width: 100%;
    padding-bottom: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.lii-title {
    min-height: 50px;
    margin-bottom: 30px;
}

.lii-footer {
    display: flex;
}

.liif-icons {
    width: 50%;
    font-size: 1.25rem;
    display: flex;
    justify-content: space-between;
}

.liif-date {
    width: 50%;
    text-align: right;
    font-size: .9rem;
    font-weight: 500;
}

.dvp-activity-img {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dvp-activity-txt {
    display: flex;
    flex-direction: column;
    background-color: #F6F1EC;
}

.dvpa-txt-header {
    font-weight: 700;
    border-bottom: 2px solid var(--white);
    padding: 20px;
    margin: 0;
}

.dvpa-txt-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding: 20px;
}

.dvp-activity-btn {
    display: flex;
    height: 50px;
    width: 50%;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.activities-pagination,
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
    margin-bottom: 80px;
}

.activities-pagination a,
.blog-pagination a {
    display: flex;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    justify-content: center;
    align-items: center;
    font-weight: 700;
    transition: all 500ms;
}

.activities-pagination a:hover,
.blog-pagination a:hover {
    background-color: var(--black);
    color: var(--white);
}

.grupos-page-content,
.blog-page-content {
    max-width: 1200px;
}

.grupos-page-content form label {
    display: block;
    margin-bottom: 6px;
}

.grupos-page-content form input,
.grupos-page-content form textarea {
    width: 100%;
    background-color: var(--light_yellow);
    border: none;
    box-sizing: border-box;
    padding: 12px;
}

.grupos-page-content form input {
    height: 60px;
}

.grupos-page-content form textarea {
    height: 220px;
}

/** Custom checkbox **/
form input[type="checkbox"] {
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox {
    user-select: none;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    min-width: 20px;
    margin-right: 6px;
    border: 1px solid var(--black);
    background-color: var(--white);
    transition: all 500ms;
}

.checkbox input:checked ~ .checkmark {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
}

.checkbox .checkmark:after {
    top: -2px;
    left: 4px;
    color: var(--white);
    content: '✓';
    font-weight: 700;
    position: absolute;
    display: none;
}

.checkbox input:checked ~ .checkmark:after {
    display: block;
}

/** End custom checkbox **/

form button {
    display: flex;
    height: 50px;
    width: 150px;
    background-color: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

form a {
    color: var(--black);
    font-weight: 500;
}

form a:hover {
    text-decoration: underline;
}

.contact-page-content {
    max-width: 1200px;
    font-size: 1.15rem;
}

.black-link-btn {
    display: flex;
    height: 46px;
    width: fit-content;
    padding: 0 40px;
    background-color: var(--black);
    color: var(--white);
    justify-content: center;
    align-items: center;
    font-weight: 700;
    border: 2px solid var(--black);
    transition: all 300ms;
}

.black-link-btn:hover {
    background-color: transparent;
    color: var(--black);
}

.round-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
}

.green-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #28A11A;
    color: var(--white);
    font-size: 12px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
}

.yellow-link-w-underline {
    display: inline-flex;
    align-items: center;
    color: var(--yellow);
    text-decoration: underline;
}

.toggle-rate-details-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--black);
    color: var(--white);
    margin-right: 8px;
}

.toggle-rate-details {
    cursor: pointer;
}

.payment-method-checkbox {
    width: 220px;
    height: 150px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.payment-method-checkbox input[type="radio"],
.payment-method-checkbox span.checkmark {
    position: absolute;
    top: 8px;
    left: 8px;
}

#customer-data input {
    border: none;
    height: 50px;
    padding: 0 24px;
    width: 100%;
}

#customer-data select {
    border: none;
    height: 50px;
    padding: 0 24px;
    border-right: 12px solid white;
}

#customer-data textarea {
    border: none;
}

.qhv-links a {
    padding: 2px;
    color: var(--black);
    transition: all 500ms;
}

.qhv-links a:hover {
    background-color: var(--white);
}

.qhv-item {
    position: relative;
    height: 440px;
    overflow: hidden;
    background-color: var(--white);
}

.qhv-item h2 > a {
    color: var(--black);
}

.qhv-item-image {
    position: relative;
    height: 206px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    transition: transform 0.3s ease;
    z-index: 0;
}

.qhv-item:hover .qhv-item-image {
    transform: scale(1.2);
}

.qhv-item-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 25px;
    left: 0;
    height: 44px;
    background-color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 25px;
    font-size: 20px;
    z-index: 10;
}

.qhv-item h2 {
    border-bottom: 1px solid #D3D3D3
}

.p-with-mask {
    position: relative;
}

.p-with-mask:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 10%, rgba(255, 255, 255, 0) 100%);
}

.white-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: transparent;*/
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 5%, rgba(255, 255, 255, 0) 20%);
    z-index: 1000;
}

.qhv-item-favorite {
    color: red;
    position: absolute;
    top: 26px;
    right: 20px;
    font-size: 1.75rem;
    z-index: 1100;
}

#qhv-activities {
    height: 990px !important;
    overflow: hidden;
}

/*.apartments-carousel {
    position: relative;
    top: -112px;
}*/

.apartments-carousel-wrapper {
    max-width: 1300px;
    margin: auto;
    position: relative;
    top: -162px;
    overflow: hidden;
    height: 340px;
    padding-top: 50px;
}

.apartments-carousel .item-inner {
    width: 200px;
    height: 200px;
    margin: auto;
    background-color: var(--light_yellow);
    transform: translate3d(0, 0, 0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.apartments-carousel .item-inner h3 {
    text-align: center;
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.apartments-carousel .item-inner.item-inner-mar h3 {
    margin-top: 38px;
}

.apartments-carousel .item-inner img {
    width: 100px;
}

.apartments-carousel .item-inner.item-inner-mar img {
    width: initial;
    height: 100px;
}

.apartments-carousel .owl-item .item-inner {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.apartments-carousel .owl-item.center .item-inner {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
    background-color: var(--black);
    color: var(--light_yellow);
}

.apartments-carousel .owl-item.center .item-inner img {
    -webkit-filter: invert(1);
    filter: invert(1);
}

.apartments-carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.apartments-carousel .owl-nav {
    position: relative;
    top: -86px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding-left: 6px;
    padding-right: 6px;
    height: 1px;
}

.apartments-carousel .owl-nav button > span {
    font-size: 50px;
}

.apartments-carousel .owl-nav button {
    transition: color 0.3s ease-in-out;
}

.apartments-carousel .owl-nav button:hover {
    color: var(--yellow);
}

.long-stay-tag {
    color: var(--white);
    background-color: var(--black);
    text-transform: uppercase;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    border-radius: 50px;
    display: flex;
    height: 46px;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    bottom: -30px;
    padding-top: 3px;
    -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.apartments-carousel .owl-item.center .item-inner .long-stay-tag {
    background-color: var(--yellow);
}

.discover-our-apartments-carousel .doa-item {
    position: relative;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.discover-our-apartments-carousel .doa-item:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.discover-our-apartments-carousel .doai-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: url(../images/discover-our-apartments/overlay.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 20px;
}

.discover-our-apartments-carousel .owl-dot.active span {
    background-color: var(--yellow) !important;
    border-color: var(--yellow);
}

.name {
    transform: translateY(20px) rotate(310deg);
    text-transform: uppercase;
    white-space: nowrap;
    display: flex;
    justify-content: end;
}

.discover-our-apartments-carousel .owl-dot.active p {
    font-weight: 500;
}

.bg-line {
    height: 2px;
    width: 100%;
    background-color: var(--black);
    margin-top: 20px;
}

.filter-activities,
.filter-blog {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 70px;
}

.filter-activities button,
.filter-blog button {
    height: 45px;
    border: 1px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    background-color: transparent;
    font-weight: 600;
    margin-top: 10px;
    transition: all 500ms;
    padding: 0 15px;
}

.filter-activities button.selected,
.filter-blog button.selected {
    background-color: var(--black);
    color: var(--white);
}

#qhv-activities-mobile .qhv-item {
    display: flex;
    height: 250px;
}

#qhv-activities-mobile .qhv-item .qhv-item-image {
    width: 30%;
    height: 250px;
}

#qhv-activities-mobile .qhv-item .qhv-item-content {
    width: 70%;
}

.qhv-item-tag-mob {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
}

.qhv-item-favorite-mob {
    font-size: 20px;
    color: #E23A3A;
}

#qhv-activities-mobile .qhv-item .qhv-item-content h2 {
    border-bottom-width: 0px;
}

#qhv-activities-mobile .qhv-item .qhv-item-content .white-mask {
    background: linear-gradient(0deg, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 90%);
    z-index: 1000;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: unset;
    height: 50px;
}

.qhv-links-mob a {
    color: var(--black);
    font-weight: bold;
    text-decoration: underline;
}

.header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 174px;
}

.header-title.apartments-page {
    height: 370px;
    background-image: url("../images/apartamentos-bg-mob.webp");
}

.apartments-detail-header {
    width: 100%;
    height: 590px;
    margin-top: 174px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.features-carousel {
    margin-top: 80px;
}

.feature {
    text-align: center;
    max-width: 300px;
    margin: auto;
}

.feature .icon-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    background-color: var(--light_yellow);
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 44px;
}

.feature-name {
    font-weight: 500;
    margin-bottom: 0;
	font-size: 1rem;
}

.feature-description{font-size: 1rem;}
.header-title.descubre-valencia-page {
    height: 370px;
    background-image: url("../images/descubre-valencia-bg-mob.webp");
}

.header-title.grupos-page {
    height: 370px;
    background-image: url("../images/grupos-bg-mob.webp");
}

.header-title.blog-page {
    height: 370px;
    background-image: url("../images/blog-bg-mob.webp");
}

.header-title.blog-detail-page {
    height: 370px;
}

.header-title.contact-page {
    height: 370px;
    background-image: url("../images/contact-bg-mob.webp");
}

.header-title.seguro-cancelacion-page {
    height: 370px;
    background-image: url("../images/seguro-bg-mob.webp");
}

.seguro-cancelacion-page-image {
    display: none;
}

.ap-apartment .image {
    height: 300px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
}

.ap-apartment .info h3 {
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, .8);
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.15rem;
    margin-bottom: 0;
    padding: 6px 23px 6px 36px;
}

.ap-apartment .info a {
    display: flex;
    width: 132px;
    height: 45px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    background-color: var(--white);
    font-weight: 600;
    transition: all 500ms;
    margin-right: 36px;
}

.filter-activities-selector-container,
.filter-blog-selector-container {
    position: relative;
    height: 55px;
    margin: 60px 30px 30px;
    z-index: 2;
}

.filter-activities-selector,
.filter-blog-selector {
    position: absolute;
    top: 0;
    height: 50px;
    width: 100%;
    background-color: var(--white);
    overflow: hidden;
    transition: height 500ms;
    display: block;
    border: 1px solid rgba(0, 0, 0, .2);
}

.filter-activities-selector .filter-selected,
.filter-blog-selector .filter-selected {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
    padding: 0 20px;
}

.fas-filter,
.fbs-filter {
    height: 32px;
    padding-left: 20px;
}

.post-box { 
    background-color: var(--light_yellow);
}

.post-header {
    position: relative;
    height: 236px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.post-header i.favorite {
    color: var(--black);
    position: absolute;
    top: 30px;
    right: 20px;
    font-size: 1.75rem;
}

.post-header i.favorite.selected {
    color: #ff0000;
}




.post-body .category {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.post-body h3 {
    font-weight: 700;
}

.post-body h3 a {
    color: var(--black);
}

.featured-post {
    position: relative;
    background-color: #000000;
    flex-grow: 1;
    height: 500px;
}

.featured-post-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: .90;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.featured-post-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    color: var(--white);
    font-size: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
}

.featured-post-content .upper-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-post-content .upper-content span:first-child {
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-post-content .upper-content i {
    font-size: 1.75rem;
}

.featured-post-content .upper-content i.selected {
    color: #ff0000;
}

.featured-post-content .bottom-content h1 a {
    color: var(--white);
}

.blog-detail > * {
    padding-left: 30px;
    padding-right: 30px;
}

.blog-detail-meta {
    display: flex;
    justify-content: space-between;
    margin: 60px 30px 70px;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .3);
}

.blog-detail img {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
    padding: 0;
}

.previous-post,
.next-post {
    width: 50%;
}

.previous-post {
    padding-right: 10px;
}

.next-post {
    padding-left: 10px;
}

.post-link-thumb {
    width: 150px;
    height: 150px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.post-link-category {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.post-link-read-more {
    color: var(--black);
    font-weight: 400;
    border: 1px solid var(--black);
    border-radius: 50px;
    padding: 6px 28px;
    font-size: 20px;
    display: inline-block;
    margin-top: 16px;
}

.post-comments {
    background-color: var(--light_yellow);
    padding: 90px 30px 100px;
    margin-bottom: 16px;
}

.post-comments h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 90px;
}

.comment {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.comment-header {
    margin-bottom: 20px;
}

.comment-header > div:first-child {
    font-size: 18px;
}

.post-comments-form form > .d-lg-flex {
    column-gap: 40px;
}

.post-comments-form input,
.post-comments-form textarea {
    border: none;
    background-color: var(--white);
}

.post-comments-form input {
    height: 60px;
    width: 100%;
}

.post-comments-form textarea {
    width: 100%;
    height: 200px;
}

.post-comments-form label {
    display: block;
    margin-bottom: 12px;
}

.post-comments-form .stars {
    height: 60px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    font-size: 30px;
    padding: 0 20px;
}



.como-llegar-header,
.ver-faqs-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: center;
    cursor: default
}

.como-llegar-header h2,
.ver-faqs-header h2 {
    font-weight: 700;
    margin-bottom: 0;
}

.como-llegar-header i,
.ver-faqs-header i {
    display: block;
    font-size: 45px;
}

.como-llegar-bottom {
    display: flex;
    justify-content: space-between;
}

.como-llegar-bottom a,
.ver-faqs a {
    height: 45px;
    border: 1px solid var(--black);
    border-radius: 50px;
    color: var(--black);
    background-color: transparent;
    font-weight: 500;
    transition: all 500ms;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}

.como-llegar-bottom a:hover,
.ver-faqs a:hover {
    color: var(--white);
    background-color: var(--black);
}

.como-llegar-bottom .mobile-apartment-selector {

}

.recepcion-mobile {
    background-color: var(--light_yellow);
    padding-top: 40px;
    height: 110px;
    overflow: hidden;
    transition: height 500ms;
}

.recepcion h2 {
    padding-left: 35px;
    cursor: default;
}

.recepcion > div {
    display: flex;
    flex-direction: column;
    background-color: var(--light_yellow);
    padding: 40px 35px;
}

.recepcion > div > div {
    display: flex;
    align-items: center;
}

.recepcion p {
    margin-bottom: 0;
}

.recepcion i {
    display: block;
    font-size: 30px;
}

.recepcion > div > div > div > span {
    display: flex;
    width: 30px;
    justify-content: center;
    align-items: center;
}

.contact-form label {
    display: block;
    padding-bottom: 6px;
}

.long-stay-booking-form input,
.long-stay-booking-form textarea,
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid;
    border-color: var(--light_yellow);
    background-color: var(--light_yellow);
    border-radius: 0;
    height: 60px;
    box-sizing: border-box;
    padding: 12px;
}

.long-stay-booking-form textarea,
.contact-form textarea {
    height: 220px;
}

.contact-form form > div {
    margin-bottom: 28px;
}

.contact-form .selector-container {
    position: relative;
    height: 60px;
    width: 100%;
    cursor: default;
    box-sizing: border-box;
}

.contact-form .selector {
    box-sizing: border-box;
    height: 60px;
    width: 100%;
    overflow: hidden;
    transition: height 500ms;
    display: block;
    background-color: var(--light_yellow);
    border: none;
    padding: 0 16px 16px;
}

.contact-form .selector > div {
    display: flex;
    justify-content: space-between;
}

.contact-form .selector .selected {
    padding: 16px 0;
}

.contact-form .selector .item {
    height: 34px;
    line-height: 34px;
    padding-left: 4px;
}

.contact-form .selector .item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.booking-page-header-mobile {
    display: flex;
    align-items: center;
    margin-top: 82px;
    height: 140px;
    background: url(../images/reservas-fondo.png) center center;
    padding-left: 30px;
}

.booking-page-header-mobile .bph-steps {
    display: flex;
    flex-direction: column;
}

.booking-page-header-mobile .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.booking-page-header-mobile .step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--black);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-weight: bold;
    box-sizing: border-box;
    padding-top: 1px;
}

.booking-page-header-mobile .step-number-current, .step-number-fullfilled {
    background-color: var(--black);
    color: var(--white);
}

.booking-page-header-mobile .step-separator {
    width: 1px;
    height: 15px;
    background-color: var(--black);
    margin-left: 13px;
}

.booking-search-results .booking-data .col-6 > div,
.booking-select-apartment .booking-data .col-6 > div {
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}

.booking-data .day {
    font-size: 46px;
    line-height: 46px;
}

.booking-data .month {
    font-size: 16px;
    line-height: 16px;
}

input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 0px;
    /*  overflow: hidden;  remove this line*/

    /* New additions */
    height: 3px;
    background: #ccc;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none;
    /* creating a custom design */
    height: 15px;
    width: 15px;
    background-color: #000;
    border-radius: 0%;
    border: none;

    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #000;
    border-radius: 0%;
    border: none;

    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */

/*input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255,85,0, .1)
}
input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
}
input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
}*/

/* Hover, active & focus Thumb: Firfox */

/*input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255,85,0, .1)
}
input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
}
input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
}*/

.apartment-details-images-carousel .adic-item {
    width: 100%;
    padding-bottom: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.booking-search-result {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .2);
    margin-bottom: 40px;
}

.booking-search-result-img {
    width: 100%;
    padding-bottom: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.booking-search-result-description {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    flex-grow: 1;
}

.apartment-features > div > span:first-child {
    display: inline-block;
    width: 38px;
    text-align: center;
    margin-right: 14px;
}

.apartment-features i {
    font-size: 22px;
}

.bsr-rate-left,
.bsr-rate-right {
    font-size: 18px;
}

.bsr-rate-left {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.rate-details-top {
    background-color: var(--light_yellow);
    border-top: 1px solid rgba(0, 0, 0, .2);
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.rate-details-bottom {
    background-color: var(--light_yellow);
}

.booking-confirmed-data {
    border: 1px solid #1E1E1E80;
}

.booking-confirmed-data .dates {
    border-bottom: 1px solid #1E1E1E80;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.booking-confirmed-data .price-breakdown {
    border-top: 1px solid #1E1E1E80;
}

.customer-area-call {
    border: 1px solid #1E1E1E80;
}

body > div.container.contact-page-content.mt-0.pt-0 > div:nth-child(2) > div:nth-child(1) > .actived{
    height: 930px !important;
}


@media only screen and (min-width: 992px) {
    .como-llegar,
.ver-faqs {
    display: flex;
    flex-direction: column;
    justify-content:start;
    flex-grow: 1;
    background-color: var(--light_yellow);
    padding: 40px 35px;
    height: auto !important;
    overflow: hidden;
    transition: height 500ms;
}
}

@media only screen and (min-width: 320px) and (max-width:991px) {
    .como-llegar,
.ver-faqs {
    display: flex;
    flex-direction: column;
    justify-content:start;
    flex-grow: 1;
    background-color: var(--light_yellow);
    padding: 40px 35px;
    height: 110px ;
    overflow: hidden;
    transition: height 500ms;
}
}



.customer-area-call-img {
    display: flex;
    width: 100%;
    padding-bottom: 100%;
    background: url(../images/732983592522.webp) center center no-repeat;
    background-size: cover;
}

.booking-data-box,
.booking-price-breakdown,
.cost-of-canceling,
.arrival-by-car,
.session-account {
    border: 1px solid rgba(0, 0, 0, .4);
}

.bda-image {
    width: 100%;
    padding-bottom: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.session-account-box {
    padding: 20px;
    width: 100%
}

.session-account-box a {
    color: var(--black);
    border-bottom: 1px solid var(--black);
    display: inline-block;
    line-height: 20px;
    font-size: 20px;
    margin-left: 8px;
}

.session-account-divider {
    width: 1px;
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.credit-card-label {
    position: absolute;
    bottom: -10px;
    text-align: center;
}

.langs-list,
.user-menu {
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);
    padding: 20px 10px;
    display: none;
}

.langs-list-mobile,
.user-menu-mobile {
    position: absolute;
    background-color: #ffffff;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
    padding: 20px;
    display: none;
}

.langs-list {
    bottom: -284px;
    left: 50%;
    transform: translateX(-50%);
}

.langs-list-mobile {
    bottom: -268px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
}

.user-menu {
    bottom: -128px;
    right: 0;
    width: max-content;
}

.user-menu-mobile {
    bottom: -188px;
    right: 0;
    width: max-content;
    border-radius: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.langs-list p,
.user-menu p {
    margin-bottom: 0;
}

.desktop-menu .langs-list a,
.desktop-menu .user-menu a {
    display: block;
    padding: 5px 15px;
    text-align: center;
    transition: all 200ms ease-in;
}

.desktop-menu .langs-list a:hover,
.desktop-menu .user-menu a:hover {
    background-color: var(--light_yellow);
}

.langs-list-mobile a,
.user-menu-mobile a {
    color: rgb(37, 37, 41);
}

.private-navbar {
    background-color: var(--light_yellow);
    margin-top: 82px;
    font-size: 14px;
}

.private-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.private-nav-toggle {
    position: relative;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
    border-radius: 6px;
    cursor: pointer;
}

.private-nav-toggle:hover {
    box-shadow: 0 0 2px rgba(0, 0, 0, .25);
}

.private-navigation-wrapper {
    opacity: 0;
    height: 0;
    position: absolute;
    top: 34px;
    right: 0;
    transition: all 500ms ease-in-out;
    overflow: hidden;
    z-index: 999;
}

.private-navbar .container > ul .private-nav-toggle:hover .private-navigation-wrapper {
    opacity: 1;
    height: fit-content;
}

.private-navigation {
    background-color: #ffffff;
    width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
    border-radius: 6px;
    margin: 6px 4px;
}

.private-navigation a {
    color: rgb(37, 37, 41);
    padding: 6px 3px;
    display: block;
}

.private-navigation a:hover {
    background-color: var(--light_yellow);
}

.private-navigation-header {
    position: relative;
    padding: 15px 20px;
    text-align: right;
    border-bottom: 1px solid #E4E4E4;
}

.private-navigation-header .bookmark {
    position: absolute;
    left: 23px;
    top: -8px;
    color: #D30000;
    font-size: 30px;
}

.private-navigation-body {
    padding: 0 30px;
}

.private-navigation-body ul {
    list-style: none;
    padding: 24px 0;
    margin: 0;
    border-bottom: 1px solid #E4E4E4;
}

.private-navigation-body ul:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.private-navigation-body li {
    line-height: 18px;
}

.private-navigation-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: .5;
}

.private-navigation-footer span {
    font-size: 24px !important;
    line-height: 24px;
    display: inline-block;
    margin-top: -4px;
    margin-right: 2px;
}

.form-group {
    background-color: var(--light_yellow);
    padding: 15px 20px;
    margin-bottom: 16px;
}

.form-group label {
    opacity: .6;
    margin-bottom: 0;
}

.form-group input:not(.form-check-input),
.form-group textarea {
    background-color: var(--light_yellow);
    border: none;
    padding: 0;
}

.form-group input:focus:not(.form-check-input),
.form-group textarea:focus {
    box-shadow: 0 0 0 .25rem #ffffff;
    background-color: #ffffff;
}

.private-area-access .form-check {
    padding-left: 0;
}

.private-area-access .form-check-input[type="checkbox"] {
    width: 22px;
    height: 22px;
    opacity: 1;
    border-color: #333333;
    display: block;
    margin-left: 0;
    float: none;
}

.private-area-access .form-check label {
    display: block;
    width: 100%;
    margin-top: 8px;
    font-weight: 600;
    opacity: .75;
}

.private-area-access a {
    color: rgb(37, 37, 41);
    text-decoration: underline;
}

ul#accessTabs,
ul#inviteFriendsTabs,
ul#commentsTabs,
ul#supportTabs{
    border: none;
}

.access-tab-item {
    width: 50%;
}

.access-tab-item button {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    text-align: left;
    background-color: #ffffff;
    color: #828282;
    box-sizing: border-box;
    height: 74px;
    width: 100%;
    line-height: 20px;
    padding-left: 24px;
    border: 1px solid #D5D5D5;
}

.access-tab-item button.active {
    color: #000000;
}

.access-tab-item button#signinTab,
.access-tab-item button#leftTab {
    border-right: none;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.access-tab-item button#signupTab,
.access-tab-item button#rightTab {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.welcome-pack {
    position: relative;
    background-color: #FBF0F0;
    color: var(--red);
    text-align: center;
    font-weight: 500;
    padding: 34px 0 20px;
}

.welcome-pack .bookmark {
    position: absolute;
    left: 60px;
    top: -12px;
    font-size: 30px;
}

.welcome-pack .dismiss {
    background-color: var(--red);
    color: #ffffff;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 25px;
    height: 25px;
    font-size: 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.welcome-pack a {
    font-weight: 600;
    text-decoration: underline;
    color: var(--red);
}

.blocks-nav > .row {
    margin-bottom: 1.5rem;
}

.block-nav {
    position: relative;
    padding: 25px;
    background-color: var(--light_yellow);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.block-nav .btn-link,
.friend-item .btn-link {
    color: #ffffff;
    background-color: #000000;
    padding: 4px 16px;
    text-decoration: none;
    border: 2px solid #000000;
    transition: all 500ms;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.block-nav .btn-link:hover,
.friend-item .btn-link:hover {
    background-color: transparent;
    color: #000000;
}

.block-nav .counter {
    position: absolute;
    top: -10px;
    right: 14px;
    color: #ffffff;
    background-color: var(--red);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 22px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.block-nav .points-counter {
    position: absolute;
    top: 18px;
    right: 22px;
}

.block-nav .progress-counter {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.block-nav .progress-counter > div {
    width: 120px
}

.dismiss {
    cursor: pointer;
}

.promotions > div > div > div {
    border: 1px solid #dedede;
    margin-bottom: 20px;
}

.invite-friends-desktop {
    border-top: 1px solid #dedede;
}

.friend-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #C4C4C4;
    padding: 20px 20px 40px 20px;
    margin-bottom: 40px;
}

.friend-item .btn-link[disabled] {
    opacity: .25;
    cursor: not-allowed;
}

.alert-danger {
    display: flex;
    justify-content: space-between;
    background-color: #FBF0F0;
    margin-bottom: 18px;
}

.alert-info {
    display: flex;
    justify-content: space-between;
    background-color: #F0F5FB;
    margin-bottom: 18px;
}

.alert-danger .fa-triangle-exclamation {
    font-size: 22px;
}

.alert-danger .dismiss,
.alert-info .dismiss {
    font-size: 32px;
    font-weight: 500;
    display: flex;
    align-items: start;
    line-height: 16px;
    margin-bottom: 20px
}

.alert-popup-wrapper {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000066;
    z-index: 99999;
    overflow: auto;
}

.alert-popup {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    width: 90%;
    padding: 30px 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.alert-header-icon {
    height: 68px;
    width: 68px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 38px;
}

.ahi-danger {
    background-color: var(--red);
}

.ahi-info {
    background-color: var(--blue);
}

.alert-danger-popup .alert-content,
.alert-info-popup .alert-content {
    margin: 30px 0 100px;
    padding: 30px 30px 70px;
    text-align: center;
}

.alert-danger-popup .alert-content {
    background-color: #FBF0F0;
}

.alert-info-popup .alert-content {
    background-color: #F0F5FB;
}

.favorite-item {
    border: 1px solid rgba(0, 0, 0, .2);
}

.favorite-item .booking-search-result-img {
    padding-bottom: 70%;
}

.favorite-item .booking-search-result-description {
    border-bottom: none;
}

.favorite-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 50px;
    line-height: 0;
}

.favorite-icon i {
    font-size: 24px;
    color: var(--red);
}

.survey-item {
    border: 1px solid rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: all 300ms;
}

.survey-item:hover {
    background-color: var(--light_yellow);
}

.survey-item > div:nth-child(2) > div {
    width: 50%;
}

.survey-item > div:nth-child(2) > div:first-child {
    border-right: 1px solid rgba(0, 0, 0, .2);
}

form .survey-form-group .checkmark {
    width: 26px;
    height: 26px;
    border: 2px solid #999;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

form .survey-form-group .checkbox .checkmark::after {
    top: initial;
    left: initial;
}

.checkbox input:checked ~ .checkmark {
    background-color: var(--yellow);
    border: 1px solid var(--yellow);
}

.survey-form-group {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.survey-form-group p {
    min-height: 50px;
}

.survey-form-group textarea {
    height: 66px;
    width: 100%;
    background-color: var(--light_yellow);
    border: 3px solid var(--light_yellow);
    padding: 6px;
}

.customer-comments .stars i {
    color: #6F6F6F;
    font-size: 20px;
}

.customer-comments .building-selector-wrapper,
.support .building-selector-wrapper,
.support .subject-selector-wrapper {
    background-color: var(--light_yellow);
    padding: 25px;
    height: 100px;
}

.customer-comments .building-selector-wrapper #buildingSelector,
.support .building-selector-wrapper #buildingSelector,
.support .subject-selector-wrapper #subjectSelector,
.customer-comments .textarea-wrapper textarea,
.support .textarea-wrapper textarea {
    width: 100%;
    background-color: var(--light_yellow);
    border: none;
}

.customer-comments .textarea-wrapper,
.support .textarea-wrapper {
    background-color: var(--light_yellow);
    padding: 25px;
}

.comment-actions i.green,
.comment-actions i.red {
    cursor: pointer;
}

.faqs-item {
    border: none;
    background-color: var(--light_yellow);
    margin-bottom: 26px;
}
.faqs-item .accordion-header {
    background-color: var(--light_yellow);
}

.faqs-item .accordion-button:not(.collapsed) {
    background-color: var(--light_yellow);
}

.faqs-item .accordion-button {
    background-color: var(--light_yellow);
}

.faqs .accordion-button:focus {
    box-shadow: none;
}

.faqs .accordion-header {
    position: relative;
    height: 90px;
    display: flex;
    align-items: end;
}

.faqs .accordion-header > span {
    position: absolute;
    z-index: 4;
    left: 20px;
    top: 34px;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.5;
}

#supportTabs .access-tab-item {
    width: 33%;
}

#supportTabs .access-tab-item button {
    padding: 0;
    justify-content: center;
}

.upload-photo {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--light_yellow);
}

.upload-photo span {
    background-color: #7D7D7D;
    color: #ffffff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 10px;
}

.data {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background-color: var(--light_yellow);
    margin-bottom: 26px;
}

#typology_carousel {
    margin-top: 174px;
    background-color: var(--light_yellow);
}

.tipologia {
    display: flex;
    align-items: end;
    background-position: 0px -75px !important;
    background-size: cover;
    height: 300px;
    transition: opacity .25s;
}

.tipologia:hover {
    opacity: .75;
    cursor: pointer;
}

.tipologia-txt,
.guests-number {
    background-color: var(--light_yellow);
}

.tipologia-txt {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 25px;
}

.guests-number {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 90px;
    border-radius: 100px;
    position: absolute;
    right: 25px;
    top: -50%;
    background-color: var(--light_yellow);
}

.typology-detail-content {
    max-width: 1200px;
    font-size: 1.15rem;
    position: relative;
    margin-top: -106px ;
    text-align: center;
}

.guests-number-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    margin: 25px auto -25px;
    background-color: var(--white);
}

.promo-code {
    background-color: #FFF1E3;
    width:fit-content;
    padding: 8px 18px;
    margin: auto;
    border-radius: 5px;
}

.booking-now {
    background-color: var(--yellow);
    color: var(--white);
    width:fit-content;
    padding: 15px 30px;
    margin: auto;
    border-radius: 5px;
    font-weight: 600;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    width: 8rem;
    height: 8rem;
}

#generalFaqs .accordion-item .accordion-body {
    background-color: var(--white);
    padding: 30px 0;
}

#generalFaqs .accordion-item .accordion-body a {
    color: var(--yellow);
    font-weight: 600;
}

#desktop-booking-form .form-box .mc-close{
    flex-grow: 1;
}



/*mirai*/
.mi-be .mi-be-book-btn {
    padding: 10px 10px !important;
}

.mi-be-promo-field{display: none !important}




