﻿.required-indicator {
    font-weight: bold;
    color: red;
    line-height: 1;
}

legend {
    font-size: 1.25rem;
    font-weight: 600;
}

legend:not(.form-label) {
    text-align: center;
}
.form-label, .form-label-small {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
}

.form-label-small {
    font-size: 0.85rem;
}

.form-validator {
    font-size: 0.85rem;
    font-weight: bold;
}

::placeholder {
    color: #929090;
}

.form-input-field {
    display: inline-block;
    width: 100%;
    height: 33px;
    border: 1px solid #CCCCCC;
    /*border-radius: 3px;*/
    font-size: 1rem;
    padding: 6px;
}

.form-select-field {
    display: inline-block;
    width: 100%;
    height: 33px;
    padding: 3px;
}

.form-range-field {
    display: inline-block;
    width: 50%;
    height: 33px;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    font-size: 1rem;
    padding: 6px;
    margin: 0 0.25rem;
}

.form-textarea-field {
    display: block;
    width: 100%;
    height: 8.5rem;
}

.form-checkbox-field input {
    vertical-align: middle;
    width: 1.1rem;
    height: 1.1rem;
}
@media (max-width:575px) {
    .form-label, .form-label-small {
        font-size: .8rem;
    }
    .form-select-field {
        font-size: .8rem;
    }
    .emp-app .form-input-field {
        width: 75%;
        margin: 5px 0;
    }
    .required-indicator {
        font-size: .9rem;
    }
	.form-validation-summary {font-size: 0.85rem;}
}
@media (min-width:575px) {
    .form-label, .form-label-small {
        font-size: 1rem;
    }
    .form-select-field {
        font-size: 1rem;
    }
    .emp-app .form-input-field {
        width: 96%;
        margin: 5px 0;
    }
    .required-indicator {
        font-size: 1.25rem;
    }  
.form-validation-summary {font-size: 0.95rem;}  
}

/*-------------Buttons--------------------------*/
.btn-form, btn-form:hover {
    color: white !important;
    cursor: pointer;
}

.btn-form {
    font-size: 1.1rem;
    padding: 10px 25px;
    background-color: #3d875f;
    border-radius: 0;
}

.btn-form:hover {
    background-color: #31734f;
}

.btn-outline-info-form {
    color: #294282;
    border-color: #294282;
    border-radius: 0
}

    .btn-outline-info-form:hover {
        color: #fff;
        background-color: #294282;
        border-color: #294282
    }

    .btn-outline-info-form.focus, .btn-outline-info-form:focus {
        box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
    }

    .btn-outline-info-form.disabled, .btn-outline-info-form:disabled {
        color: #294282;
        background-color: transparent
    }

    .btn-outline-info-form:not(:disabled):not(.disabled).active, .btn-outline-info-form:not(:disabled):not(.disabled):active, .show > .btn-outline-info-form.dropdown-toggle {
        color: #fff;
        background-color: #294282;
        border-color: #294282
    }

        .btn-outline-info-form:not(:disabled):not(.disabled).active:focus, .btn-outline-info-form:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info-form.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(23,162,184,.5)
        }


.btn-outline-danger-form {
    color: #a52429;
    border-color: #a52429;
    border-radius: 0
}

    .btn-outline-danger-form:hover {
        color: #fff;
        background-color: #a52429;
        border-color: #a52429
    }

    .btn-outline-danger-form.focus, .btn-outline-danger-form:focus {
        box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
    }

    .btn-outline-danger-form.disabled, .btn-outline-danger-form:disabled {
        color: #a52429;
        background-color: transparent
    }

    .btn-outline-danger-form:not(:disabled):not(.disabled).active, .btn-outline-danger-form:not(:disabled):not(.disabled):active, .show > .btn-outline-danger-form.dropdown-toggle {
        color: #fff;
        background-color: #a52429;
        border-color: #a52429
    }

        .btn-outline-danger-form:not(:disabled):not(.disabled).active:focus, .btn-outline-danger-form:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger-form.dropdown-toggle:focus {
            box-shadow: 0 0 0 .2rem rgba(220,53,69,.5)
        }

/*----------------------Radio-------------------------------------*/
.form-checkbox-field input[type=radio] {
   display: none;
}

.form-checkbox-field label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    margin-right: 20px;
    line-height: 18px;
    user-select: none;
}

    .form-checkbox-field label:before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        position: absolute;
        left: 0;
        bottom: 1px;
        border-radius: 50%;
        background-color: white;
        border: 1px solid #7c7c7c;
    }
/*-----------For Business License Application form - checkbox------------------------*/
span[aria-describedby="citizenship-declaration-oath"].form-checkbox-field label:before {
    border: none;    
}
span[aria-describedby="citizenship-declaration-oath"].form-checkbox-field label:hover:before {
    background-color: unset;
}
/*-----------------------------------*/
/* Checked */
.form-checkbox-field input[type=radio]:checked + label:before {
    border: 3px solid white;
    background-color: #0D6938;
    -webkit-box-shadow: 0px 0px 0px 1px #0D6938;
    -moz-box-shadow: 0px 0px 0px 1px #0D6938;
    box-shadow: 0px 0px 0px 1px #0D6938;
    margin-top: 15px;
}
/* Hover */
.form-checkbox-field label:hover:before {
    background-color: #6e887a;
}
/* Disabled */
.form-checkbox-field input[type=radio]:disabled + label:before {
    filter: grayscale(100%);
}

/*-------------------Select - DDL-----------------------------*/
select.form-select-field {
    -webkit-appearance: button;
    -moz-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-padding-end: 20px;
    -moz-padding-end: 20px;
    -webkit-padding-start: 2px;
    -moz-padding-start: 2px;
    background-color: white; /* Fallback color if gradients are not supported */
    background-image: url(../images/arrow-ddl.svg);
    background-position-x: 98%;
    background-position-y: center;
    background-repeat: no-repeat;
    border: 1px solid #CCCCCC;
    border-radius: 0;
    color: black;
    font-size: inherit;
    margin: 0;
    overflow: hidden;
    padding-top: 2px;
    padding-bottom: 2px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

select.form-select-field {
    scrollbar-color: #0D6938 #d7d7d7;
}

select.form-select-field {
    /* for Firefox */
    -moz-appearance: none;
    /* for Chrome */
    -webkit-appearance: none;
}

    /* For IE10 */
    select.form-select-field::-ms-expand {
        display: none;
    }


@media (max-width:575px) {
    select.form-select-width {
        width: 75%;
    }
}
@media (min-width:575px) {
    select.form-select-width {
        width: 96%;
    }
}
/*---------------------------------------------*/
@media (max-width:575px) {
    .table-width {
        margin-left: -15px;
    }
}
@media (max-width:992px) {
    .table-width {
        width: 100%
    }    
}
@media (min-width:992px) and (max-width:1400px) {
    .table-width {
        width: 92%
    }    
}
@media (min-width:1400px) and (max-width:1600px) {
    .table-width {
        width: 80%
    }    
}
@media (min-width:1600px) {
    .table-width {
        width: 64%;
    }
}

.left-column-width {
    width: 50%;
}
.right-column-width {
    width: 50%;
}

.table-width .form-td-label {
    line-height: 1;
}

.form-td-header {
    background-color: #3a855d;
    padding-left: 15px;
    color:white;
    border-top: 20px solid white;
    border-bottom: 10px solid white;
    width: 96%;
}

/*-------Input for file upload---------------*/
@media (max-width:575px) {
input.form-file-upload {
    width: unset !important;
    max-width: 200px;
    }
}
/*-------Certify section---------------*/
@media (max-width:575px) {    
label[for="_ctl0_uxViewArea__ctl0__ctl0_uxCertify"] {
    max-width: 320px;    
    float: none;
    }

input#_ctl0_uxViewArea__ctl0__ctl0_uxCertify {        
    display: block;
    margin-bottom: 20px;
    }
    
.certify-title strong {
    width: 320px !important;   
    display: block;
    }

    .form-td-header span {
        width: 320px !important;   
        display: block;
    } 
}

@media (max-width:575px) {
    .area-mb {
        margin-bottom: 20px;
    }
    .form-select-width {
        width: 100%;
    }
}





