.button_type{

    position:relative;
    border:0px;
    background:rgb(35,116,180);
    color:white;
    padding:6px 0;
    border-radius:3px;
    font-size:18px;
    cursor:pointer;
    
    transition:background 0.2s;
    font-family:Arial;
}
.button_type:hover{
    background:rgb(65,136,220);
}

.button_type-danger{
    background:rgb(210,30,30);
}
.button_type-danger:hover{
    background:rgb(250,30,30);
}