* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

.container-calculator {
    width: 100vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.boxes-calculator-form {
    border-radius: 10px;
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0 auto;
}

.select-first-city {

    width: 100%;
}

.select-first-Vehicle {

    width: 100%;
}

#vehicleSelect {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    /* border: 1px solid rgba(0, 0, 0, 0.1) !important; */
}

.resault-calculate {
    display: none;
}

#Error-containar {
    display: none;
}

#main-content-row {
    display: flex !important;
}

#calculate-button {
    height: 36px;
    transition: all 0.2s ease-in-out;
    font-size: 20px;
    color: #ffffff;
    background-color: #fe8802;
    border-radius: 4px;
    box-shadow: 0px 0px 2px #0000004d;

}

#calculate-button:hover {
    color: #fe8802;
    background-color: #ffffff;
}

.boxes-calculator-form h3 {
    text-align: center;
}

.boxes-calculator-form p {
    text-align: center;
}

.boxes-calculator-form label {
    margin-bottom: 4px;
}

.resault-calculate {
    padding: 5px 8px;
    background-color: rgb(0, 208, 0);
    text-align: center;
}

#Error-containar {
    padding: 5px 8px;
    background-color: rgb(223, 112, 64);
    text-align: center;
}

#numeric-value {
    padding: 5px 8px;
}

.notice-value {
    text-align: center;
    display: none;
    margin-top: 5px;
}

.container-button {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media screen and (max-width: 480px) {
    .boxes-calculator-form {

        border-radius: 10px;
        width: 90%;
        /* min-height: 60%; */
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .container-calculator {
        width: 100vw;
        height: 60vh !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

#numeric-value-unit {
    margin: 0 5px;
}
.select2-selection--single{
    
    border: 1px solid #e8e8e8 ! important;
    
}