/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.lbmc-input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.lbmc-form-control {
    display: block;
    width: 100%;
    height: calc(1.6em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: .9rem;
    font-weight: 400;
    line-height: 1.6;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.lbmc-input-group-append {
    margin-left: -1px;
    display: flex;
}

.lbmc-input-group-append > .lbmc-form-control {
    margin-left: 5px;
    display: flex;
}

.lbmc-input-group > .lbmc-form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.lbmc-error-msg {
    background-color: rgba(255,3,3,0.3);
    border: 1px solid red;
    color: white;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    padding: 0 5px;
}

.lbmc-error-msg a {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}