.divgp{
    position: relative;
    font-size: 20px;
    font-weight: 600;
    color: red;
    width: 99%;
    margin: 3px;
    animation-duration: 1s;
    animation-name: slidein;
}
.precio35{
    width: 14%;
    text-align: right; 
    font-size: 20px;
    font-weight: 700;
    color: red;
    padding: 0 5px;
    
    border-radius: 5px;
}
.aquies{
    text-align: center;
    width: 60%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);

}
@keyframes slidein {
    from {
        opacity: 0;
        margin-left: 300%;
    }
  
    to {
        margin-left: 0;

        opacity: 1;
    }
  }
.aquies2{
    text-align: center;
}
.centrado{
    text-align: center;
    margin: 0 12%;
}
.INTEL{
    margin: 0 10px;
    font-size: 22px;
    border-radius: 5px;    
    padding: 10px;
    color: blue;
    border: 1px solid blue;

}
.INTEL:hover{
    cursor: pointer;
    background-color: royalblue;
    color: yellow;
    transition: all 0.5s ease-out;

}
.INTEL1{
    width: 50%;
    height: 180px;
    border: 2px solid blue;
    border-radius: 5px;
}
.AMD1{
    width: 50%;
    height: 180px;
    border: 2px solid firebrick;
    border-radius: 5px;
}
.INTEL1:hover{
    cursor: pointer;
    border: 8px solid royalblue;
    padding: 3%;
    transition: all 0.4s ease-out ;
}
.AMD1:hover{ 
    cursor: pointer;
    border: 8px solid firebrick;
    padding: 3%;
    transition: all 0.4s ease-out ;

}
.RESET{
    margin: 0 10px;
    font-size: 22px;
    background-color: rgb(173, 24, 24);
    border-radius: 5px;    
    padding: 10px;
    color: rgb(0, 255, 234);
    text-decoration: none;
}
.RESET:hover{
    background-color: royalblue;
    color: rgb(255, 0, 0);
    transition: all 0.5s ease-out;

}
.subt{
    display: flex;
    border-bottom: 1px solid aquamarine;
}
.elegir1{
    font-size: 18px;
    color: rgb(0 113 117);
    background-color: rgb(217 212 239 / 64%);
    border-radius: 13px;
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: auto;
    font-weight: 500;
}
.elegir1:hover{
    cursor: pointer;
    background-color: rgba(239, 224, 212, 0.64);
    position: relative;
    top: -10px;
    transition: all 0.5s ease-out allow-discrete;
}
.VS{
    text-align: center;
    color: black;
    font-size: 29px;
}
.prod22{
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #4e4a91;
    width: 86%;
    font-family: monospace;
    padding: 2px 0;
    letter-spacing: -0.05em;
}
.TOTAL{
    font-size: 30px;
    color: red;
    background-color: aquamarine;
    text-align: center;
    

}
.izquierda{
    text-align: left;
}
.producto{
    font-weight: 800;
    font-size: 40px;
    color: royalblue;
    text-align: center;
}
.terminar{
    font-size: 28px;
    color: green;
    display: flex;
}
.preciopublico23 {
    width: 80px;
    color: white;
    font-size: 22px;
    font-weight: 600;
    position: absolute;
    left: 21px;
    top: 4px;
    background-color: red;
    border: 1px solid red;
    border-radius: 4px;
    padding: 0 2px;
    z-index: 100;
    font-family: auto;
}
.vs002{
    display: flex;
    padding: 15px 12%;
    width: 80%;
    margin: auto; 
    text-align: center;
    align-items: center;
    
}
@media (max-width: 700px) {
    .aquies{
        width: 100%;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }
    .centrado{
        width: 100%;
        margin: 0;
    }
    .hidden{
        width: 0;
        display: none;
    }
    .vs002{
        width: 100%;
    }
}
@media print {
    .hidden{
        display: none;
        opacity: 0;
        width: 0;
    }

}