/*
* Hotspot
* 
*/

.HotspotPlugin_Hotspot {
    height: 25px;
    width: 25px;
    position: absolute;
    background: rgb(228, 228, 228);
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    margin-left: -10px;
    margin-top: -10px;
}

.HotspotPlugin_Hotspot::after {
    content: "+";
    color: black;
    margin-left: 35%;
}


/*
* Hotspot content
* 
*/

.HotspotPlugin_Hotspot>div {
    background: rgba(255, 255, 255, 0.726);
    color: black;
    text-transform: none !important;
    width: 550px;
    height: 120px;
    margin: -94px -60px;
    padding: 4px 10px !important;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgba(65, 0, 0, 0.562);
    z-index: 2;
    font-size: 14px;
    display: none;
    /* Required */
}

.HotspotPlugin_Hotspot:hover>div {
    display: block;
    /* Required */
}

.HotspotPlugin_Hotspot>div>.Hotspot_Title {
    height: 20px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
}

.HotspotPlugin_Hotspot>div>.Hotspot_Price {
    height: 20px;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding: 5px 0;
    color: #641b19;
    position: absolute;
    top: 0;
    right: 10px;
}

.HotspotPlugin_Hotspot>div>.Hotspot_Price::before {
    content: "Rp. ";
}

.HotspotPlugin_Hotspot>div>.Hotspot_Message {
    margin-top: 2px;
    height: 72px;
    overflow-y: auto;
    font-size: 12px;
    padding: 5px 0;
}

.HotspotPlugin_Hotspot_Hidden {
    display: none!important;
    visibility: hidden!important;
}


/*
* Hotspots immediately after creation - admin-mode
* 
*/

.HotspotPlugin_Hotspot_Unsaved {
    background: #4E6FF3;
}


/*
* Overlay used in the admin-mode
* 
*/

span.HotspotPlugin_Overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0px;
    left: 0px;
    cursor: pointer;
}

span.HotspotPlugin_Overlay>p {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.4);
    margin-top: 0px;
    padding: 20px;
    text-align: center;
}


/*
* Action buttons - `admin` mode
* 
*/

button.HotspotPlugin_Save,
button.HotspotPlugin_Remove,
button.HotspotPlugin_Send {
    position: absolute;
    bottom: -35px;
    color: #fff;
    display: inline-block;
    padding: 4px 6px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
}

button.HotspotPlugin_Save {
    left: 0px;
    background-color: #5cb85c;
}

button.HotspotPlugin_Remove {
    left: 80px;
    background-color: #d9534f;
}

button.HotspotPlugin_Send {
    left: 180px;
    background-color: #5bc0de;
}