﻿.globe-svg {
    /*  width: 100%;*/
    height: auto;
    max-width: 700px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(0,200,255,0.7);
}


.country {
    fill: #026a2f;
    stroke: #fff;
    stroke-width: 0.5px;
    cursor: pointer;
}

    .country:hover {
        fill: #e9c46a;
    }

.ocean {
    fill: #3071a9;
    cursor: pointer;
}

.label {
    font-size: 7px;
    fill: #fff;
    text-anchor: middle;
    pointer-events: none;
}

/*.tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    display: none;
    pointer-events: none;
}*/

#tooltip {
    position: absolute;
    display:none;
    max-width: 80%; /* prevent overflow on mobile */
    word-wrap: break-word; /* wrap text nicely */
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    pointer-events: none;
}

@media (max-width: 768px) {
    #tooltip {
        font-size: 12px; /* slightly smaller text on mobile */
        padding: 6px 10px;
        max-width: 90%;
        left: 50% !important; /* center horizontally */
        transform: translateX(-50%);
    }
}

select {
    margin: 10px;
    padding: 5px;
    font-size: 14px;
    width: 250px;
}


.rehomes-search-form-area {
    position: relative;
    z-index: 100;
    background-color: #2a303b;
    padding: 30px 0 15px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .rehomes-search-form-area {
        padding: 30px 0;
    }
}

@media only screen and (max-width: 767px) {
    .rehomes-search-form-area {
        padding: 30px 0;
    }
}

.rehomes-search-form-area .rehomes-search-form {
    position: relative;
    width: 100%;
}

    .rehomes-search-form-area .rehomes-search-form .row .row {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }

        .rehomes-search-form-area .rehomes-search-form .row .row .col-12 {
            padding-left: 7.5px;
            padding-right: 7.5px;
        }

    .rehomes-search-form-area .rehomes-search-form .form-control {
        width: 100%;
        margin-bottom: 15px;
        height: 45px;
        border: 1px solid #e5e5e5;
        font-size: 16px;
        border-radius: 2px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #2a303b;
    }

@media only screen and (max-width: 767px) {
    .rehomes-search-form-area .rehomes-search-form .form-control {
        margin-bottom: 30px;
    }
}

.rehomes-search-form-area .rehomes-search-form .form-control:focus {
    box-shadow: none;
    border-color: #92c800;
}

.rehomes-search-form-area .rehomes-search-form .rehomes-search-btn {
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    height: 105px;
    width: 100%;
    background-color: #92c800;
    color: #ffffff;
    line-height: 105px;
    border: none;
    display: inline-block;
    text-align: center;
    padding: 0;
    border-radius: 2px;
    font-size: 24px;
}

    .rehomes-search-form-area .rehomes-search-form .rehomes-search-btn:hover, .rehomes-search-form-area .rehomes-search-form .rehomes-search-btn:focus {
        background-color: #000000;
        color: #ffffff;
    }

.slider-range .ui-widget-content {
    border: none;
    background: #555962;
}

    .slider-range .ui-widget-content .ui-state-default {
        background: #92c800;
        height: 14px;
        width: 14px;
        border: none;
        border-radius: 50%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.slider-range .ui-widget-header {
    background: #92c800;
}

.slider-range .ui-slider-horizontal {
    height: 4px;
}

    .slider-range .ui-slider-horizontal .ui-slider-range {
        border-radius: 0 !important;
    }

    .slider-range .ui-slider-horizontal .ui-slider-handle {
        margin-left: 0;
    }

.slider-range .range-size {
    font-size: 16px;
    margin-bottom: 10px;
}

.slider-range .range-price {
    font-size: 16px;
    margin-bottom: 10px;
}

.modern-btn {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #4a90e2, #007aff);
    border: none;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}


    .modern-btn span {
        position: relative;
        z-index: 2;
        letter-spacing: 0.5px;
    }


    .modern-btn::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.5s ease;
        z-index: 1;
    }


    .modern-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    }


        .modern-btn:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }


    .modern-btn:active {
        transform: scale(0.97);
    }