﻿div.default-form-view label{
    display: block;
    padding: 0px 0px 0px 16px;
            
    font-size: 14px;
    line-height: 16px;
    color: #2c3e50;
    overflow: hidden;
}
    div.required label{
        color: #173c6c;
        font-weight: bold;
    }

div.default-form-view input[type=text],
div.default-form-view input[type=password],
div.default-form-view input[type=tel]{
    width: 100%;
    height: 40px;
    padding: 0px 8px 0px 8px;
    margin-bottom:12px;
            
    font-family: Helvetica,Arial,sans-serif;
    font-size: 16px;
    line-height: 38px;
    color: #173c6c;
                
    background-color: #fff;
    border: 0px;

    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
                        
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    div.default-form-view input[type=text].alert,
    div.default-form-view input[type=password].alert,
    div.default-form-view input[type=tel].alert {
        padding-left: 32px;
        background-color: #f5c4c4;
        background-image: url(/images/icons/iconAlert.png);
        background-size: 32px 32px;
        background-position: left center;
        background-repeat: no-repeat;
    }

div.default-form-view input::-webkit-outer-spin-button,
div.default-form-view input::-webkit-inner-spin-button{
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    margin: 0px;
}
    
div.default-form-view input::-webkit-input-placeholder,
div.default-form-view textarea::-webkit-input-placeholder {
    font-style: italic;
    color: #c6c6c6;
}
div.default-form-view input:-moz-placeholder,
div.default-form-view textarea::-moz-placeholder { /* Firefox 18- */
    font-style: italic;
    color: #c6c6c6;
}
div.default-form-view input::-moz-placeholder,
div.default-form-view textarea::-moz-placeholder { /* Firefox 19+ */
    font-style: italic;
    color: #c6c6c6;
}
div.default-form-view input:-ms-input-placeholder,
div.default-form-view textarea::-ms-input-placeholder {
    font-style: italic;
    color: #c6c6c6;
}

div.default-form-view textarea{
    width: 100%;
    height: 220px;
    padding: 16px;
    margin-bottom:12px;
            
    font-family: Helvetica,Arial,sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #2c3e50;

    background-color: #fff;            
    border: 0px;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
                        
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
    div.default-form-view textarea.alert{
        padding-left: 32px;
        background-color: #f5c4c4;
        background-image: url(/images/icons/iconAlert.png);
        background-size: 32px 32px;
        background-position: left top;
        background-repeat: no-repeat;
    }

div.default-form-view select{
    width: 100%;
    height: 40px;
    padding: 0px 22px 0px 8px;
    margin-bottom:12px;
            
    font-family: Helvetica,Arial,sans-serif;
    font-size: 16px;
    line-height: 38px;
    color: #2c3e50;

    background-color: #fff;
    background-image: url(/images/icons/iconDownArrow.png);
    background-size: 19px 15px;
    background-position: right center;
    background-repeat: no-repeat;
            
    border: 0px;
    
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
                        
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
div.default-form-view select::-ms-expand {
    display: none;
}
    div.default-form-view select.alert{
        padding-left: 32px;
        background-color: #f5c4c4;
        background-image: url(/images/icons/iconAlert.png);
        background-size: 32px 32px;
        background-position: left center;
        background-repeat: no-repeat;
    }

div.default-form-view input[type=checkbox]{
    position: absolute;
    top: 50%;
    left: 8px;
    margin-top: -8px;

    width: 16px;
    height: 16px;
    margin-right:6px;
            
    background-image: url(/images/icons/iconUncheckedBox.png);
    background-size: 16px 16px;
    background-position: center center;
    background-repeat: no-repeat;
            
    border: 0px;
    
    -webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
                        
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
    div.default-form-view input[type=checkbox]:checked{
        background-image: url(/images/icons/iconCheckedBox.png);
    }
div.default-form-view div.check-list{
    margin-bottom:11px;
    overflow: hidden;
}
    div.default-form-view div.check-list label {
        position: relative;
        width: 100%;
        min-height: 40px;
        padding: 8px 8px 8px 32px;
        margin-bottom: 1px;
        font-family: Helvetica,Arial,sans-serif;
        font-size: 16px;
        line-height: 24px;
        font-weight: normal;
        color: #2c3e50;
        background-color: #fff;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-transition: background-color ease-out .3s;
        -moz-transition: background-color ease-out .3s;
        -o-transition: background-color ease-out .3s;
        transition: background-color ease-out .3s;
    }
        div.default-form-view div.check-list label:first-child{
            -moz-border-radius: 4px 4px 0px 0px;
            -webkit-border-radius: 4px 4px 0px 0px;
            border-radius: 4px 4px 0px 0px;

        }
        div.default-form-view div.check-list label:last-child{
            -moz-border-radius: 0px 0px 4px 4px;
            -webkit-border-radius: 0px 0px 4px 4px;
            border-radius: 0px 0px 4px 4px;

        }
        div.default-form-view div.check-list label.alert{
            padding-right: 32px;
            background-color: #f5c4c4;
            background-image: url(/images/icons/iconAlert.png);
            background-size: 32px 32px;
            background-position: right center;
            background-repeat: no-repeat;
        }
        div.default-form-view div.check-list label.selected{
            background: #4e80c4;
            color: #ffffff;
        }

div.default-form-view input:read-only{
    background-color: #d3d6d9;
    color: #999;
}
div.default-form-view input:-moz-read-only{
    background-color: #d3d6d9;
    color: #999;
}

div.default-form-view div.errorMessage{
    padding: 12px 0px 12px 32px;
    color: #dc2533;
    background-image: url(/images/icons/iconAlert.png);
    background-size: 32px 32px;
    background-position: left center;
    background-repeat: no-repeat;
}
div.default-form-view div.confirmMessage{
    padding: 12px 0px 12px 32px;
    color: #13841b;
    background-image: url(/images/icons/iconConfirm.png);
    background-size: 32px 32px;
    background-position: left center;
    background-repeat: no-repeat;
}

div.default-form-view .link{
    float: right;
    padding: 10px 0px 10px 0px;
    margin-right: 12px;
    cursor: pointer;
           
    color: #2c3e50;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-decoration: underline;
}
div.default-form-view .button {
    float: right;
    padding: 0px 8px 0px 28px;
    margin:0px 2px 2px 0px;

    cursor: pointer;

    background: #23508b;
    background-image: url(/images/icons/iconUser.png);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: 8px center;
           
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
    div.default-form-view .button:hover {
        background-color: #173c6c;
    }
div.default-form-view .cancel {
    float: right;
    padding: 0px 8px 0px 28px;
    margin:0px 2px 2px 0px;

    cursor: pointer;

    background: #dc2533;
    background-image: url(/images/icons/iconCancel.png);
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: 8px center;
           
    color: #ffffff;
    font-size: 16px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;

    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
    div.default-form-view .cancel:hover {
        background-color: #c71422;
    }
    div.default-form-view .button.disabled{
        background: #909090;
        cursor: auto;
    }
        div.default-form-view .button.disabled:hover{
        background: #909090;
    }
