

.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    overflow: hidden;
    position: relative;
    width: 100%
}

.carousel-inner:after {
    clear: both;
    content: "";
    display: block
}

.carousel-item {
    backface-visibility: hidden;
    display: none;
    float: left;
    margin-right: -100%;
    position: relative;
    transition: transform .6s ease-in-out;
    width: 100%
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
    display: block
}

.active.carousel-item-end,
.carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%)
}

.active.carousel-item-start,
.carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transform: none;
    transition-property: opacity
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end,
.carousel-fade .carousel-item.active {
    opacity: 1;
    z-index: 1
}

.carousel-fade .active.carousel-item-end,
.carousel-fade .active.carousel-item-start {
    opacity: 0;
    transition: opacity 0s .6s;
    z-index: 0
}

@media (prefers-reduced-motion:reduce) {

    .carousel-fade .active.carousel-item-end,
    .carousel-fade .active.carousel-item-start {
        transition: none
    }
}

.carousel-control-next,
.carousel-control-prev {
    align-items: center;
    background: none;
    border: 0;
    bottom: 0;
    color: #fff;
    display: flex;
    justify-content: center;
    opacity: .5;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 0;
    transition: opacity .15s ease;
    width: 15%;
    z-index: 1
}

@media (prefers-reduced-motion:reduce) {

    .carousel-control-next,
    .carousel-control-prev {
        transition: none
    }
}

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
    color: #fff;
    opacity: .9;
    outline: 0;
    text-decoration: none
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    height: 2rem;
    width: 2rem
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E")
}

.carousel-indicators {
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    margin-bottom: 1rem;
    margin-left: 15%;
    margin-right: 15%;
    padding: 0;
    position: absolute;
    right: 0;
    z-index: 2
}

.carousel-indicators [data-bs-target] {
    background-clip: padding-box;
    background-color: #fff;
    border: 0;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    box-sizing: content-box;
    cursor: pointer;
    flex: 0 1 auto;
    height: 3px;
    margin-left: 3px;
    margin-right: 3px;
    opacity: .5;
    padding: 0;
    text-indent: -999px;
    transition: opacity .6s ease;
    width: 30px
}

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    bottom: 1.25rem;
    color: #fff;
    left: 15%;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    position: absolute;
    right: 15%;
    text-align: center
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

[data-bs-theme=dark] .carousel .carousel-control-next-icon,
[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
[data-bs-theme=dark].carousel .carousel-control-next-icon,
[data-bs-theme=dark].carousel .carousel-control-prev-icon {
    filter: invert(1) grayscale(100)
}

[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],
[data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
    background-color: #000
}

[data-bs-theme=dark] .carousel .carousel-caption,
[data-bs-theme=dark].carousel .carousel-caption {
    color: #000
}

.clearfix:after {
    clear: both;
    content: "";
    display: block
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    white-space: nowrap !important;
    width: 1px !important
}

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),
.visually-hidden:not(caption) {
    position: absolute !important
}

.stretched-link:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}


.wpestate_property_schedule_dates_wrapper .slick-list {
    max-height: 115px
}

.wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow,
.wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow {
    background-color: #f7f8f8;
    border: none;
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp_estate_border_radius_corner));
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    font-size: 0;
    height: 40px;
    position: absolute;
    top: 35px;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    width: 40px;
    z-index: 9
}

.wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow:hover,
.wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow:hover {
    background-color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    color: #fff
}

.wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow:before,
.wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow:before {
    font-family: Font Awesome\ 5 Free;
    font-size: 14px;
    font-weight: 900;
    line-height: 40px;
    opacity: 1
}

.wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow {
    left: 0
}

.wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow:before {
    content: "\f060"
}

.wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow {
    right: 0
}

.wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow:before {
    content: "\f061"
}

.wpestate_property_schedule_singledate_wrapper {
    border: 1px solid #f0f0f0;
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp_estate_border_radius_corner));
    color: var(--wp-estate-font-color-option, #222);
    cursor: pointer;
    display: none;
    font-size: 15px;
    margin-bottom: 25px;
    margin-right: 10px;
    min-height: 90px;
    min-width: 80px;
    padding: 10px 0;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease
}

.wpestate_property_schedule_singledate_wrapper.shedule_day_option_selected,
.wpestate_property_schedule_singledate_wrapper:hover {
    box-shadow: var(--wp-estate-cssbox-shadow-elementor-option, var(--wp_estate_cssbox_shadow));
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color))
}

.wpestate_property_schedule_singledate_wrapper.shedule_day_option_selected .wpestate_day_unit_day_number,
.wpestate_property_schedule_singledate_wrapper:hover .wpestate_day_unit_day_number {
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color))
}

.wpestate_property_schedule_singledate_wrapper .wpestate_property_schedule_singledate_wrapper_display {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
    height: 68px;
    justify-content: space-around;
    line-height: 15px
}

.wpestate_property_schedule_singledate_wrapper .wpestate_property_schedule_singledate_wrapper_display .wpestate_day_unit_day_number {
    font-size: 16px;
    font-weight: 500
}

.wpestate_day_unit_day_number_selected {
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color))
}

#wpestate_schedule_tour_time {
    display: inline-block;
    margin-bottom: 10px;
    width: 229px
}

.wpestate_display_schedule_tour_options_wrapper {
    display: flex;
    float: right;
    gap: 10px;
    justify-content: flex-end;
    width: 50%
}

.wpestate_display_schedule_tour_options_wrapper .wpestate_display_schedule_tour_option {
    align-items: center;
    border: 1px solid #f0f0f0;
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp_estate_border_radius_corner));
    cursor: pointer;
    display: flex;
    flex-direction: row;
    font-size: 13px;
    gap: 5px;
    justify-content: center;
    padding: 7px 20px
}

.wpestate_display_schedule_tour_options_wrapper .wpestate_display_schedule_tour_option.shedule_option_selected {
    border: 1px solid var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color))
}

.wpestate_display_schedule_tour_options_wrapper .wpestate_display_schedule_tour_option svg {
    height: 16px;
    width: 16px
}

.contact_form_flex_wrapper .contact_form_flex_input_wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%
}

.wpestate_shedule_tour_wrapper_type2 {
    justify-content: space-between
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_image {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp_estate_border_radius_corner))
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content {
    padding: 0 0 0 30px
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content .contact_form_flex_input_wrapper {
    display: flex;
    flex-direction: column
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content .wpestate_display_schedule_tour_options_wrapper {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    width: 100%
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content #wpestate_schedule_tour_time,
.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content .wpestate_display_schedule_tour_options_wrapper .wpestate_display_schedule_tour_option {
    width: 100%
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content .contact_form_flex_wrapper {
    flex-direction: column;
    width: 100%
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content .contact_form_flex_wrapper .form-control {
    margin-bottom: 0
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_shedule_tour_wrapper_type2_content .contact_form_flex_wrapper .wpresidence_button.agent_submit_class {
    margin-bottom: 0;
    width: 100%
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_property_schedule_dates_wrapper {
    padding: 0
}

.wpestate_shedule_tour_wrapper_type2 .slick-slide.wpestate_property_schedule_singledate_wrapper {
    min-width: 72px
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow {
    right: -20px
}

.wpestate_shedule_tour_wrapper_type2 .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow {
    left: -20px
}

#primary_sidebar_wrapper .wpestate_property_schedule_dates_wrapper,
#sidebar_schedule .wpestate_property_schedule_dates_wrapper,
.property_page_agent_form_v2_section .wpestate_property_schedule_dates_wrapper {
    height: 105px;
    margin-bottom: 0;
    padding: 0
}

#primary_sidebar_wrapper .wpestate_property_schedule_dates_wrapper ul.xoxo,
#sidebar_schedule .wpestate_property_schedule_dates_wrapper ul.xoxo,
.property_page_agent_form_v2_section .wpestate_property_schedule_dates_wrapper ul.xoxo {
    clear: both
}

#primary_sidebar_wrapper .slick-slide.wpestate_property_schedule_singledate_wrapper,
#sidebar_schedule .slick-slide.wpestate_property_schedule_singledate_wrapper,
.property_page_agent_form_v2_section .slick-slide.wpestate_property_schedule_singledate_wrapper {
    height: 75px;
    min-height: 70px;
    min-width: 54px
}

#primary_sidebar_wrapper .wpestate_property_schedule_singledate_wrapper_display,
#sidebar_schedule .wpestate_property_schedule_singledate_wrapper_display,
.property_page_agent_form_v2_section .wpestate_property_schedule_singledate_wrapper_display {
    height: 54px
}

#primary_sidebar_wrapper .wpestate_display_schedule_tour_options_wrapper,
#sidebar_schedule .wpestate_display_schedule_tour_options_wrapper,
.property_page_agent_form_v2_section .wpestate_display_schedule_tour_options_wrapper {
    float: left;
    justify-content: flex-start;
    width: 100%
}

#primary_sidebar_wrapper .wpestate_display_schedule_tour_option,
#sidebar_schedule .wpestate_display_schedule_tour_option,
.property_page_agent_form_v2_section .wpestate_display_schedule_tour_option {
    font-size: 13px;
    line-height: 1em;
    padding: 11px;
    width: 50%
}

#primary_sidebar_wrapper #wpestate_schedule_tour_time,
#sidebar_schedule #wpestate_schedule_tour_time,
.property_page_agent_form_v2_section #wpestate_schedule_tour_time {
    font-size: 13px;
    width: 100%
}

#primary_sidebar_wrapper .wpestate_tour_info_headline,
#sidebar_schedule .wpestate_tour_info_headline,
.property_page_agent_form_v2_section .wpestate_tour_info_headline {
    display: inline-block;
    margin-top: 25px;
    width: 100%
}

#primary_sidebar_wrapper .wpresidence_button.agent_submit_class,
#sidebar_schedule .wpresidence_button.agent_submit_class,
.property_page_agent_form_v2_section .wpresidence_button.agent_submit_class {
    width: 100%
}

#primary_sidebar_wrapper .contact_form_flex_wrapper,
#sidebar_schedule .contact_form_flex_wrapper,
.property_page_agent_form_v2_section .contact_form_flex_wrapper {
    display: flex;
    flex-direction: column;
    width: 100%
}

#primary_sidebar_wrapper .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow,
#primary_sidebar_wrapper .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow,
#sidebar_schedule .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow,
#sidebar_schedule .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow,
.property_page_agent_form_v2_section .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow,
.property_page_agent_form_v2_section .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow {
    height: 30px;
    width: 30px
}

#primary_sidebar_wrapper .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow:before,
#primary_sidebar_wrapper .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow:before,
#sidebar_schedule .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow:before,
#sidebar_schedule .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow:before,
.property_page_agent_form_v2_section .wpestate_property_schedule_dates_wrapper button.slick-next.slick-arrow:before,
.property_page_agent_form_v2_section .wpestate_property_schedule_dates_wrapper button.slick-prev.slick-arrow:before {
    line-height: 30px
}


.estate_places_slider button.slick-prev.slick-arrow {
    left: -25px
}

.estate_places_slider button.slick-prev.slick-arrow:before {
    content: "\e800";
    margin-right: 10px
}

.estate_places_slider button.slick-next.slick-arrow {
    right: -25px
}

.estate_places_slider button.slick-next.slick-arrow:before {
    content: "\e801";
    margin-right: 5px
}

.estate_places_slider .places_wrapper_type_2 {
    border-radius: 0;
    display: none;
    min-width: 190px;
    position: relative
}

.estate_places_slider .places_wrapper_type_2 .places_cover {
    border-radius: 0
}

.estate_places_slider button.slick-next.slick-arrow,
.estate_places_slider button.slick-prev.slick-arrow {
    color: #99a2ae
}

.slick-initialized .slick-slide .places_wrapper_type_2 {
    display: block
}

.estate_places_slider button.slick-next.slick-arrow,
.estate_places_slider button.slick-prev.slick-arrow {
    background-color: #fff !important
}


.arrow_class_sideways button.slick-next.slick-arrow,
.arrow_class_sideways button.slick-prev.slick-arrow,
.slider_container button.slick-next.slick-arrow,
.slider_container button.slick-prev.slick-arrow {
    background-color: rgba(119, 122, 242, .071);
    border: none;
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp_estate_border_radius_corner));
    color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    cursor: pointer;
    font-size: 0;
    height: 40px;
    padding-left: 0;
    position: absolute;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    width: 40px
}

.arrow_class_sideways button.slick-next.slick-arrow:hover,
.arrow_class_sideways button.slick-prev.slick-arrow:hover,
.slider_container button.slick-next.slick-arrow:hover,
.slider_container button.slick-prev.slick-arrow:hover {
    background-color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    color: #fff
}

.arrow_class_sideways button.slick-next.slick-arrow:before,
.arrow_class_sideways button.slick-prev.slick-arrow:before,
.slider_container button.slick-next.slick-arrow:before,
.slider_container button.slick-prev.slick-arrow:before {
    font-family: Font Awesome\ 5 Free;
    font-size: 14px;
    font-weight: 900;
    line-height: 40px;
    opacity: 1
}

.arrow_class_sideways button.slick-prev.slick-arrow:before,
.slider_container button.slick-prev.slick-arrow:before {
    content: "\f060"
}

.arrow_class_sideways button.slick-next.slick-arrow:before,
.slider_container button.slick-next.slick-arrow:before {
    content: "\f061"
}

.slider_container button.slick-prev.slick-arrow {
    right: 60px
}

.slider_container button.slick-next.slick-arrow {
    right: 15px
}

.slider_container button.slick-next.slick-arrow,
.slider_container button.slick-prev.slick-arrow {
    top: -42px
}

.arrow_class_sideways button.slick-next.slick-arrow,
.arrow_class_sideways button.slick-prev.slick-arrow {
    margin-top: -35px;
    top: 50%
}

.arrow_class_sideways button.slick-prev.slick-arrow {
    left: -80px
}

.arrow_class_sideways button.slick-next.slick-arrow {
    right: -80px
}

.slick-next,
.slick-prev {
    background: transparent;
    border: none;
    color: transparent;
    cursor: pointer;
    display: block;
    height: 20px;
    margin-top: -10px;
    outline: none;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 20px
}

.elementor-widget-WpResidence_Property_Slider_v2 i,
.elementor-widget-WpResidence_Property_Slider_v3 i,
.elementor-widget-Wpresidence_Testimonial_Slider i {
    font-size: 14px
}

.wpresidence-carousel-control {
    background: #222;
    border-radius: var(--wp-estate-border-radius-corner-option, var(--wp_estate_border_radius_corner));
    height: 40px;
    margin: -20px 0 0;
    opacity: .66;
    top: 50%;
    transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    width: 40px;
    z-index: 10
}

.wpresidence-carousel-control:hover {
    opacity: 1
}

.wpresidence-carousel-control.carousel-control-prev,
.wpresidence-carousel-control.left {
    left: 10px
}

.wpresidence-carousel-control.carousel-control-next,
.wpresidence-carousel-control.right {
    right: 10px
}

.wpresidence-carousel-control i {
    font-size: 20px;
    line-height: 40px;
    margin: 0;
    text-shadow: none
}

.post-carusel .carousel-indicators {
    display: flex;
    gap: 3px
}

.post-carusel .carousel-indicators button {
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    height: 10px;
    margin: 1px;
    opacity: 1;
    text-indent: -999px;
    width: 10px
}

.post-carusel .carousel-indicators button.active {
    background-color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    border-color: var(--wp-estate-main-color-option, var(--wp-estate-main-color));
    height: 11px;
    width: 11px
}
