:root
{
    --color_base_boton:#3C97C6;
    --color_base_boton_hover: #044968;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/
.boton_st_1
{
    width: 250px;
    height: 50px;
    border-radius: 30px;
    background-color: var(--color_base_boton);
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.cont_St_1_left
{
    width: 80%;
    height: 100%;
    background-color: var(--color_base_boton_hover);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.cont_St_1_left p
{
    margin-bottom: 0px !important;
    font-size: 1.3rem;
    color: white;
}
.cont_St_1_rigth
{
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_St_1_rigth img
{
    transition: all 0.7s ease;
}

.boton_st_1:hover .cont_St_1_left
{
    background-color: var(--color_base_boton);
}
.boton_st_1:hover .cont_St_1_rigth img
{
    rotate: 345grad;
}