/*==================================================
BLUE RISE
INTERACTIVE WORLD MAP
==================================================*/

.world-map-wrapper{

position:relative;

width:100%;

max-width:950px;

margin:auto;

}

.world-map{

width:100%;

height:auto;

display:block;

}

/* ==========================================
COUNTRIES
========================================== */

.country{

fill:#DDEEFF;

stroke:#A9C5E8;

stroke-width:.6;

transition:.35s;

cursor:pointer;

}

.country:hover{

fill:#0A6CFF;

stroke:#003E87;

}

/* ==========================================
MARKERS
========================================== */

.marker{

position:absolute;

width:18px;

height:18px;

background:#0A6CFF;

border-radius:50%;

cursor:pointer;

animation:pulseMarker 2s infinite;

z-index:5;

}

.marker::before{

content:"";

position:absolute;

inset:-8px;

border-radius:50%;

border:2px solid #0A6CFF;

animation:ring 2s infinite;

}

@keyframes pulseMarker{

50%{

transform:scale(1.25);

}

}

@keyframes ring{

100%{

transform:scale(2);

opacity:0;

}

}

/* ==========================================
TOOLTIP
========================================== */

.marker-tooltip{

position:absolute;

background:#003E87;

color:#fff;

padding:14px;

border-radius:12px;

font-size:14px;

width:180px;

opacity:0;

visibility:hidden;

transition:.3s;

box-shadow:0 20px 35px rgba(0,0,0,.2);

z-index:100;

}

.marker:hover .marker-tooltip{

opacity:1;

visibility:visible;

}

/* ==========================================
CONNECTION LINE
========================================== */

.connection{

position:absolute;

height:2px;

background:linear-gradient(90deg,#0A6CFF,#58B3FF);

transform-origin:left center;

animation:flow 3s linear infinite;

}

@keyframes flow{

0%{

opacity:.3;

}

50%{

opacity:1;

}

100%{

opacity:.3;

}

}

/* ==========================================
SIDE PANEL
========================================== */

.global-info{

background:#fff;

padding:35px;

border-radius:25px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.global-info h3{

margin-bottom:20px;

}

.global-info ul{

padding:0;

list-style:none;

}

.global-info li{

margin-bottom:15px;

font-weight:500;

}

.global-info i{

color:#0A6CFF;

margin-right:10px;

}

/* ==========================================
COUNTRY CARD
========================================== */

.country-card{

display:flex;

align-items:center;

gap:15px;

padding:18px;

background:#F7FAFF;

border-radius:18px;

margin-bottom:15px;

transition:.3s;

}

.country-card:hover{

background:#0A6CFF;

color:#fff;

transform:translateX(5px);

}

.country-card:hover i{

color:#fff;

}

.country-card i{

font-size:24px;

color:#0A6CFF;

}

/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

.marker{

display:none;

}

.connection{

display:none;

}

.global-info{

margin-top:40px;

}

}