
.btns {
    display: flex;
    gap: 8px;
    justify-content: center;
	align-content: center;
    flex-wrap: wrap;
}
.btns a {
	background-color: #3b58be;	/* 1a73e8 */
    color: #fff;
    font-size: 1rem;
/*	line-height: 1.5;	*/
/*	white-space: nowrap; */
	
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    align-content: center;
    align-items: center;
    align-self: flex-start;
    border: 1px solid transparent;
    border-radius: 48px;
    display: inline-flex;
    flex-flow: row nowrap;
    font-weight: 500;
    justify-content: space-around;
    letter-spacing: .5px;
    max-width: 380px;
    min-height: 42px;
    min-width: 96px;
    overflow: hidden;
    padding: 2px 20px;
    text-align: center;
    vertical-align: middle;	
    transition: background-color .2s, box-shadow .2s, color .2s;
}
.btns a:hover {
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 1px 3px 1px rgba(60,64,67,.15);
    background-color: #185abc;
}
.btns a:active {
    box-shadow: 0 1px 2px 0 rgba(60,64,67,.3),0 2px 6px 2px rgba(60,64,67,.15);
    background-color: #185abc;
	color: #fff;
    border: 1px solid transparent;
}
.btns a:focus:not(:focus-visible) {
    box-shadow: 0 0 0 2px #185abc;
    background-color: #185abc;
    border-color: #fff;
	color: #fff;
}
.btns a.white {
    color: #000;
    background-color: #fff;
}
.btns a.white:hover {
/*	box-shadow: none; */
	border: 1px solid #185abc;
}
.btns a.white:active {
	color: #fff;
	background-color: #3b58be;
}