/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #iban_form {
 
   font-family: "Helvetica Neue", helvetica, arial, sans-serif;
   font-size: 1em;

 }

#iban_form label {

    display: block;
    color: #222;
    font-weight: 800;
    margin-bottom: 0.5em;

}

#iban_form input[type="text"] {
    
    width: 100%;
    display: block;
    float: left;
    color: #222;
    background: #efefef;
    border: 1px solid #bbb;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 10px;
    
}

#iban_form .iban_row {

    width: 100%;
    float: left;
    margin: 0 0 20px 0;

}

#iban_form input[type="submit"] {

    display: block;
    cursor: pointer;
    font-size: 0.8em;
    font-weight: 800;
    color: #222;
    border: 2px solid #222;
    background: #fff;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 0.75em 1em;

}

#iban_form input[type="submit"]:hover {
    
    color: #fff;
    border: 2px solid #222;
    background: #222;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;

}

#iban_form .error {

    font-weight: normal;
    font-size: 0.8em;
    color: #bb0000;

}

#iban_result {

    color: #222;
    font-size: 1em;
    font-weight: 800;

}

#iban_result .iban_result {
    
    float: left;
    padding-right: 10px;

}

#iban_result .iban_result_iban {

    color: #008000;

}
