﻿﻿body {
    margin: 0 !important;
    font-family: arial;
}

#thriveMap {
    height: 600px;
}

.property-button {
    font-family: arial;
    color: white;
    font-size: 12px;
    cursor: pointer;
    padding: 10px 20px 10px 20px;
    border-radius: 20px;
    border: 1px solid #546472;
    background: #546472;
    width: 100%;
}

/* 
    Thrive Select2
*/
.wideDropDown {
    min-width: 275px !important;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
    background-color: #a0a3a5;
    cursor: default;
}

.select2-container {
    font-family: Arial;
    width: 100% !important;
    color: #546472;
}

.select2-container--default .select2-results>.select2-results__options {
    max-height: 400px;
    overflow-y: auto;
}

.select2-results__option {
    padding-right: 20px;
    vertical-align: middle;
    background-color: #DFE2E4;
}

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 16px;
    width: 16px;
    border: 1px solid #2F487F;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 16px;
    vertical-align: middle;
}

.select2-results__option[aria-selected=true]:before {
    font-family: fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: #2F487F;
    border: 0;
    display: inline-block;
    padding-left: 4px;
    padding-top: 4px;
    font-size: 12px;
}

.select2-selected-text {
    height: 100%;
    line-height: 1.6rem;
}

#cmbSector span {
    cursor: pointer !important;
}

.select2-results__option--selected:before {
    font-family: fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: #2F487F;
    border: 0;
    display: inline-block;
    padding-left: 4px;
    padding-top: 4px;
    font-size: 12px;
}



.select2-container--default .select2-results__option--selected {
    background-color: #DFE2E4;
}

.select2-selection__clear {
    color: #546472;
    right: 18px !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #DFE2E4;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #546472;
    color: #DFE2E4;
}

/*Ruttger's CSS */

span.select2-selection.select2-selection--multiple {
    height: 40px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #2F487F;
    border-radius: 20px !important;
    color: #546472;
    background: #DFE2E4;
    padding-left: 15px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border: 1px solid #2F487F !important;
    color: #546472;
    background: #DFE2E4;
    padding-left: 15px;
}

/*.select2-container--default .select2-selection--multiple {
    border: 1px solid #DFE2E4;
    border-radius: 20px;
    color: #546472;
    background: #DFE2E4;
    padding-left: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
}*/

.select2-container--default .select2-selection--multiple {
    border: 1px solid #808080;
    border-radius: 20px;
    color: #546472;
    background-color: #F5F5F5;
    padding-left: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.select2-container--open .select2-dropdown--below {
    border: 1px solid #DFE2E4;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.select2-selection .select2-selection--multiple:after {
    content: '';
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: none;
}

.select2-container--default .select2-selection--multiple:before {
    content: ' ';
    display: block;
    position: absolute;
    border-color: #546472 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    right: 12px;
    margin-left: -4px;
    margin-top: -2px;
    top: 53%;
    width: 0;
    cursor: pointer
}

.select2-container--open .select2-selection--multiple:before {
    content: ' ';
    display: block;
    position: absolute;
    border-color: transparent transparent #546472 transparent;
    border-width: 0 4px 5px 4px;
    height: 0;
    right: 12px;
    margin-left: -4px;
    margin-top: -2px;
    top: 53%;
    width: 0;
    cursor: pointer
}

.select2-dropdown--below {
    margin-top: 5px !important;
}

/*
    SPACE TO THRIVE INPUT FIELDS
*/
div.thrive-container {
    max-width: 1700px;
    margin: auto;
    font-family: Arial;
    color: #546472;
}

div.thrive-container .padding {
    padding-left: 25px;
    padding-right: 25px;
}

div.thrive-container .heading {
    font-size: 34px;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #61707C;
}

div.thrive-container .sub-heading {
    font-size: 16px;
    line-height: 30px;
}

.thrive_input_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 30px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .thrive_input_container {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .thrive_input_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .thrive_input_container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .thrive_input_container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1420px) {
    .thrive_input_container {
        grid-template-columns: repeat(6, 1fr);
    }
}

.thrive_search_container {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 30px;
}

.thrive_search_container_inner {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .thrive_search_container {
        grid-template-columns: 1fr;
    }

    /* .thrive_search_container_inner {
        grid-template-columns: 5fr 1fr;
    } */
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .thrive_search_container {
        grid-template-columns: 1fr 1fr;
    }

    .thrive_search_container_inner {
        grid-template-columns: 1fr 1fr;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .thrive_search_container {
        grid-template-columns: 2fr 1fr;
    }

    .thrive_search_container_inner {
        grid-template-columns: 2fr 1fr;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .thrive_search_container {
        grid-template-columns: 2fr 1fr;
    }

    .thrive_search_container_inner {
        grid-template-columns: 2fr 1fr;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .thrive_search_container {
        grid-template-columns: 5fr 1fr;
    }

    .thrive_search_container_inner {
        grid-template-columns: 5fr 1fr;
    }
}

#btnMapView:hover,
#btnGridView:hover {
    background-color: white !important;
    border: 1px solid #eb6d58;
    color: #eb6d58;
    transition: all 0.3s ease-in-out;
}

#btnMapView,
#btnGridView {
    border: 1px solid transparent;
    color: white;
    transition: all 0.3s ease-in-out;
}

#btnMapView .map-icon path,
#btnGridView .grid-icon path {
    fill: white;
    transition: all 0.3s ease-in-out;
}

#btnMapView:hover .map-icon path,
#btnGridView:hover .grid-icon path {
    fill: #eb6d58;
    transition: all 0.3s ease-in-out;
}

.thrive_input {
    font-size: 15px;
    padding: 10px 25px;
    outline: none;
    background: #DFE2E4;
    color: #546472;
    border: 1px solid #DFE2E4;
    border-radius: 20px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transition: .3s ease;
}

.thrive_input:focus {
    background: #F2F2F2;
    border: 1px solid #F2F2F2;
    border-radius: 20px;
}

.thrive_input::placeholder {
    color: #76838E;
    font-size: 14px;
}


/*
    SPACE TO THRIVE CARDS
*/
.thrive_card_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .thrive_card_container {
        grid-template-columns: repeat(1, 1fr);
    }

    .thrive_input {
        min-height: 44px;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .thrive_card_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .thrive_card_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .thrive_card_container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .thrive_card_container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.thrive_card_container .thrive_card {
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 100%;
}

.thrive_card_container .thrive_card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.4);
    transition: 0.3s;
    width: 100%;
    cursor: pointer;
}

.thrive_card_container .thrive_card_header {
    position: relative;
    background-color: #333;
    color: #fff;
    border: 1px solid #ddd;
}

.thrive_card_body {
    padding: 20px;
    background-color: white;
}

.thrive_card_title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px
}

.thrive_card_link {
    text-decoration: underline;
    font-size: 12px;
    font-weight: bold;
}

.thrive_bg_image {
    height: 350px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center
}

.thrive_image_holder {
    position: relative;
    background-color: #333;
    color: #fff;
    border: 1px solid #ddd;
}

.thrive_foreground_text_container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.thrive_foreground_text {
    font-size: 12px;
    position: absolute;
    bottom: 15px;
    left: 20px;
    line-height: 15px;
}

#thrive_overlay {
    /*background-color: #000;*/
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6727065826330532) 0%, rgba(0, 0, 0, 0.4654236694677871) 15%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6727065826330532) 0%, rgba(0, 0, 0, 0.4654236694677871) 15%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6727065826330532) 0%, rgba(0, 0, 0, 0.4654236694677871) 15%, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#ffffff", GradientType=1);
    /*                opacity: 50%;*/
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.broker-text {
    color: darkred;
    text-align: right;
    line-height: 38px;
}

.thrive_bg_shape {
    position: relative;
    overflow: hidden;
}

.thrive_bg_shape:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    background: #2f487f;
    z-index: -1;
    top: 450px;
    /* change value as required */
}

@media only screen and (max-width: 1450px) {
    .thrive_bg_shape:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 200px;
        background: #2f487f;
        z-index: -1;
        top: 550px;
        /* change value as required */
    }
}

@media only screen and (max-width: 768px) {
    .thrive_bg_shape:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 200px;
        background: #2f487f;
        z-index: -1;
        top: 750px;
        /* change value as required */
    }
}

@media only screen and (max-width: 600px) {
    .thrive_bg_shape:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 200px;
        background: #2f487f;
        z-index: -1;
        top: 1000px;
        /* change value as required */
    }

    .broker-text {
        color: darkred;
        text-align: center;
        line-height: 38px;
    }
}


@keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        overflow: hidden;
    }
}

@-webkit-keyframes cssAnimation {
    to {
        width: 0;
        height: 0;
        visibility: hidden;
    }
}


/*
    SPACE TO THRIVE MAP INFO WINDOW
*/
.thrive_map_info_window_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.thrive_map_info_window_container img {
    height: 200px
}

@media only screen and (max-width: 600px) {
    .thrive_map_info_window_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: 1fr;
        grid-column-gap: 10px;
        grid-row-gap: 10px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .thrive_map_info_window_container img {
        height: 100px
    }
}



/*
    SPINNER FOR LOADING
*/
#spinnerDiv {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100%;
    min-width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100000000;
}

#spinnerLabel {
    margin: auto;
}

#spinner {
    margin: auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.development-label {
    font-size: 12px;
    background-color: #2f487f;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
}

.future-development-label {
    font-size: 12px;
    background-color: #470635;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
}

.under-development-label {
    font-size: 12px;
    background-color: #eb6d58;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
}

.development-for-sale-label {
    font-size: 12px;
    background-color: #4092AD;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
}

.rounded-btn {
    font-size: 16px;
    background-color: #2f487f;
    color: white;
    padding: 10px 15px;
    border-radius: 40px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rounded-btn svg {
    width: 15px !important;
    height: 15px !important;
}

.rounded-btn i {
    float: left;
}

.rounded-btn:hover {
    background-color: #470635;
}

.sidelabel {
    width: 60px;
    position: absolute;
    overflow: hidden;
    height: 100%;
}

.sidelabel-text {
    color: #BCBCBC;
    position: relative;
    top: 200px;
    padding: 0 40px 0 0;
    letter-spacing: 5px;
    font-family: Arial;
    font-size: 14px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    -moz-transform: scale(-1, -1);
    -webkit-transform: scale(-1, -1);
    -o-transform: scale(-1, -1);
    -ms-transform: scale(-1, -1);
    transform: scale(-1, -1);
}

div.thrive-content-container {
    margin-left: auto;
}

@media screen and (max-width: 1760px) {
    div.thrive-content-container {
        margin-left: 60px;
    }
}

@media screen and (max-width: 720px) {
    .sidelabel {
        display: none;
    }

    div.thrive-content-container {
        margin-left: 0;
    }
}

.multi-btn-container {
    display: grid;
    justify-content: space-evenly;
    grid-template-columns: 50% 50%;
    gap: 5px;
}

@media screen and (min-width: 746px) and (max-width: 850px) {
    #btnSchedule {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .multi-btn-container {
        display: grid;
        justify-content: space-evenly;
        grid-template-columns: 50% 50%;
        gap: 5px;
        margin-top: 50px;
    }

    #thrive_search_container_inner {
        position: relative;
        /* top: -150px; */
    }

    .thrive_search_container_inner {
        grid-template-columns: 1fr;
    }
}

.attribute-btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* Schedule Tab Styles */
.schedule-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.schedule-container-two {
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
}

.schedule-heading {
    font-size: 32px;
    font-weight: bold;
    color: #2f487f;
    margin-bottom: 30px;
}

.schedule-info {
    text-align: left;
    background-color: #f8f9fa;
    padding: 25px 25px 25px 25px;
    border-radius: 10px;
    margin-bottom: 80px;
    border: 1px solid #e0e0e0;
}

@media screen and (max-width: 1450px) {
    .schedule-info {
        margin-bottom: 20px;
    }
}

.schedule-info p {
    line-height: 1.6;
    color: #546472;
}

.schedule-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.schedule-btn {
    font-size: 16px;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.schedule-btn:disabled {

    cursor: not-allowed;
    pointer-events: none;
    background-color: #a0a3a5 !important;
    color: #666666 !important;
}

.excel-btn {
    background-color: #4092AD;
    color: white;
}

.excel-btn:hover {
    background-color: #306b7f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pdf-btn {
    background-color: #470635;
    color: white;
}

.pdf-btn:hover {
    background-color: #2f0424;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.schedule-cancel {
    margin-top: 20px;
}

.cancel-btn {
    font-size: 14px;
    background-color: transparent;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cancel-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
    background-color: #cccccc !important;
    color: #666666 !important;
    border-color: #999999 !important;
}

.cancel-btn:hover {
    background-color: #fff;
    color: #546472
}

@media screen and (max-width: 1450px) {

    .cancel-btn {
        color: #546472;
        border: 1px solid #546472;
    }

    .cancel-btn:disabled {
        opacity: 0.75;
        cursor: not-allowed;
        pointer-events: none;
        background-color: #cccccc !important;
        color: #666666 !important;
        border-color: #999999 !important;
    }

    .cancel-btn:hover {
        background-color: #546472;
        color: #fff;
    }
}

@media screen and (max-width: 600px) {
    .schedule-heading {
        font-size: 24px;
    }

    .cancel-btn {
        color: #546472;
        border: 1px solid #546472;
    }

    .cancel-btn:disabled {
        opacity: 0.75;
        cursor: not-allowed;
        pointer-events: none;
        background-color: #cccccc !important;
        color: #666666 !important;
        border-color: #999999 !important;
    }

    .cancel-btn:hover {
        background-color: #546472;
        color: #fff;
    }

    .schedule-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .schedule-btn {
        width: 100%;
    }

    .schedule-btn:disabled {
        cursor: not-allowed;
        pointer-events: none;
        background-color: #a0a3a5 !important;
        color: #666666 !important;
    }
}