﻿:focus {
    outline: none;
}

.workformdropzone {
    transition: all .3s ease;
    cursor: copy;
}

    .workformdropzone:hover {
        border: 1px solid blue;
        background-color: #bebebe;
    }

.workformbutton {
    transition: all .3s ease;
    background-color: transparent;
    border: none;
    font-size: medium;
    text-transform: uppercase;
    font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
    cursor: pointer;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 7px;
}

    .workformbutton:hover {
        background-color: #bebebe;
    }

    .workformbutton:disabled {
        color: #dce2e2;
        background-color: transparent;
        cursor: default;
    }

.workformdeletebutton {
    transition: all .3s ease;
    background-color: transparent;
    border: none;
    font-size: medium;
    text-transform: uppercase;
    font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
    cursor: pointer;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    padding: 7px;
    color: red;
}

    .workformdeletebutton:hover {
        background-color: #bebebe;
    }

    .workformdeletebutton:disabled {
        color: #dce2e2;
        background-color: transparent;
        cursor: default;
    }

.workformfieldset {
}

    .workformfieldset fieldset {
        box-sizing: border-box;
        height: 100%;
        width: 100%;
        border: 1px solid darkgrey;
        padding: 0px;
    }

        .workformfieldset fieldset legend {
            margin-left: 5px;
        }

.workformlabel {
    box-sizing: border-box;
}

.workformfield {
    border: none;
    transition: all .3s ease;
}

.workformreadonlyfield {
    box-sizing: border-box;
    border: none;
    cursor: default !important;
}

    .workformreadonlyfield:focus {
        background-color: #f0f0f0 !important;
    }

.workformtextfield {
    box-sizing: border-box;
    background-color: #f0f0f0;
    cursor: text;
    resize: none;
}

    .workformtextfield:focus {
        background-color: #eaeaea !important;
    }

.workformnumberfield {
    box-sizing: border-box;
    background-color: #f0f0f0;
    cursor: text;
    padding-left: 2px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    padding-right: 20px !important;
}

    .workformnumberfield:focus {
        background-color: #eaeaea !important;
    }

.workforminputfield {
    box-sizing: border-box;
    background-color: #f0f0f0;
    border-bottom: 1px solid #b3b3b3;
    cursor: text;
    resize: none;
}

    .workforminputfield:focus {
        background-color: #eaeaea !important;
        border-bottom: 1px solid #5f6161;
    }

.workformspinnerbutton {
    transition: none;
}

.workformcheckbox {
    cursor: pointer;
}

    .workformcheckbox input {
        box-sizing: border-box;
        display: inline-block;
        color: inherit;
        vertical-align: middle;
        margin-left: 1px;
        width: 20px;
        height: 20px;
    }

        .workformcheckbox input:focus {
            padding: 2px;
            border: 2px solid #5f6161;
            box-shadow: 0 0 3pt 0pt;
            /* outline: 1px dotted darkslategrey; */
        }

    .workformcheckbox label {
        display: inline-block;
        vertical-align: middle;
        padding-left: 1px;
    }

.workformdatefield {
    cursor: text;
}

    .workformdatefield input {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

.workformmultiselectfield {
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
}

.workformselectfield {
    box-sizing: border-box;
    background-color: #f0f0f0;
    border-bottom: 1px solid #b3b3b3;
    cursor: pointer;
}

    .workformselectfield:focus {
        background-color: #eaeaea !important;
        border-bottom: 1px solid #5f6161;
    }

    .workformselectfield .selectOption {
    }

.workformframe {
    box-sizing: border-box;
    border: 1px solid #f3f3f3;
}

.workformerrorstate {
    outline: 2px dotted red;
}

.workformerrortext {
    background-color: white;
    padding: 3px;
    border-radius: 3px;
    z-index: 5000000;
    font-size: small;
    color: red;
    border: 1px solid #00014A;
    -webkit-box-shadow: 4px 4px 10px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow: 4px 4px 10px 0px rgba(50, 50, 50, 0.75);
    box-shadow: 4px 4px 10px 0px rgba(50, 50, 50, 0.75);
    max-width: fit-content;
    position: absolute;
}

.mobileworkformerrortext {
    font-size: small;
    color: red;
}

/* Neutral button for workform workflow viewer */
.stepaccentbutton {
    transition: all .3s ease;
    background-color: #f5f5f5;
    color: #333333;
    border: 1px solid #dedede;
    font-size: medium;
    text-transform: uppercase;
    font-family: Roboto-Regular, Arial, Helvetica, sans-serif;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
    padding: 7px;
}

    .stepaccentbutton:hover {
        background-color: #d0d0d0;
    }

    .stepaccentbutton:disabled {
        color: #999999;
        background-color: transparent;
        cursor: default;
    }

/* Styles for the .net standard components */

.standardgridview {
    border: none !important;
}

    .standardgridview td {
        border: none !important;
    }

    .standardgridview th {
        border: none !important;
        font-weight: normal !important;
    }

.standardgridviewrow {
    border: none !important;
}

    .standardgridviewrow td {
        border: none !important;
        font-size: 14px;
    }

.standardgridviewheader {
}

    .standardgridviewheader th {
        text-align: left;
        border: none;
        font-size: 14px;
        font-weight: normal;
        font-style: italic;
        text-transform: uppercase;
    }

        .standardgridviewheader th a {
            text-decoration: none;
            color: #000000;
        }

.standardgridviewselectedrow {
    font-size: 14px;
}

    .standardgridviewselectedrow td {
        background-color: #f5f5f5;
        border: none;
    }

.standardgridviewpager {
    border: none;
}

    .standardgridviewpager td {
        border: none;
    }

    .standardgridviewpager a {
        text-decoration: none;
        color: #999999;
    }

.fglightgreycontent {
    transition: all .3s ease;
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
}

.fggreycontent {
    transition: all .3s ease;
    background-color: #f5f5f5;
    border: 1px solid #dedede;
}

.roundedsmall {
    border-bottom-right-radius: 10px;
}

/* Fix the size of a step element */
.tgfixedsize {
    min-height: 80px;
    min-width: 300px;
}

.uppercase {
    text-transform: uppercase;
}

table.fixheader tbody {
    display: inline-flex;
}

/* Navigation bar */
.navdecoratedworkformitem {
    background-color: #f3f3f3 !important;
    color: black !important;
}

    .navdecoratedworkformitem :hover {
        color: #f3f3f3 !important;
    }

/* asp.net runtime classes */
.aspNetDisabled label {
    opacity: 0.4;
}

/* Standard control adjustments */
.RadInput_Felix .riUp, .RadInput .riDown {
    width: fit-content;
}

.RadInput_Felix .riSelect {
    top: -1px !important;
}

.workformnumberfield {
    box-sizing: border-box;
}