/* Add here all your css styles (customizations) */

.uploaded {
    display: block;
    padding: 0;
    background: rgba(255,255,255,.9);
    font: 300 18px/27px 'Open Sans', Helvetica, Arial, sans-serif;
    text-align: center;
}

    .uploaded i {
        display: block;
        margin: 0 auto;
        border: 1px solid #9b0606;
        border-radius: 50%;
        font-size: 20px;
        color: inherit;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

.timedout {
    display: block;
    padding: 0;
    background: rgba(255,255,255,.9);
    font: 300 18px/27px 'Open Sans', Helvetica, Arial, sans-serif;
    text-align: center;
}

    .timedout i {
        display: block;
        margin: 0 auto;
        border: 1px solid #9b0606;
        border-radius: 50%;
        font-size: 20px;
        color: inherit;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }

.validation-summary-errors {
    color: red !important;
    padding-left: 10px;
}

    .validation-summary-errors ul {
        list-style-type: none;
        color: red;
        padding: 0;
    }

        .validation-summary-errors ul li {
            list-style-type: none;
            color: red;
            padding: 0;
        }

.validation-summary-valid {
    display: none;
}


.field-validation-error {
    color: #ff0000;
    display: block;
    font-size: 95%;
}

.field-validation-valid {
    display: none;
}

#dhtmltooltip {
    position: absolute;
    width: 300px;
    padding: 4px;
    border: 1px solid black;
    background-color: #EEEEEE;
    visibility: hidden;
    color: #000000;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 0.85em;
    z-index: 100;
}

#dhtmlpointer {
    position: absolute;
    left: -300px;
    z-index: 101;
    visibility: hidden;
}


#popupcontainer {
    width: 750px;
    margin: 0 auto;
}

#popupheader {
    height: 100px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #cccccc;
    margin-bottom: 20px;
}

#popupBodyMain {
    width: 750px;
    margin-top: 0px;
    margin-bottom: 20px;
}

    #popupBodyMain .popupPageHeading {
        font-size: 160%;
        font-weight: bold;
        color: #034f73;
        width: 100%;
        padding-bottom: 20px;
    }

    #popupBodyMain .popupPageContent {
        font-size: 100%;
        width: 100%;
        padding-bottom: 30px;
        padding-top: 20px;
        border-top-width: 1px;
        border-top-style: solid;
        border-top-color: #cccccc;
    }


.expand-padding {
    padding-right: 2px;
}

.panel {
    margin-bottom: 5px;
}

.panel-body {
    padding: 3px 15px;
}

.itemlist {
    font-size: 95%;
    line-height: 15px;
    font-weight: 100;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    margin-left: 5px;
    margin-right: 0;
    color: #fff;
}

.input-disabled {
    background-color: #EBEBE4;
    border: 1px solid #ABADB3;
    padding: 2px 1px;
}

.validation-summary-valid {
    display: none;
}

.validation-summary-errors {
    font-weight: bold !important;
    color: #ff0000 !important;
}

.field-validation-error {
    color: #ff0000;
    display: block;
    font-style: italic;
}

.field-validation-valid {
    display: none;
}

.customer-name {
    display: inline-block;
    text-align: right;
}

#grid .k-grid-header {
    padding: 0 !important;
}

#grid .k-grid-content {
    overflow-y: visible;
}

#loading
{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    z-index: 1000;
}

#loadingcontent {
    display: table;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

#loadingspinner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    text-align: center;
    font-size: larger;
    padding-top: 80px;
}

.sky-form .input .error {
    background: #fff0f0;
}

.sky-form .input + label {
    display: block;
    margin-top: 6px;
    padding: 0 1px;
    font-style: normal;
    font-size: 11px;
    line-height: 15px;
    color: #ee9393;
}

.custom_list_questionnaire {
    margin-left: 0; /* Adjust margin to align list properly */
    font-family: 'Open Sans', sans-serif;
    color: #666666;
    list-style: none; /* Remove default bullet points */
    counter-reset: list; /* Reset counter for custom numbering */
}

    .custom_list_questionnaire > li {
        line-height: 1.6em;
        padding-left: 25px; /* Space for "a)", "b)", etc. */
        padding-bottom: 10px;
        position: relative; /* To position ::before pseudo-element */
        counter-increment: list; /* Increment counter for each <li> */
    }

        .custom_list_questionnaire > li::before {
            content: counter(list, lower-alpha) ") "; /* Custom numbering */
            font-size: 14px;
            position: absolute;
            left: 0; /* Align the custom numbering to the left */
            padding-right: 10px; /* Space between the number and text */
            color: #666666; /* Same color as text */
        }

.definition {
    color: #666666;
    padding-top: 10px;
}

.bullet_list {
    margin-left: 20px;
    padding-left: 0;
    list-style-type: disc; /* Show bullet points for inner list */
    color: #666666;
}

    .bullet_list li {
        line-height: 1.6em;
        list-style-type: square;
    }