#zipcode_form {
    margin-top: 20px;
}

#zipcode_form label {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.56px;
    line-height: 24px;
    display: block;
}

#zipcode_form input#zipcode_field {
    width: 100%;
    border: 2px solid #eaebed;
    height: 59px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.67px;
    padding: 0 25px;
}

#zipcode_form button#submit_btn {
    width: 100%;
    border-radius: 0;
    background: #16171b;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.44px;
    line-height: 31px;
    border: none;
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    min-height: 59px;
    margin-top: 15px;
}

#zipcode_form button#submit_btn span::before {
    content: '';
    background: url(../images/calculator.svg) no-repeat;
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
}

#zipcode_form .form-item-wrapper {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

@media(min-width: 576px) {
    #zipcode_form .form-item-wrapper {
        flex-flow: row;
    }

    #zipcode_form input#zipcode_field {
        width: 35%;
        margin-right: 15px;
    }

    #zipcode_form button#submit_btn {
        margin-top: 0px;
        width: 62%;
    }
}

.product-info-product_zipcode #error_container {
    color: #e02b27;
    font-size: 1.2rem;
}

.product-info-product_zipcode .zipcode-result-item {
    margin-bottom: 20px;
}

.product-info-product_zipcode .zipcode-result-item::before {
    background-image: url(../images/hout-check.png);
    height: 30px;
    width: 30px;
    background-size: 30px;
    content: "";
    background-repeat: no-repeat;
    display: block;
    float: left;
    margin-right: 10px;
}

#result_container {
    margin-top: 15px;
}


