.stat-calc {
margin: 50px auto;
}
.stat-calc .radio-choices {
margin-bottom: 20px;
display: flex;
grid-gap: 0 10px;
}
.stat-calc .row {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 2rem;
}
.stat-calc .row .block {
flex: 1 1 100px;
}
.stat-calc .row .block:first-child {
flex: 1.5 1 200px;
}
.stat-calc .row .player_1,
.stat-calc .row .player_2 {
min-width: 200px;
}
.stat-calc .row input,
.stat-calc .row select {
width: 100%;
}
.stat-calc .row .calc-stat {
padding: 0.5rem 1rem;
cursor: pointer;
background: #192a3d;
color: #fff;
}
@media (max-width: 767px) {
.stat-calc .row {
gap: 0.7rem;
margin-bottom: 1.5rem;
}
}