@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.calc {
    border: 2px solid #cc5500;
    max-width: 600px;
    font-family: 'Montserrat', sans-serif;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f8f5eb;
}
.calc-body{
    width: 100%;
    padding: 20px;
    max-width: 600px;
    background-color: #f8f5eb;
    margin: 0 auto;
}
.calc-header{
    width: 100%;
    padding: 20px;
    max-width: 600px;
    background-color: #18182e;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    text-align: center;
    height: 80px;
    background-image: url("./hop.png");
    background-repeat: no-repeat;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-sizing: content-box;
}
label {
    font-size: 20px;
    color: #1e1e31;
    display: inline-block;
    font-weight: 500;
}

.calc-row {
    display: flex;
    align-items: center;
    margin: 20px;
    width: 100%;
    justify-content: space-between;
}

.calc-fild {
    width: 100%!important;
    max-width: 190px!important;
    border: 2px solid #1e1e31!important;
    padding: 5px 12px!important;
    font-size: 20px!important;
    border-radius: 7px!important;
    box-sizing: border-box!important;
    font-family: 'Poppins', sans-serif!important;
    background-color: #f8f5eb!important;
}

.main-select{
    background-color: #cc5500!important;
    border: 0px!important;
    color: white!important;
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    padding: 10px 15px!important;
    outline: none!important;
}
.beer-select{
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    max-width: 300px!important;
    height: 44px!important;
}
option {
    /*background-color: #f0fefd;*/
}

.main-select:not([multiple]) {
    background-repeat: no-repeat;
    background-position: 160px 16px;
    background-size: 0.85em auto;
    background-image: url(./1.png);
}
.beer-select:not([multiple]) {
    background-repeat: no-repeat;
    background-position: 270px 15px;
    background-size: 0.85em auto;
    background-image: url(./2.png);
}
.calc-button {
    background-color: #cc5500;
    border: 0px;
    color: white;
    padding: 10px 40px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.calc-button:hover{
    background-color: #903f05;
}
.recommended-pressure{
    font-weight: 600;
}

@media (max-width: 610px){
    .calc-row {
        flex-direction: column;
    }
    label {
        text-align: center;
    }
}