

.row{
    margin: 20px 10px 30px 15px;
    min-width: 420px;
    display: block;
}

.row label{
    color: #009688;
    width: 120px;
    font-weight: 400;
    display: inline-block;
}
.row.is-invalid label{
    color: red;
    font-weight: bold;
}

.row .valueView{
    color: #555;
    font-weight: 800;
}

.row .full, .row .medium, .row .small, .row .large{
    border-top: none;
    border-right: none;
    border-bottom: 1px solid #bbb;
    border-left: none;
    display: inline-block;
    padding: 5px 10px;
    margin: 1px 1px 0px 1px;
    color: #888;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url("/images/triangle.svg");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 10px;
}

textarea{
    height: 25px;
}

input:disabled{
    border-bottom: none !important;
    background: none;
}
input:focus, select:focus, textarea:focus{
    margin: 0px !important;
    border: 1px solid #F2994A !important;
    box-shadow: 0 0 1px #F2994A !important;
    outline-offset: 0px !important;
    outline: none !important;
}

.full{
    width: 250px;
}
.large{
    width: 190px;
}
.medium{
    width: 120px;
}
.small{
    width: 50px;
}

.walImgSelector{
    display: inline-block;
    width: 50px;
    height: 23px;
    padding-bottom: 3px;
    border-bottom: 1px solid #bbb;
    margin-left: 20px;
    vertical-align: bottom;

    background-image: url("/images/triangle.svg");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 10px;
}

.budgetImgSelector{
    display: inline-block;
    width: 50px;
    height: 23px;
    padding-bottom: 3px;
    border-bottom: 1px solid #bbb;
    vertical-align: bottom;

    background-image: url("/images/triangle.svg");
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 10px;
}

.walImgSelector img, .budgetImgSelector img{
    display: inline-block;
    width: 20px;
    height: 20px;
    padding-left: 5px;
}

.modalHeader{
    font-weight: 600;
    color: #009688;
    display: block;
    margin-bottom: 15px;
}


.imgBtn{
    height: 20px;
    width: 20px;
    padding-left: 25px;
    padding-bottom: 3px;
    vertical-align: bottom;
}

.headerTabs{
    display: block;
    text-align: center;
}
.headerTabs li{
    display: inline-block;
    opacity: 0.7;
    font-weight: 600;
    padding: 0px 20px 5px 20px;
}
.headerTabs li.activeTab{
    opacity: 1;
    border-bottom: 3px solid #fff;
}
.tab{
    display: none;
}
.activeTab{
    display: block;
}

.checkboxContainer input{
    display: none;
}

.checkboxContainer{

    display: inline-block;

}
.checkboxContainer label{
    display: block;
    min-width: 30px;
    height: 20px;
    text-align: center;
    padding: auto;
    line-height: 20px;
    border: 2px solid transparent;
}
.checkboxContainer label:hover{
    border: 2px solid #F2994A;
}

.checkboxContainer input:checked ~ label{
    border: 2px solid #009688;
}

.error-box{
    min-width: 96%;
    border: #F44336 1px solid;
    background: #FFEBEE;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    color: darkred;
}