.statistic-wrap {
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    place-content: stretch space-between;
    align-items: stretch;
    min-height: 80px;
}
.statistic-clm {
    flex-direction: column;
    box-sizing: border-box;
    display: flex;
    place-content: center;
    align-items: center;
    flex: 1 1 100%;
}
.countup-title {
    display: block;
    width: 100%;
    font-size: 1rem;
    text-align: center;
    color: #707070;
    font-weight: 500;
}
.countup-val{
    font-size: 2rem;
    font-weight: 600;
    font-family: Arial;
}

.vin-picker {
    display: flex;
    justify-content: space-around;
    direction: ltr;
}
.vinCpm{
    text-align: center !important;
    font-size: 1.4rem;
    text-transform: uppercase;
    background: no-repeat;
    border: none;
    border-bottom: 1px solid gray;
    padding: 0;
    margin: 10px 0 0 0;
    font-family: arial;
    font-weight: 700;
    width: 5% !important;
    color: #111;
}
.vinCpm:focus {
    border-bottom: 2px solid #3e737d;
}
.vin-picker-wrap{
    width: 70%;
    padding: 0 4px;
    border-radius: 3px;
    min-height: 48px;
    margin: 0 0 33px 0;
    position: relative;
    box-sizing: border-box;
}
.picker-title {
    position: absolute;
    top: -32px;
    right: 13px;
    z-index: 1000;
    color: #808080;
    font-size: .9rem;
}
.picker-title :focus{
    color: #3e737d;
}
.vin-inp-wrap {
    display: flex;
    flex-direction: row;
    direction: ltr;
    justify-content: space-between;
}
.vin-picker-btn{
    width: 25%;
    padding: 0;
    margin: 0 !important;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
    font-size: .75rem;
    cursor: pointer;
}
.vin-picker-btn[disabled]{
    background: #ccc;
}
@media screen and (max-width: 700px){
	.statistic-wrap {
		flex-direction: column;
	}
	.vin-picker{
		flex-direction: column;
	}
	.vin-picker-wrap{
		width:100%;
	}
	.vin-picker-btn{
		width:9rem;
		height:3rem;
		order:2;
	}
}