/**
* All of the CSS for your admin-specific functionality should be
* included in this file.
*/

.world-map-admin {
   text-align: center;
}
svg.map {
   width: 90%;
}
svg.map circle {
   fill: #fab16e;
}
svg.map circle.selected {
   fill: #242964;
   transition: all 0.1s ease;
   box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
   animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

#save_data {
	position: relative;
	min-width: 140px;
}

#save_data .spinner {
	float: none;
	margin-left: 8px;
	visibility: hidden;
}

#save_data.is-busy .spinner {
	visibility: visible;
}

.map .st0 {
	cursor: pointer;
	transition: transform 0.15s ease;
}
tr.saving { opacity: 0.6; }
tr.deleting { opacity: 0.4; }
