.text-box-container {
    display: flex;
    flex-direction: column;
}

.text-box-complete {
    color: #555;
    border: 0;
    /* not sure if this is needed as it caused bad sizing in certain cases.
    flex-basis: 50px;
    flex-grow: 1; */
    width: 100%;
    padding: 4px 6px;    
}

.text-box-complete:disabled {
    background-color: transparent;
}

.text-box-input {    
    display: block;
    width: 100%;
    /*height: 34px;*/
    padding: 4px 6px;
    line-height: 1.4285;
    color: #555;
    background-color: #fff;
    background-image: none;
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2), 0px 1px 1px 0px rgba(0,0,0,0.14), 0px 2px 1px -1px rgba(0,0,0,0.12);
    border: 0;
    height: 28px;
    font-size: 12px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
    /*border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;*/
}

.text-box-input:disabled {
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0,0,0,0.38);
}

.text-box-input-theme-1 {    
    display: block;
    width: 100%;
    /*height: 34px;*/
    padding: 4px 6px;
    line-height: 1.4285;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #CCC;
    height: 28px;
    font-size: 12px;
    /*border: 1px solid #ccc;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0px 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;*/
}

.text-box-input-theme-1:disabled {
    background-color: rgba(0, 0, 0, 0.12);
    color: rgba(0,0,0,0.38);
}