 @charset "UTF-8";
/**
 * Version 1.0.0 - 2024-06-17
 * Estilos para el sistema de marcadores interactivos en imágenes 
 */

.rgo-interactive-markers {
    position: relative;
    display: inline-block;
}
.rgo-interactive-markers .rgo-main-image {
    max-width: 100%;
    display: block;
    user-select: none;
    /* evita selección de texto/imagen */
    -webkit-user-drag: none;
    /* Safari/Chrome: evita drag nativo de imágenes */
    pointer-events: none;
    /* opcional: hace que no reciba clicks, solo se arrastra el marcador */
}
.rgo-marker {
    position: absolute;
}
.rgo-marker .marker-btn {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    background-color: orange;
    transition: all .2s ease;
    margin-left: auto;
}
.rgo-marker .marker-btn i {
    line-height: 30px;
    padding: 0;
    margin: 0;
}
.rgo-marker .marker-btn:hover {
    background-color: red;
    transform: scale(1.2);
}
.rgo-marker .marker-btn .btn-icon {
    display: block;
    transform: rotate(45deg);
    transition: all .2s ease;
}
.rgo-marker .marker-btn .btn-icon.collapsed {
    transform: rotate(0);
}
.rgo-marker .marker-btn .drag-handle {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    background-color: #a1a1a1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 12px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: move;
}
.rgo-interactive-markers .info-box {
    width: 350px;
    height: auto;
    position: absolute;
    top: 0;
    left: 40px;
    z-index: 10;
}
	.rgo-interactive-markers .info-box h5 {
		font-size: 1.25rem;
		font-weight: 500;
	}
.rgo-markers-global-tools {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
}