/* Web Font */
* {
    font-family: 'Titillium Web', sans-serif; 
	/*background: #000000;*/
}


/* Relative positioning*/
#image-map {
    position: relative;
    margin: 150px auto 20px auto;
}

/* Hide the original tooltips contents */
.pin {
    display: none;
}

/* Begin styling the tooltips and pins */
.tooltip-up, .tooltip-down {
    position: absolute;
    background: url(https://www.maxiindonesia.natasbag.com/wp-content/uploads/2023/07/pintooltipsw.png);
    width: 20px;
    height: 30px;
}

.tooltip-down {
    background-position: 0 -30px;
}

.tooltip {
    display: none;
    width: 200px;
    cursor: help;
    text-shadow: 0 1px 0 #000;
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 999;
    /*margin-left: -115px;*/
    margin-left: -100px;
    padding:15px;
    /*color: #222;*/
    color: #edf000;
    border-radius: 5px;
    box-shadow: 0 3px 0 rgba(255, 0, 0, 0.8);
    /*background: #fff1d3;*/
    background: #702305;
    background: linear-gradient(top, #702305, #702305);    
}

.tooltip::after {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-bottom: 10px solid #702305;
    border-left: 10px solid transparent;
    border-right : 10px solid transparent;
}

.tooltip-down .tooltip {
    bottom: 12px;
    top: auto;
}

.tooltip-down .tooltip::after {
    bottom: -10px;
    top: auto;
    border-bottom: 0;
    border-top: 10px solid #702305;
}

.tooltip h2 {
    font: bold 1.3em 'Trebuchet MS', Tahoma, Arial;
    margin: 0 0 10px;
	color: #edf000;
}

.tooltip ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

