/*Animations*/

.mc-animation-shake {
    animation: mcshake 3s infinite !important; /* Repite la animación de temblor */
}

.mc-animation-bounce {
    animation: mcbounce 3s infinite !important; /* Repite la animación de rebote */
}

.mc-animation-pulse {
    animation: mcpulse 3s infinite !important; /* Repite la animación de pulso */
}

/* Definición de las animaciones */
@keyframes mcshake {
    0% { transform: rotate(0); }
    2% { transform: translateY(-2px) rotate(-2deg); transform-origin: center; }
    4% { transform: translateY(2px) rotate(2deg); transform-origin: center; }
    6% { transform: translateY(-2px) rotate(-2deg); transform-origin: center; }
    8% { transform: translateY(2px) rotate(2deg); transform-origin: center; }
    10% { transform: translateY(-2px) rotate(-2deg); transform-origin: center; }
    12% { transform: rotate(0); transform-origin: center; }
}

@keyframes mcbounce {
    0%  { transform: translateY(0); }
    5%  { transform: translateY(-8px); }
    10% { transform: translateY(0); }
    15% { transform: translateY(-8px); }
    20% { transform: translateY(0); }
}

@keyframes mcpulse {
    0%  { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
}


/* Estilos del popup de la guía de tallas */

.mc-size-guide-btn{
    border: 0px;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 5px;
    background: #00000008;
    border-radius: 2px;
    cursor: pointer;
    outline: none;
}

.size-guide-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    display: flex;
    gap: 12px;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin: 10px;
}

.popup-content h2{
    margin: 0px;
    margin-bottom: 10px;
    font-weight: 600;
}


.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.mc-size-input-container{
    display: flex;
    align-items: center;
}
.mc-size-input-container-adjust{
    display: flex;
    flex-direction: column;
}
.mc-size-input-container label{
    width: 50%;
    margin: 0px;
    text-transform: uppercase;
    font-size: 13px;
}
.popup-content input,.popup-content select,
.popup-content button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    text-transform: uppercase;
    font-size: 14px;
}

.popup-content button {
    
    color: white;
    border: none;
    cursor: pointer;
}


.popup-content #resultado{
    padding: 12px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
}