/*
Teamplate Name: metalsheet 
Version: 1.0
*/
/* Type your CSS Here */

#kalkulator input {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 34px;
    padding-left: 10px;
    background: #0E5FB2;
    color: #fff;
    font-size: 14px;
}

#kalkulator select {
    width: 100%;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 34px;
    padding-left: 10px;
    background: #0E5FB2;
    color: #fff;
    font-size: 14px;
}

#kalkulator .with_option {
    width: 72%;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 34px;
    padding-left: 10px;
    background: #0E5FB2;
    color: #fff;
    font-size: 14px;
}

#kalkulator .option {
    width: 15%;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 34px;
    padding-left: 10px;
    background: #0E5FB2;
    color: #fff;
    font-size: 14px;
}

.element {
    height: 44px;
    display: flex;
    align-items: center;
}

.element_title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    text-align: left;
    font-weight: 700;
    transition: .5s;
    font-size: 16px;
    color: #181b1d;
    transition: .5s;
    width: 40%;
    float: left;
}

.element_input {
    width: 60%;
    float: right;
    text-align: left;
}

.total_price {
    border-top: 2px solid #181b1d;
    width: 100%;
    text-align: right;
    font-weight: bold;
    font-size: 25px;
    color: #0e5fb2;
    margin-top: 20px;
}