body .container{
    position: relative;
    padding-left: 40px;
    overflow: visible;
}
.meter{ 
    background-color: #47a2da;
    width: 20px;
    height: 8cm;
    position: absolute;
    top: 10px;
    left: 10px;
    margin-bottom: 50px;
    transform: rotate(0deg);
    transform-origin: left top;
    transition: all 200ms linear;
}
input, select{
    padding: 5px;
    font-size: 15px;
    text-align: center;
}
select{
    margin-bottom: 30px;
}
#number{
    width: 60px;
    border: 2px solid #47a2da;
}
.refinewrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
#refine{
    width: 45px;
    border: 2px solid #cb4e4e;
    color: #cb4e4e;
    font-size: 14px;
    padding: 3px;
}
.refine{
    width: 24px;
    height: 24px;
    background-color: #cb4e4e;
    border: none;
    margin-right: 10px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 300ms ease-out;
}
.refine:hover{
    opacity: 1;
}
.refinetext{
    font-size: 14px;
}
@media (max-width: 540px){
    .nomobile{
        display: none;
    }
}