:root {
    --focus_bluegreen: #49819b;
    --focus_blue: #00aeff;
    --focus_darkblue: #0288c7;
    --focus_white: #FFFFFF;
}

.focus_blue {
    color: var(--focus_blue);
}

.focus_hover_white:hover {
    color: var(--focus_white) !important;
    transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
}

.flex {
    display: flex;
}

.f-wrap {
    flex-wrap: wrap;
}

.jc-c {
    justify-content: center;
}

.jc-sb {
    justify-content: space-between;
}

.jc-fs {
    justify-content: flex-start;
}

.jc-fe {
    justify-content: flex-end;
}

.jc-s {
    justify-content: flex-start;
}

.ai-fs {
    align-items: flex-start;
}

.ai-b {
    align-items: baseline;
}

.ai-c {
    align-items: center;
}

.ai-fe {
    align-items: flex-end;
}

.w100 {
    width: 100%;
}

.w33 {
    width: 33%;
}

.p-10px {
    padding: 10px;
}

.p-15px {
    padding: 15px;
}

.p-20px {
    padding: 20px;
}

.pt-10px {
    padding-top: 10px;
}

.pt-20px {
    padding-top: 20px;
}

.pb-10px {
    padding-bottom: 10px;
}

.pb-20px {
    padding-bottom: 20px;
}

.no-pb {
    padding-bottom: 0 !important
}

.m-10px {
    margin: 10px
}

.m-20px {
    margin: 20px
}

.mt-5px {
    margin-top: 5px
}

.mt-10px {
    margin-top: 10px
}

.mt-20px {
    margin-top: 20px
}

.mb-5px {
    margin-bottom: 5px
}

.mb-10px {
    margin-bottom: 10px
}

.mb-20px {
    margin-bottom: 20px
}

.no-mr {
    margin-right: 0 !important;
}

.mr-10px {
    margin-right: 10px
}

.mr-15px {
    margin-right: 15px
}

.bg-white {
    background: #FFF;
}

.bg-lightgray {
    background: #f1f1f1;
}

.lightgray {
    color: #CCC;
}

.red {
    color: red
}

.black {
    color: #000 !important
}

.fw-bold {
    font-weight: bold !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-20px {
    font-size: 20px;
}

.uppercase {
    text-transform: uppercase !important;
}

.underline {
    text-decoration: underline;
}

.border-top-solid {
    border-top: 1px solid #EEE;
}

.border-bottom-solid {
    border-bottom: 1px solid #EEE;
}

.no-br {
    border-right: none !important
}

.no-bl {
    border-left: none !important
}

@media only screen and (max-width: 600px) {
    .f-wrap-m {
        flex-wrap: wrap !important
    }

    .w50-m {
        width: 50% !important
    }

    .w100-m {
        width: 100% !important
    }

    .focus_search_field {
        max-width: 100% !important;
        margin-right: 0 !important
    }

    .number_input {
        width: 50% !important
    }

    .search_results_properties {
        justify-content: center !important;
    }
}

@media only screen and (min-width: 600px) {
    .focus_search_field.wider {
        max-width: 380px !important;
        min-width: 380px !important;
    }

    .focus_search_field.narrow {
        max-width: 70px !important;
        min-width: 70px !important;
    }

    .focus_search_field.narrow2 {
        max-width: 100px !important;
        min-width: 100px !important;
    }

    .focus_search_field.number_input {
        max-width: 60px !important;
        min-width: 60px !important;
    }
}

/**
* SEARCH
*/
#focus_search_form .form-control {
    border-radius: 0 !important;
    height: 36px !important;
    line-height: 36px !important;
    font-size: 13px !important;
    color: var(--focus_blue) !important;
    font-weight: 500 !important;
}

#focus_search_form .form-control:not(:focus) {
    border: none !important;
    outline: 1px solid #CCC;
}

.focus_property_box_holder {
    width: calc(33% - 20px);
    cursor: pointer;
}

.focus_listing_thumb {
    position: relative;
}

.focus_list_img {
    object-fit: cover;
    min-height: 270px;
    max-height: 270px;
    width: 100%;
    height: 250px !important;
}

.focus_property_status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--focus_blue) !important;
    opacity: 0.9;
    color: #FFF;
    text-transform: uppercase;
    font-size: 11px;
    padding: 0 5px;
    z-index: 1;
    border-radius: 3px;
}

.focus_property_price {
    color: #FFF;
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    z-index: 1;
    background: #0288c778;
    padding: 2px 8px;
    border-radius: 3px;
}

.hover-effect:before {
    opacity: 1;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
}

.focus_listing_button {
    color: #fff;
    background-color: var(--focus_bluegreen);
    border-color: var(--focus_bluegreen);
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    padding: 5px 10px;
    border-radius: 3px;
    bottom: 80px;
    right: 20px;
    height: 32px;
}

.focus_listing_button:hover {
    background-color: var(--focus_blue);
    border-color: var(--focus_blue);
    color: #FFF !important;
    transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
}

.focus_list_type {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
}

.focus_listing_data i {
    font-size: 18px;
}

.focus_property_box_holder .area_postfix {
    font-size: 12px;
    font-weight: 300;
    margin-bottom: 0;
    margin-left: 5px;
}

.focus_search_title {
    font-family: "Work Sans", Sans-serif;
    font-size: 35px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.focus_search_field {
    margin-right: 10px;
    margin-bottom: 10px;
    min-width: calc(20% - 10px);
    max-width: calc(20% - 10px);
}

.focus_search_field select {
    min-width: 120px;
}

.focus_search_field input::placeholder {
    /*text-transform: uppercase !important;*/
    font-size: 12px;
    /*font-weight: 700;*/
}

.form-control-label {
    /*display: none !important;*/
    font-size: 12px;
    padding-bottom: 0px !important;
    font-weight: normal;
    padding-left: 2px;
    white-space: nowrap;
    font-weight: 700 !important;
    line-height: 1;
}

/**
*/
body.show-loader #search_results {
    overflow: hidden !important;
    position: relative;
}

body.show-loader #search_results:before {
    content: '';
    position: fixed;
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    border-top: 3px solid var(--focus_blue);
    border-right: 3px solid var(--focus_blue);
    border-bottom: 4px solid var(--focus_blue);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    z-index: 100000;
}

body.show-loader #search_results:after {
    content: 'Néhány pillanat...';
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background-color: #ffffffc2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding-top: 100px;
    color: var(--focus_blue);
    font-weight: 500;
    font-size: 18px;
    background: linear-gradient(90deg, var(--focus_blue), #000c75, var(--focus_blue));
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animatetext 4s linear infinite;
    -webkit-animation: animatetext 4s linear infinite;
    /*
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

body.show-loader .search_results_properties {
    display: none !important;
}

@keyframes animatetext {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}

@-webkit-keyframes animatetext {
    0% {
        background-position: -500%;
    }

    100% {
        background-position: 500%;
    }
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/**
* select2
*/
.select2-container {
    width: 100% !important;
    height: 36px !important;
}

.select2-container--default .select2-selection--single,
.select2-container .select2-selection--multiple {
    border-color: #EEE !important;
    height: 36px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    min-height: 36px !important;
    line-height: 36px !important;
    /*color: #CCC !important;*/
    color: var(--focus_blue) !important;
    font-size: 12px !Important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important
}

.select2-container .select2-search--inline .select2-search__field {
    /*
    line-height: 24px !important;
    color: var(--focus_blue);
    height: auto !important;
    margin-top: 0 !important;
    font-size: 13px !important;
    padding-left: 5px !important;
    */
    display: none !important
}

.select2-selection--multiple .select2-selection__rendered {
    display: flex !important;
}

.select2-search.select2-search--inline {
    display: flex;
    margin-top: -10px !important;
    overflow: hidden !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--focus_blue) !important;
    color: #FFF !important;
    border-color: #EEE !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #FFF !important;
    border-color: #FFF !important
}

.select2-container--default .select2-selection--multiple {
    border-radius: 0 !important;
}

/*
.select2-container--open .select2-dropdown {
    top: 32px !important
}
*/
.select2-container--open .select2-dropdown .select2-results__options::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    background-color: #eee;
}

.select2-container--open .select2-dropdown .select2-results__options::-webkit-scrollbar-thumb {
    background: var(--focus_blue);
}

.select2-container--open .select2-dropdown .select2-results__options {
    overflow: auto;
    scrollbar-color: var(--focus_blue);
    scrollbar-width: thin;
    scrollbar-color: var(--focus_blue) #eee;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
    background-color: var(--focus_darkblue) !important;
}

/**
*
*/
.focus_reset_search:hover {
    cursor: pointer;
    color: var(--focus_blue) !important;
    transition: all ease-in-out 0.12;
    -webkit-transition: all ease-in-out 0.12;
}

.focus-search-icon {
    max-width: 18px !important;
    margin-right: 8px;
}

.focus-load-more-button {
    color: #fff;
    background-color: var(--focus_bluegreen);
    border-color: var(--focus_bluegreen);
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    padding: 5px 20px;
    border-radius: 3px;
    cursor: pointer
}

.focus-load-more-button:hover {
    background-color: var(--focus_blue) !important;
    transition: all ease-in-out 0.12s;
    -webkit-transition: all ease-in-out 0.12s;
}

.focus-agent-data {
    word-break: break-all !important;
}

@media (max-width: 767.98px) {

    body .slick-prev,
    body .slick-next {
        display: block !important
    }
}

/**
*
*/
#search_results .slick-track img {
    width: 100%;
    max-height: 230px !important;
    min-height: 230px !important;
    /*object-fit: cover;*/
}

.focus-slick-arrow {
    height: 30px !important;
    width: 30px !important;
    background-color: transparent !important;
    opacity: 0;
}

.focus_property_box_holder:hover .focus-slick-arrow {
    opacity: 1 !important;
    transition: all ease-in-out 0.1s;
    -webkit-transition: all ease-in-out 0.1s;
    z-index: 2;
}

.focus-slick-arrow.slick-next {
    right: 5px !important
}

.focus-slick-arrow.slick-prev {
    left: 5px !important
}

.focus-slick-arrow.slick-next:before,
.focus-slick-arrow.slick-prev:before {
    font-weight: 900 !important;
    font-size: 20px !important
}

.focus_listing_thumb {
    position: relative;
}

.focus_listing_thumb:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.focus_listing_thumb:hover:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    -webkit-box-shadow: inset 0px 0px 94px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: inset 0px 0px 94px 0px rgba(0, 0, 0, 0.75);
    box-shadow: inset 0px 0px 94px 0px rgba(0, 0, 0, 0.75);
    z-index: 1;
    transition: all ease-in-out 0.19s;
    -webkit-transition: all ease-in-out 0.19s;
}

/**
*
*/
#load_more_results_loader {
    position: relative;
}

#load_more_results_loader:after {
    content: 'Néhány pillanat...';
    width: 100%;
    min-width: 250px;
    min-height: 40px;
    height: 100%;
    position: absolute;
    left: -125px;
    top: -20px;
    background-color: #ffffffc2;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding-top: 20px;
    color: var(--focus_blue);
    font-weight: 500;
    font-size: 18px;
    background: linear-gradient(90deg, var(--focus_blue), #000c75, var(--focus_blue));
    background-repeat: no-repeat;
    background-size: 80%;
    animation: animatetext 0.8s linear infinite;
    -webkit-animation: animatetext 0.8s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

/**
* FORM DESIGN - TESZT
*/
/*
#focus_search_form {
    padding: 10px;
    background: #004274;
}

.form-control-label {
    color: #FFF !important
}

.white {
    color: #FFF !important
}
*/
#focus_search_form {
    padding: 10px;
    background: #f5f5f5;
    margin-bottom: 20px
}

/**
*
*/
a.label-status[href*="statusz/elado"],
a.label-status[href*="statusz/kiado"] {
    display: block;
    margin-bottom: 10px;
    width: max-content;
}

a.hz-label {
    background-color: var(--focus_darkblue) !important;
}

a.label-status:hover,
a.hz-label:hover {
    color: #FFF !important
}

a.label-status,
a.hz-label {
    display: inline-block
}

/**
*
*/
.focus_tags {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    top: 15px;
    left: 15px;
}

.focus_tag {
    color: #FFF;
    background: #0288c778;
    margin-bottom: 2px;
    width: max-content;
    padding: 2px 8px;
    font-size: 12px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/**
*
*/
body.tax-property_type .bt-content-wrap,
body.tax-property_label .bt-content-wrap {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important
}

body.tax-property_type .bt-sidebar-wrap,
body.tax-property_label .bt-sidebar-wrap {
    display: none !important
}