/* ==========================================================
   SENSHIGEEK - Guardar colección ed
   ========================================================== */

li.product-category {
	position: relative;
}



.sg-collection-save::after {
	content: attr(data-tooltip);

	position: absolute;
	right: 0;
	top: calc(100% + 8px);

	padding: 6px 9px;

	background: rgba(0, 0, 0, 0.9);
	color: #ffffff;

	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;

	border-radius: 4px;

	opacity: 0;
	visibility: hidden;

	pointer-events: none;

	transition: opacity 0.15s ease;
}

.sg-collection-save:hover::after {
	opacity: 1;
	visibility: visible;
}

.sg-collection-save:hover {
	background: rgba(0, 0, 0, 0.65);
	color: #2196f3;
}

.sg-save-icon {
	width: 19px;
	height: 19px;

	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.sg-collection-save.is-saved {
	background: rgba(0, 0, 0, 0.65);
	color: #2196f3;
}

.sg-collection-save.is-saved .sg-save-icon {
	fill: currentColor;
}




/* ==========================================================
   TARJETA - MIS COLECCIONES
   ========================================================== */

.sg-my-collection-card{
    position:relative;

    display:flex;
    align-items:flex-start;

    width:100%;

    padding:14px;
    margin-bottom:5px;

    background:#0D1522;
    border:1px solid #1D2B40;
    border-radius:14px;

    box-sizing:border-box;

    transition:none !important;
}


/* ==========================================================
   CONTENIDO PRINCIPAL
   ========================================================== */

.sg-my-collection-main{
    display:flex;
    align-items:flex-start;

    width:100%;
    min-width:0;

    gap:20px;
}


/* ==========================================================
   PORTADA
   ========================================================== */

.sg-my-collection-cover{
    width:100px;
    min-width:100px;

    flex-shrink:0;
}

.sg-my-collection-cover-link{
    display:block;
}

.sg-my-collection-image{
    display:block;

    width:100px !important;
    height:140px !important;

    object-fit:cover;

    border-radius:8px;

    margin:0 !important;
}


/* ==========================================================
   INFORMACIÓN
   ========================================================== */

.sg-my-collection-info{
    display:flex;
    flex-direction:column;

    align-items:flex-start;

    min-width:0;

    padding-top:8px;

    padding-right:50px;
}


/* ==========================================================
   TÍTULO
   ========================================================== */

.sg-my-collection-title{
    margin:0 0 18px !important;

    padding:0;

    font-family:'Bebas Neue', sans-serif !important;
    font-size:32px !important;



   line-height:1;
    color:#FFFFFF;
}

.sg-my-collection-title a{
    color:#FFFFFF;
    text-decoration:none;

    font-family:'Bebas Neue', sans-serif !important;
    font-size:25px !important;
    font-weight:400 !important;
    line-height:1;
}


/* ==========================================================
   TOMOS PUBLICADOS
   ========================================================== */

.sg-my-collection-publications{
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:16px;

    padding:10px 14px;

    background:#0D1522;

    border:1px solid #1D2B40;
    border-radius:12px;
}


.sg-my-collection-label{
    font-size:14px;
    font-weight:600;

    color:#FFFFFF;

    white-space:nowrap;
}


.sg-my-collection-edition{
    display:flex;
    align-items:center;

    gap:5px;
}


.sg-my-collection-flag{
    width:16px !important;
    height:16px !important;

    border-radius:50%;

    object-fit:cover;

    margin:0 !important;
}


.sg-my-collection-count{
    font-size:14px;

    color:#FFFFFF;

    line-height:1;
}


.sg-my-collection-continues{
    margin-left:1px;
}


/* ==========================================================
   PRODUCTOS
   ========================================================== */

.sg-my-collection-products{
    font-size:14px;
    color:#8FA4BF;
}


/* ==========================================================
   ESTADO DE LA COLECCIÓN
   ========================================================== */

.sg-my-collection-status{
    display:flex;
    align-items:center;

    gap:6px;

    margin-top:8px;

    font-size:13px;
    font-weight:600;

    line-height:1;
}


/* ==========================================================
   PUNTO DE ESTADO
   ========================================================== */

.sg-my-collection-status-dot{
    width:7px;
    height:7px;

    border-radius:50%;

    flex-shrink:0;
}


/* ==========================================================
   EN CURSO
   ========================================================== */

.sg-status-in-course{
    color:#22C55E;
}

.sg-status-in-course .sg-my-collection-status-dot{
    background:#22C55E;
}


/* ==========================================================
   COMPLETADA
   ========================================================== */

.sg-status-completed{
    color:#28AAE3;
}

.sg-status-completed .sg-my-collection-status-dot{
    background:#28AAE3;
}


/* ==========================================================
   BOTÓN SEGUIR
   ========================================================== */

.sg-collection-save{
    position:absolute;

    top:5px;
    right:5px;

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;
    margin:0;

    border:1px solid #28AAE3;
    border-radius:50%;

    background:#0D1522;

    color:#28AAE3;

    cursor:pointer;

    z-index:20;

    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease !important;
}


/* ==========================================================
   CORAZÓN
   ========================================================== */

.sg-save-icon{
    display:block;

    font-size:20px;
    line-height:1;

    color:#28AAE3;

    transition:color .2s ease !important;
}


/* ==========================================================
   ESTADO SEGUIDO
   ========================================================== */

.sg-collection-save.is-saved{
    background:#0D1522;
    border-color:#28AAE3;
}

.sg-collection-save.is-saved .sg-save-icon{
    color:#28AAE3;
}


/* ==========================================================
   HOVER DEL CORAZÓN
   ========================================================== */

.sg-collection-save:hover{
    transform:none !important;

    background:#0D1522;

    border-color:#FFFFFF;

    box-shadow:none !important;
}

.sg-collection-save:hover .sg-save-icon{
    color:#FFFFFF;
}


/* ==========================================================
   EVITAR EFECTOS DE ASTRA
   ========================================================== */

.sg-collection-save:focus,
.sg-collection-save:active{
    transform:none !important;
    box-shadow:none !important;
}


/* ==========================================================
   LA TARJETA TAMPOCO SE MUEVE
   ========================================================== */

.sg-my-collection-card:hover{
    transform:none !important;
    box-shadow:none !important;
}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:768px){

    .sg-my-collection-card{
        padding:10px;
        margin-bottom:14px;
    }


    .sg-my-collection-main{
        gap:12px;
    }


    .sg-my-collection-cover{
        width:80px;
        min-width:80px;
    }


    .sg-my-collection-image{
        width:80px !important;
        height:112px !important;
    }


    .sg-my-collection-info{
        padding-top:4px;
        padding-right:40px;
    }


    .sg-my-collection-title{
        font-size:14px !important;
        margin-bottom:12px !important;
    }


    .sg-my-collection-publications{
        gap:8px;
        padding:8px 10px;
    }


    .sg-my-collection-label{
        font-size:12px;
    }


    .sg-my-collection-flag{
        width:14px !important;
        height:14px !important;
    }


    .sg-my-collection-count{
        font-size:12px;
    }


    .sg-my-collection-status{
        margin-top:7px;
        font-size:12px;
    }


    .sg-my-collection-status-dot{
        width:6px;
        height:6px;
    }


    .sg-collection-save{
        top:5px;
        right:5px;

        width:30px;
        height:30px;
    }

}


/* ==========================================================
   COMPATIBILIDAD
   ========================================================== */

.sg-my-collection-item{
    margin-bottom:14px;
}




/* ==========================================================
   BOTONES DE ACCIONES - MIS COLECCIONES
   ========================================================== */


/* ==========================================================
   CORAZÓN
   ========================================================== */

.sg-my-collection-actions .sg-collection-save{
    position:relative;

    top:auto;
    right:auto;

    flex-shrink:0;
}

/* ==========================================================
   HOVER
   ========================================================== */

.sg-collection-remove:hover{
    background:#0D1522 !important;

    border-color:#FFFFFF !important;

    color:#FFFFFF !important;

    box-shadow:none !important;

    transform:none !important;
}


.sg-collection-remove:hover .sg-remove-icon{
    color:#FFFFFF;
}


/* ==========================================================
   FOCUS / ACTIVE
   ========================================================== */

.sg-collection-remove:focus,
.sg-collection-remove:active{
    background:#0D1522 !important;

    border-color:#28AAE3 !important;

    box-shadow:none !important;

    transform:none !important;
}


/* ==========================================================
   MÓVIL
   ========================================================== */

@media (max-width:768px){

    .sg-remove-icon{
        font-size:20px;
    }

}
/* ==========================================================
   EVITAR ESTADO AZUL AL HACER CLICK
   ========================================================== */

.sg-collection-save:focus,
.sg-collection-save:focus-visible,
.sg-collection-save:active{
    transform:none !important;
    box-shadow:none !important;

    background:#0D1522 !important;
    border-color:#28AAE3 !important;
    color:#28AAE3 !important;
}

.sg-collection-save:focus .sg-save-icon,
.sg-collection-save:focus-visible .sg-save-icon,
.sg-collection-save:active .sg-save-icon{
    color:#28AAE3 !important;
}


.sg-my-collection-card .sg-collection-save {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   CORAZÓN - MIS COLECCIONES
   ========================================================== */

.sg-my-collection-card .sg-save-icon {
    display: block;
    width: 20px;
    height: 20px;
    
    transform: scaleX(1.15);
    transform-origin: center;
    
    stroke-width: 2.2;
}