:root
{
    --color_boton_base: #C89D2E;
    --color_boton_base_hover: #F5F5DC;
    --color_text:#555555;
}

.boton_St_5
{
    color:white;
    background-color: white;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 5px;
    transition: all 0.3s ease;
}
.cont_total_boton
{
    width: 200px;
    height: 50px;
    border-radius: 5px;
    overflow: hidden;
}
.cont_fijo_boton
{
    width: 200px;
    height: 50px;
    background-color: var(--color_boton_base);
    display: flex;
    align-items: center;
    justify-content: center;
}
.cont_movil_boton
{
    position: relative;
    bottom: 0px;
    width: 210px;
    height: 51px;
    z-index: 1;
    background-color: var(--color_boton_base_hover);
    transition: all 0.3s ease;
}
.z_index_1
{
    z-index: 2;
}

.boton_St_5:hover .cont_movil_boton
{
    bottom: 50px;
}
.boton_St_5:hover
{
    color: var(--color_text);
}