/*@import "fonts/inter/inter.css";*/

:root {
    font-family: 'Inter', sans-serif;
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: 'Inter', sans-serif;
    }
}

.content-box:after, .clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

.content-box, .clearfix {
    display: inline-block;
    zoom: 1;
}

.content-box, .clearfix {
    display: block;
    zoom: 1;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 13px;
    height: 100%;
}

body > form {
    height: 100%;
    overflow: hidden;
}

th {
    font-weight: normal;
}

td input,
td select {
    margin: 0;
}

td > span > input[type=checkbox] {
    margin: 4px;
}

a img {
    border: none;
    outline: none;
}

.error-message-label {
    display: block;
    margin: 8px 0;
    color: Red;
}

body.login {
    background-color: #6D10B4;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.login form {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .login form > div:nth-child(1) {
        display: none;
    }

    .login form #branding {
    }

    .login form #application-name {
        letter-spacing: 0.68px;
        font-size: 27px;
        font-weight: 800;
        margin-bottom: 48px;
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .login form #branding #application-icon {
        display: block;
        width: 166px;
        height: 166px;
        background-repeat: no-repeat;
        background-image: url(./images/icon/icon-166x166.png);
        background-image: image-set(url(./images/icon/icon-166x166.png) 1x, url(./images/icon/icon-166x166@2x.png) 2x);
    }

        .login form #branding #application-icon img {
            display: none;
        }

    .login form #fields {
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row-start: 2;
        grid-row-end: 5;
        display: grid;
        grid-template-rows: repeat(3, 1fr);
    }

        .login form #fields .field {
            position: relative;
            margin-bottom: 40px;
        }

            .login form #fields .field label {
                display: none;
            }

            .login form #fields .field input[type=text],
            .login form #fields .field input[type=password] {
                width: 482px;
                border-radius: 4px;
                opacity: 0.9;
                appearance: none;
                border: none;
                padding: 22px 32px;
            }

            .login form #fields .field.submit {
                background-color: transparent;
                display: flex;
                align-items: center;
                margin-bottom: 0;
            }

                .login form #fields .field.submit input[type="button"] {
                    width: 198px;
                    height: 50px;
                    border-radius: 4px;
                    color: #fff;
                    background: #a770d2;
                    border: none;
                }

                    .login form #fields .field.submit input[type="button"]:hover,
                    .login form #fields .field.submit input[type="button"]:active {
                        background: #a770d2;
                        border: none;
                    }

    .login form #application-version {
        opacity: 0.8;
        grid-column-start: 3;
        grid-column-end: 4;
        grid-row-start: 3;
        grid-row-end: 5;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .login form .error-message {
        display: block;
        background-color: #B81800;
        border: 1px solid #FFFFFF;
        color: #FFFFFF;
        height: 40px;
        line-height: 40px;
        text-align: center;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }

input[type=submit],
input[type=button] {
    display: inline-block;
    zoom: 1;
    background-color: #EEEEEE;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F4F4F4, endColorstr=#E9E9E9);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F4F4F4, endColorstr=#E9E9E9)";
    zoom: 1;
    border: 1px solid #c5c5c5 !important;
    padding: 7px 20px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    outline-width: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    border-radius: 2px !important;
    opacity: 1
}

    input[type=submit]:hover,
    input[type=button]:hover {
        background: linear-gradient(top, #FFFFFF, #EEEEEE);
        background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE);
        background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#EEEEEE));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#EEEEEE);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#EEEEEE)";
        zoom: 1;
        border: 1px solid #666;
        outline: none;
        padding: 4px 8px;
    }

    input[type=submit]:active,
    input[type=button]:active {
        background: linear-gradient(top, #DDDDDD, #EEEEEE);
        background: -moz-linear-gradient(top, #DDDDDD, #EEEEEE);
        background: -webkit-gradient(linear, left top, left bottom, from(#DDDDDD), to(#EEEEEE));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#EEEEEE);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#EEEEEE);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#EEEEEE)";
        zoom: 1;
        border: 1px solid #333;
        outline: none;
        padding: 4px 8px;
        -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    }

    input[type=submit].small,
    input[type=button].small {
        font-size: 90%;
        padding: 2px 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }

    input[type=submit].green-button,
    input[type=button].green-button {
        background-color: #e5e6e7;
        background: linear-gradient(top, #e5e6e7, #e5e6e7);
        background: -moz-linear-gradient(top, #e5e6e7, #e5e6e7);
        background: -webkit-gradient(linear, left top, left bottom, from(#e5e6e7), to(#e5e6e7));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e6e7, endColorstr=#e5e6e7);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e6e7, endColorstr=#e5e6e7)";
        zoom: 1;
    }

    input[type=submit].yellow-button,
    input[type=button].yellow-button {
        background-color: #00AE9E;
        background: linear-gradient(top, #00AE9E, #00AE9E);
        background: -moz-linear-gradient(top, #00AE9E, #00AE9E);
        background: -webkit-gradient(linear, left top, left bottom, from(#00AE9E), to(#00AE9E));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00AE9E, endColorstr=#00AE9E);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FEFC9A, endColorstr=#F7CF3B)";
        zoom: 1;
        color: white;
        border: 1px solid #00AE9E !important;
    }

    input[type=submit].red-button,
    input[type=button].red-button {
        background-color: #d9534f;
        background: linear-gradient(top, #c12e2a, #c12e2a);
        background: -moz-linear-gradient(top, #c12e2a, #c12e2a);
        background: -webkit-gradient(linear, left top, left bottom, from(#c12e2a), to(#c12e2a));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#c12e2a, endColorstr=#c12e2a);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#c12e2a, endColorstr=#c12e2a)";
        zoom: 1;
        color: #fff;
    }

.page {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: auto;
}

#header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #232E83 !important;
    background-color: #232E83 !important;
    background-image: none !important;
    background-repeat: repeat-x;
    flex: 0 0 auto;
}

#header > * {
    flex: 1 0 0;
    overflow: hidden;
}

    #header .app-branding {
        display: flex;
        align-items: center;
    }

    #header .app-branding #application-icon {
        display: block;
        margin: 8px;
        width: 64px;
        height: 64px;
    }

    #header .app-branding #application-icon a {
        display: block;
            width: 64px;
            height: 64px;
            position: relative;
            z-index: 1;
        }

        #header .app-branding #application-icon a img {
            display: block;
                width: 64px;
                height: 64px;
                background-image: url(./images/Icon-64x64.png);
                background-repeat: no-repeat;
            }

            #header .app-branding #application-icon img {
            }

            #header .app-branding h1 {
                margin: 0;
        padding: 0;
        font-size: 16px !important;
        font-weight: normal;
        color: white !important;
        text-shadow: none !important;
        letter-spacing: 0.4px;
    }

    #header .app-branding h1 #application-name {
        font-weight: bold;
        }

    #header h2 {
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 20px !important;
        color: white !important;
        text-shadow: none !important;
        text-transform: uppercase;
        letter-spacing: 0.5px !important;
    }

    #header #user-info {
        font-size: 120%;
        font-weight: normal;
        color: white !important;
        text-shadow: none !important;
        text-align: right;
        padding-right: 8px;
    }

#container {
    flex: 1 0 0;
    display: flex;
    flex-direction: row;
    overflow: auto;
}

#sidebar {
    width: 229px;
    border-right: 1px solid #7F7F7F;
    background-color: #232E83 !important;
    background-image: none !important;
    background-repeat: repeat-y;
    z-index: 3;
    overflow: auto;
}

    #sidebar a {
        color: #fff !important;
        text-decoration: none;
        font-size: 12px !important;
        letter-spacing: 0.3px !important;
    }

        #sidebar a:hover {
            text-decoration: underline;
        }

        #sidebar a:active {
            text-shadow: 0 0 1px #fff;
        }

    #sidebar .section {
        margin: 20px 0;
        padding: 0 8px;
    }

        #sidebar .section h3 {
            margin: 0;
            color: #fff !important;
            font-size: 14px !important;
            font-weight: bold !important;
            text-transform: uppercase;
        }

        #sidebar .section ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
            padding-left: 20px;
        }

            #sidebar .section ul li {
                margin: 8px 0;
            }

.authority-dropdownlist {
    margin: 20px 8px 0;
    width: 182px;
        border: 1px solid #E3E3E3;
    border-radius: 2px;
    opacity: 1;
    padding: 5px;
}

#main {
    flex: 1 0 0;
    background-color: #FDFFF7;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

    #main #content {
        margin: 20px;
    }

        #main #content.toolbar-hidden {
        }

        #main #content .content-box {
            clear: both;
            margin-bottom: 8px;
        }

            #main #content .content-box .details-view,
            #main #content .content-box .fields-view,
            #main #content .content-box .bulleted-list {
                float: left;
                margin-right: 8px;
            }

        #main #content #content-view {
            margin-right: 150px;
            padding: 20px;
        }

        #main #content #content-header {
        }

        #main #content #content-inner {
        }

#toolbar {
    height: 52px !important;
    box-sizing: border-box;
    padding: 6px 20px;
    overflow: auto;
    background-color: #F3E56A;
    background-image: url(./images/ToolbarBackgroundGradient.png);
    background-repeat: repeat-y;
    z-index: 2;
    background: none !important;
    border-left: none !important;
    border-bottom: 1px solid #bbb;
    flex: 0 0 52px;
}

    #toolbar .section {
        display: block;
    }

    #toolbar ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
    }

        #toolbar ul li {
            display: inline-block;
        }

            #toolbar ul li input[type=button],
            #toolbar ul li input[type=submit] {
            }

    #toolbar #section-toolbar-top {
        float: right;
    }

    #toolbar #section-toolbar-bottom {
        float: left;
    }

    #toolbar #section-toolbar-top ul {
    }

        #toolbar #section-toolbar-top ul li {
            float: left;
            margin-left: 10px;
        }

    #toolbar #section-toolbar-bottom ul {
    }

        #toolbar #section-toolbar-bottom ul li {
            float: left;
            margin-right: 10px;
        }

        #main > div:nth-child(2) {
            overflow-y: auto;
        }
        
.fields-view {
    margin-bottom: 8px;
}

.details-view {
    width: 320px;
    margin-bottom: 8px;
}

    .fields-view,
    .fields-view table,
    .details-view,
    .details-view table {
        border-collapse: collapse;
        border: 1px solid #BCBCBC;
    }

        .fields-view table,
        .details-view table {
            width: 100%;
        }

        .fields-view tr,
        .fields-view td,
        .fields-view th,
        .details-view tr,
        .details-view td,
        .details-view th {
            padding: 0;
            margin: 0;
            border-spacing: 0;
            border-width: 0;
        }

        .fields-view .details-view-field-header,
        .details-view .details-view-field-header,
        .fields-view .field th {
            border: 0.8px solid #BCBCBC !important;
            background-color: #6D10B4 !important;
            padding: 4px 8px;
            background-image: none !important;
            background-repeat: repeat-x;
            /*background-position: left top;*/
            vertical-align: middle;
        }

        .details-view .details-view-field-header {
            width: 40%;
        }

        .fields-view .details-view-field-item,
        .details-view .details-view-field-item,
        .fields-view .field td {
            border: 1px solid #bcbcbc !important;
            background-color: #FFFFFF;
            padding: 4px 8px;
        }

            .fields-view .details-view-field-item.details-view-field-item--help-text,
            .details-view .details-view-field-item.details-view-field-item--help-text {
                /*background-color: #ffc8c8;*/
            }

            .fields-view .details-view-field-item-textarea,
            .details-view .details-view-field-item-textarea,
            .fields-view .field td.textarea {
                border: 1px solid #bcbcbc !important;
                background-color: #FFFFFF;
                height: auto;
                padding: 4px 8px;
            }

.content-box input[type=button],
.content-box input[type=submit] {
    outline: none;
}

.table-view {
    border-collapse: collapse;
    width: 100%;
}

    .table-view table {
        border-collapse: separate;
    }

thead th {
    background-color: #6D10B4 !important;
    background-image: none !important;
    background-repeat: repeat-x;
}

#application-icon-empty {
    display: block;
    width: 150px;
    height: 150px;
    background-image: none !important;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -75px;
}

.buttonset {
    text-align: center;
}

.row-template {
    border: 1px solid #bbb !important;
    padding: 8px !important;
    font-size: 100%;
    font-family: inherit;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    width: 300px;
    margin-top: -300px;
}

.row-edit {
    width: 100%;
}

    .row-edit table {
        width: 100%;
        border-collapse: collapse;
    }

.table-view div {
    position: relative;
}

.loading-indicator {
    display: inline;
    zoom: 1;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.details-view--medicine-info-form {
    width: 470px;
}


    .details-view--medicine-info-form .details-view-field-header {
        width: 30%;
    }

.medicine-info.details-view .details-view-field-header {
    width: 45%;
}

.image3x4-wrapper {
    min-width: 120px;
    min-height: 90px;
    margin-bottom: 8px;
}

.image3x4 {
    max-width: 120px;
    max-height: 90px;
}

.upload-button-wrapper {
    margin-top: 8px;
}

.upload-button {
    width: 200px;
}

.image-file-input {
    width: 100px;
}

.mail-order-list-wrapper {
    padding: 20px;
}

.mail-order-list {
    width: 100%;
}

    .mail-order-list th,
    .mail-order-list td {
        padding: 5px 5px 4px;
    }

.mail-token-list {
    width: 100%;
}

    .mail-token-list tr th,
    .mail-token-list tr td {
        border: 1px solid #BCBCBC;
        padding: 5px 5px 4px;
    }

    .mail-token-list tr th {
        background-color: #F7CF3B;
        /*
    background-image: -khtml-gradient(linear, left top, left bottom, from(#FEFA96), to(#F7D13F));
    background-image: -moz-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: -ms-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FEFA96), color-stop(100%, #F7D13F));
    background-image: -webkit-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: -o-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: linear-gradient(top, #FEFA96, #F7D13F);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FEFA96', endColorstr='#F7D13F', GradientType=0);
    */
    }

    .mail-token-list tr td {
        background-color: #fff;
    }

table.form {
    border-collapse: collapse;
    min-width: 480px;
}

    table.form thead tr th {
        background-image: none;
        background-color: transparent;
        text-align: left;
    }

    table.form thead tr {
    }

    table.form th,
    table.form td {
        padding: 5px 5px 4px;
        border: 1px solid #BCBCBC;
        z-index: -1;
        background-color: #fff;
    }

    table.form thead {
        background-color: #F7CF3B;
        background-image: linear-gradient(top, #FEFA96, #F7D13F);
    }

    table.form tbody th {
        text-align: right;
        width: 30%;
    }

    table.form input,
    table.form textarea,
    table.form select {
        color: #808080;
        border: 1px solid #ccc;
    }

    table.form select {
        padding: initial;
    }

    table.form input.mini {
        width: 60px;
    }

    table.form input.small {
        width: 90px;
    }

    table.form input.medium {
        width: 150px;
    }

    table.form input.large {
        width: 210px;
    }

    table.form input.xlarge {
        width: 270px;
    }

    table.form input.xxlarge {
        width: 530px;
    }

.alerts-message {
    color: #429F53;
    padding: 5px 5px 4px;
    display: block;
    margin-bottom: 8px;
}

td.mail-order-cassette-sample-tablet-row {
    background-color: #D4F8DC !important;
}

td.mail-order-non-existent-medicine-code-row {
    background-color: #FFC6A5 !important;
}

.parts-order-status-view {
    width: 100px;
    text-align: center;
}

td.details-view-field-item.parts-order-status {
    color: white;
}

.parts-order-div-calc.details-view .details-view-field-item {
    width: 50px;
    text-align: center;
}

.parts-order-div-calc.details-view .details-view-field-header {
    background: #ddd;
    width: 150px;
}

.parts-order-div-calc.details-view {
    width: auto;
}

div.update-progress-indicator {
    width: 220px;
    height: 19px;
    background-image: url(./images/UpdateProgress.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

.image-button {
    vertical-align: middle;
}

.details-view-field-header-text-align-center,
.details-view-field-item-text-align-center {
    text-align: center;
}

.validation-errors-list li {
    color: Red;
}

#medicine-information-header {
    overflow: hidden;
}

#medicine-information-search-form {
    width: 50%;
    float: left;
}

#medicine-information-calibration {
    width: 50%;
    float: right;
}

#medicine-information-content {
    clear: both;
}

#medicine-information-content-inner {
    padding: 20px;
}

#medicine-information-search-form-inner {
    padding: 20px;
}

#medicine-information-calibration-inner {
    padding: 20px;
}

table.form-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
}

    table.form-table tr > th,
    table.form-table tr > td {
        padding: 4px 8px;
        border: 1px solid #BCBCBC;
    }

    table.form-table tr th {
        font-weight: normal;
        text-align: left;
        background-color: #6D10B4 !important;
        background-image: none !important;
        background-repeat: repeat-x;
    }

        table.form-table tr th a {
            text-decoration: underline;
        }

    table.form-table tr td {
        background-color: #ffffff;
    }

        table.form-table tr td input[type=text],
        #medicine-information-search-form table tr td textarea {
            border: 1px solid #bbb;
        }

.grid-view-table,
.medicine-information-table {
    width: 100%;
    margin-bottom: 14px;
}

    .grid-view-table tr th,
    .grid-view-table tr td,
    .medicine-information-table tr th,
    .medicine-information-table tr td {
        padding: 4px 8px;
    }

    .grid-view-table tr th,
    .medicine-information-table tr th {
        background-color: #6D10B4 !important;
        background-image: none !important;
        background-repeat: repeat-x;
        border: 0.800000011920929px solid #BCBCBC;
        opacity: 1;
    }

    .grid-view-table tr td,
    .medicine-information-table tr td {
        background-color: #fff;
    }

    .medicine-information-table tr.medicine-information-table-disabled-row td,
    .grid-view-table tr.grid-view-table-disabled-row td {
        background-color: lightgray;
    }

    .grid-view-table tr.grid-view-table-selected-row td,
    .grid-view-table tr.cassette-row-selected td,
    .medicine-information-table tr.medicine-information-table-selected-row td,
    .medicine-information-table tr.medicine-information-table-disabled-row.medicine-information-table-selected-row td,
    .grid-view-table tr.grid-view-table-disabled-row.grid-view-table-selected-row td {
        background-color: lightblue;
    }


.shape-pattern-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

    .shape-pattern-table tr th,
    .shape-pattern-table tr td {
        border: 1px solid #BCBCBC;
        padding: 2px;
    }

    .shape-pattern-table tbody tr td {
        background-color: White;
        width: 33.3%;
    }

        .shape-pattern-table tbody tr td img {
            width: 100%;
        }

.medicine-shape-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

    .medicine-shape-table tr td,
    .medicine-shape-table tr th {
        border: 1px solid #BCBCBC;
        padding: 2px;
    }

    .medicine-shape-table tr th {
        background-color: #F7D13F;
        background-image: url(./images/TableViewHeaderBackgroundGradient.png);
        background-repeat: repeat-x;
    }

    .medicine-shape-table tr td {
        text-align: center;
        background-color: #FFFFFF;
        width: 33.3%;
    }

        .medicine-shape-table tr td input[type=text] {
            border: 1px solid #bbb;
            text-align: center;
        }

.search-past-calibration-shape-pattern-drop-down-list {
    margin-bottom: 10px;
}

.grid-view-table .command-field,
.medicine-information-table .command-field {
    background-color: #f48025 !important;
    width: 1em;
}

    .grid-view-table .command-field a,
    .medicine-information-table .command-field a {
        font-weight: bold;
        text-decoration: none;
        color: White;
    }

.c-match-importer-error-message-label {
    display: block;
    margin: 8px 0;
}

.c-match-importer-result-message-label {
    display: block;
    margin: 8px 0;
}

.c-match-importer-error-message-list {
    margin: 8px 0;
}

.matching {
    display: inline-block;
    padding: 0 8px;
    border: 1px solid #bbb;
    margin: 20px 0;
    border-radius: 4px;
    background-color: white;
}

.note-text-box {
    width: 100%;
    height: 200px;
}

.content-cab-pattern-suggestion .table input[type="text"] {
    text-align: center !important;
}

.progress-panel {
    margin: 20px;
    overflow: auto;
}

.progress-label {
    display: block;
    height: 20px;
    line-height: 20px;
    float: left;
    padding-left: 20px;
}

.progress {
    height: 20px;
    background-color: white;
    border: 1px solid #ddd;
    width: 300px;
    float: left;
}

    .progress > .progress-bar {
        height: 100%;
        background-color: #0094ff;
        width: 0%;
    }

.jsgrid .jsgrid-grid-header .jsgrid-table .jsgrid-header-row .jsgrid-header-cell {
    background-color: #6D10B4 !important;
    background-image: none !important;
    background-repeat: repeat-x;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#grid-toolbar {
    padding: 10px 20px;
    background-color: #ddd;
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    overflow: hidden;
    text-align: right;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.visibility-hidden {
    display: none !important;
}

.jsgrid {
    background-color: #fff;
}

    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row .jsgrid-cell,
    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row .jsgrid-cell {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row.mail-order-non-existent-medicine-code-row .jsgrid-cell,
    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row.mail-order-non-existent-medicine-code-row .jsgrid-cell {
        background-color: #FFC6A5 !important;
    }

    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row.calibrated .jsgrid-cell,
    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row.calibrated .jsgrid-cell {
        background-color: #ffccff !important;
    }

.jsgrid-alt-row .jsgrid-cell.fixed,
.jsgrid-row .jsgrid-cell.fixed {
    background-color: #CD201B2E;
}
.jsgrid-alt-row .jsgrid-cell.new-order, .jsgrid-row .jsgrid-cell.new-order {
    background-color: #6d10b454 !important;
}

.jsgrid-alt-row .jsgrid-cell.new-order,
.jsgrid-row .jsgrid-cell.new-order {
    background-color: #6d10b454 !important;
}

.jsgrid-selected-row > .jsgrid-cell.fixed,
.jsgrid-selected-row > .jsgrid-cell.new-order,
.jsgrid-selected-row > .jsgrid-cell {
    background: #E9DBF4;
    border-color: #E9DBF4;
}


.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row .jsgrid-cell input[type="button"],
.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row .jsgrid-cell input[type="submit"],
.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row .jsgrid-cell input[type="button"],
.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row .jsgrid-cell input[type="submit"] {
    padding: 2px 4px;
}

.jsgrid-nodata-row {
    background-color: #fff;
}

    .jsgrid-nodata-row td {
        text-align: center;
        padding: 5px;
    }

.radio-button input[type="radio"] {
    vertical-align: top;
}

.modal-recalibration-attachment {
    padding: 2rem;
}

    .modal-recalibration-attachment .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
    }

        .modal-recalibration-attachment .modal-dialog .modal-content {
            height: 100%;
        }

.thumbnail-recalibration-attachment {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    background-color: #000;
}

.image-thumbnail-recalibration-attachment {
    max-width: 100px;
    max-height: 100px;
}

.file-preview {
    z-index: 2000;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.50);
}

    .file-preview .file-preview-content {
        height: 100%;
        width: 100%;
        background-color: #000;
        display: flex;
        flex-direction: column;
    }

    .file-preview .file-preview-header {
        height: 4rem;
        display: flex;
        align-items: center;
    }

        .file-preview .file-preview-header .file-preview-header-title {
            flex: 1 0 0%;
            color: #fff;
            padding: .5rem 1rem;
        }

        .file-preview .file-preview-header .file-preview-header-close-button {
            flex: 0 1 auto;
            background: none;
            color: inherit;
            border: none;
            padding: 0;
            font: inherit;
            cursor: pointer;
            outline: inherit;
            color: #fff;
            padding: .5rem 2rem;
            font-size: 2rem;
        }

    .file-preview .file-preview-body {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .file-preview img {
        max-width: 100%;
        max-height: 100%;
    }

    .file-preview video {
        max-width: 100%;
        max-height: 100%;
    }


    .h3, h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 7px;
    }
    .content-inner, p {
        font-size: 14px;
        margin-bottom: 28px;
        color: #353535;
    }

    .grid-view-table tr td:nth-child(5) {
        background-color: #CD201B2E !important;
    }

    .btn-danger {
        background-image: -webkit-linear-gradient(top,#CD201B 0,#CD201B 100%);
        background-image: -o-linear-gradient(top,#CD201B 0,#CD201B 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#CD201B),to(#CD201B));
        background-image: linear-gradient(to bottom,#CD201B 0,#CD201B 100%) !important;
        border-color: #CD201B !important;
        background-color: #CD201B !important;
    }

    .btn-default:hover {
        color: white;
        background-color: #F48025;
        background-image: linear-gradient(to bottom,#F48025 0,#F48025 100%);
        border-color: #F48025 !important;
    }


    textarea#MainContent_NoteTextBox {
        height: 48px !important;
    }
    div#medicine-information {
        margin-top: 23px;
    }

    th a:hover{
        color: white !important;
    }
    th a:active{
        color: white !important;
    }
    th a:focus{
        color: white !important;
    }
    .btn-primary {
        background-image: linear-gradient(to bottom,#F48025 0,#F48025 100%) !important;
        border-radius: 2px;
        border: 1px solid #F48025 !important;
        background-color: #F48025 !important;
        padding: 7px 20px;
    }
    .h2, h2:nth-child(1) {
        font-size: 24px;
        font-weight: 600;
        color: #353535;
        margin-top: 62px;
        margin-bottom: 27px;
    }
    .btn-group-sm>.btn, .btn-sm {
        padding: 7px 10px;
        font-size: 12px;
        line-height: 1.5;
        border-radius: 2px;
    }
    .btn-default {
        background-image: linear-gradient(to bottom,#E5E6E7 0,#E5E6E7 100%);
        border-color: #c5c5c5;
    }
    .btn-default:hover {
        color: white;
        background-color: #f48025;
        background-image: linear-gradient(to bottom,#f48025 0,#f48025 100%);
        border-color: #f48025 !important;
    }
    
    .btn-default:focus, .btn-default:hover {
        background-color: #f48025 !important;
        background-position: 0 -15px;
    }
    input#ToolbarContent_Btn_Accept {
        background-color: #f48025 !important;
        border: 1px solid #f48025 !important;
        color: white !important;
    }
    #section-toolbar-top>ul>li input[type=submit]:hover,  #section-toolbar-top>ul>li input[type=button]:hover {
        background: #f48025 ;
    }
    .details-view .details-view-field-item {
        border: 1px solid#bcbcbc !important;
        background-color: #FFFFFF;
        color: #222;
    }
    button.btn.btn-default.btn-xs.btn-block {
        background-image: linear-gradient(to bottom,#F48025 0,#F48025 100%) !important;
        border-color: #F48025 !important;
        color: #fff !important;
        text-shadow: none !important;
    }
    input#ToolbarContent_Btn_Start {
        background-color: #f48025;
        border: 1px solid #f48025 !important;
        color: white;
    }
    .btn-info {
        background-image: -webkit-linear-gradient(top,#4353D4 0,#4353D4 100%);
        background-image: -o-linear-gradient(top,#4353D4 0,#4353D4 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#4353d4),to(#4353d4)) !important;
        background-image: linear-gradient(to bottom, 0,#4353D4 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        background-repeat: repeat-x;
        border-color: #4353D4;
    }
    .btn-info {
        color: #fff;
        background-color: #4353D4 !important;
        border-color: #4353D4 !important;
    }
    button.btn.btn-info.btn-xs.btn-block:hover {
        background-color: #4353D4 !important;
    }
    btn-info:focus, .btn-info:hover {
        background-color: #4353D4 !important;
        background-position: 0 -15px;
    }
   
    input[type=submit].green-button:hover, input[type=button].green-button:hover {
        background-color: #7CB53A;
        background: linear-gradient(top, #7CB53A, #7CB53A);
        background: -moz-linear-gradient(top, #7CB53A, #7CB53A);
        background: -webkit-gradient(linear, left top, left bottom, from(#7CB53A), to(#7CB53A));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7CB53A, endColorstr=#7CB53A);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e6e7, endColorstr=#e5e6e7)";
        zoom: 1;
        color: white;
        border: 1px solid #7CB53A !important;
    }
    
    .btn-default:active {
        background-color: /*@import "fonts/inter/inter.css";*/

:root {
    font-family: 'Inter', sans-serif;
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: 'Inter', sans-serif;
    }
}

.content-box:after, .clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

.content-box, .clearfix {
    display: inline-block;
    zoom: 1;
}

.content-box, .clearfix {
    display: block;
    zoom: 1;
}

html {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-size: 13px;
}

th {
    font-weight: normal;
}

td input,
td select {
    margin: 0;
}

td > span > input[type=checkbox] {
    margin: 4px;
}

a img {
    border: none;
    outline: none;
}

.error-message-label {
    display: block;
    margin: 8px 0;
    color: Red;
}

body.login {
    background-color: #6D10B4;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.login form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

    .login form > div:nth-child(1),
    .login form > div:nth-child(5) {
        display: none;
    }

    .login form #branding {
    }

    .login form #application-name {
        letter-spacing: 0.68px;
        font-size: 27px;
        font-weight: 800;
        margin-bottom: 48px;
        grid-column-start: 2;
        grid-column-end: 4;
    }

    .login form #branding #application-icon {
        display: block;
        width: 166px;
        height: 166px;
        background-repeat: no-repeat;
        background-image: url(./images/icon/icon-166x166.png);
        background-image: image-set(url(./images/icon/icon-166x166.png) 1x, url(./images/icon/icon-166x166@2x.png) 2x);
    }

        .login form #branding #application-icon img {
            display: none;
        }

    .login form #fields {
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row-start: 2;
        grid-row-end: 5;
        display: grid;
        grid-template-rows: repeat(3, 1fr);
    }

        .login form #fields .field {
            display: none;
        }

            .login form #fields .field label {
                display: none;
            }

            .login form #fields .field input[type=text],
            .login form #fields .field input[type=password] {
                width: 482px;
                border-radius: 4px;
                opacity: 0.9;
                appearance: none;
                border: none;
                padding: 22px 32px;
            }

            .login form #fields .field.submit {
                background-color: transparent;
                display: flex;
                align-items: center;
                margin-bottom: 0;
            }

                .login form #fields .field.submit input[type="button"] {
                    width: 198px;
                    height: 50px;
                    border-radius: 4px;
                    color: #fff;
                    background: #a770d2;
                    border: none;
                }

                    .login form #fields .field.submit input[type="button"]:hover,
                    .login form #fields .field.submit input[type="button"]:active {
                        background: #a770d2;
                        border: none;
                    }

    .login form #application-version {
        opacity: 0.8;
        grid-column-start: 3;
        grid-column-end: 4;
        grid-row-start: 3;
        grid-row-end: 5;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .login form .error-message {
        display: block;
        background-color: #B81800;
        border: 1px solid #FFFFFF;
        color: #FFFFFF;
        height: 40px;
        line-height: 40px;
        text-align: center;
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }

input[type=submit],
input[type=button] {
    display: inline-block;
    zoom: 1;
    background-color: #EEEEEE;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#F4F4F4, endColorstr=#E9E9E9);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#F4F4F4, endColorstr=#E9E9E9)";
    zoom: 1;
    border: 1px solid #c5c5c5 !important;
    padding: 7px 20px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    outline-width: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    border-radius: 2px !important;
    opacity: 1
}

    input[type=submit]:hover,
    input[type=button]:hover {
        background: linear-gradient(top, #FFFFFF, #EEEEEE);
        background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE);
        background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#EEEEEE));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#EEEEEE);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#EEEEEE)";
        zoom: 1;
        border: 1px solid #666;
        outline: none;
        padding: 4px 8px;
    }

    input[type=submit]:active,
    input[type=button]:active {
        background: linear-gradient(top, #DDDDDD, #EEEEEE);
        background: -moz-linear-gradient(top, #DDDDDD, #EEEEEE);
        background: -webkit-gradient(linear, left top, left bottom, from(#DDDDDD), to(#EEEEEE));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#EEEEEE);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#EEEEEE);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#DDDDDD, endColorstr=#EEEEEE)";
        zoom: 1;
        border: 1px solid #333;
        outline: none;
        padding: 4px 8px;
        -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.2);
    }

    input[type=submit].small,
    input[type=button].small {
        font-size: 90%;
        padding: 2px 8px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
    }

    input[type=submit].green-button,
    input[type=button].green-button {
        background-color: #e5e6e7;
        background: linear-gradient(top, #e5e6e7, #e5e6e7);
        background: -moz-linear-gradient(top, #e5e6e7, #e5e6e7);
        background: -webkit-gradient(linear, left top, left bottom, from(#e5e6e7), to(#e5e6e7));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e6e7, endColorstr=#e5e6e7);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e6e7, endColorstr=#e5e6e7)";
        zoom: 1;
    }

    input[type=submit].yellow-button,
    input[type=button].yellow-button {
        background-color: #00AE9E;
        background: linear-gradient(top, #00AE9E, #00AE9E);
        background: -moz-linear-gradient(top, #00AE9E, #00AE9E);
        background: -webkit-gradient(linear, left top, left bottom, from(#00AE9E), to(#00AE9E));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00AE9E, endColorstr=#00AE9E);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#FEFC9A, endColorstr=#F7CF3B)";
        zoom: 1;
        color: white;
        border: 1px solid #00AE9E !important;
    }

    input[type=submit].red-button,
    input[type=button].red-button {
        background-color: #d9534f;
        background: linear-gradient(top, #c12e2a, #c12e2a);
        background: -moz-linear-gradient(top, #c12e2a, #c12e2a);
        background: -webkit-gradient(linear, left top, left bottom, from(#c12e2a), to(#c12e2a));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#c12e2a, endColorstr=#c12e2a);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#c12e2a, endColorstr=#c12e2a)";
        zoom: 1;
        color: #fff;
    }

#header {
    height: 79px;
    border-bottom: 1px solid #232E83 !important;
    background-color: #232E83 !important;
    background-image: none !important;
    background-repeat: repeat-x;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

    #header #application-icon {
        display: block;
        float: left;
        margin: 8px;
        width: 64px;
        height: 64px;
    }

        #header #application-icon a {
            display: block;
            width: 64px;
            height: 64px;
            position: relative;
            z-index: 1;
        }

            #header #application-icon a img {
                display: block;
                width: 64px;
                height: 64px;
                background-image: url(./images/Icon-64x64.png);
                background-repeat: no-repeat;
            }

        #header #application-icon img {
        }

    #header h1 {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 8px;
        left: 80px;
        height: 64px;
        line-height: 64px;
        font-size: 16px !important;
        font-weight: normal;
        color: white !important;
        text-shadow: none !important;
        letter-spacing: 0.4px;
    }

        #header h1 #application-name {
            font-weight: bold;
        }

    #header h2 {
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        text-align: center;
        line-height: 80px;
        font-size: 20px !important;
        color: white !important;
        text-shadow: none !important;
        text-transform: uppercase;
        letter-spacing: 0.5px !important;
    }

    #header #user-info {
        text-align: right;
        padding-right: 8px;
        height: 64px;
        line-height: 64px;
        font-size: 120%;
        font-weight: normal;
        color: white !important;
        text-shadow: none !important;
    }

#sidebar {
    position: absolute;
    top: 79px !important;
    bottom: 0;
    left: 0;
    width: 229px;
    border-right: 1px solid #7F7F7F;
    background-color: #232E83 !important;
    background-image: none !important;
    background-repeat: repeat-y;
    z-index: 3;
    overflow: auto;
}

    #sidebar a {
        color: #fff !important;
        text-decoration: none;
        font-size: 12px !important;
        letter-spacing: 0.3px !important;
    }

        #sidebar a:hover {
            text-decoration: underline;
        }

        #sidebar a:active {
            text-shadow: 0 0 1px #fff;
        }

    #sidebar .section {
        margin: 20px 0;
        padding: 0 8px;
    }

        #sidebar .section h3 {
            margin: 0;
            color: #fff !important;
            font-size: 14px !important;
            font-weight: bold !important;
            text-transform: uppercase;
        }

        #sidebar .section ul {
            margin: 0;
            padding: 0;
            list-style-type: none;
            padding-left: 20px;
        }

            #sidebar .section ul li {
                margin: 8px 0;
            }

.authority-dropdownlist {
    margin: 20px 8px 0;
    width: 182px;
        border: 1px solid #E3E3E3;
    border-radius: 2px;
    opacity: 1;
    padding: 5px;
}

#main {
    background-color: #FDFFF7;
    overflow: auto;
    position: absolute;
    top: calc(80px + 44px);
    right: 0;
    bottom: 0;
    left: 230px;
}

    #main #content {
        margin: 20px;
    }

        #main #content.toolbar-hidden {
        }

        #main #content .content-box {
            clear: both;
            margin-bottom: 8px;
        }

            #main #content .content-box .details-view,
            #main #content .content-box .fields-view,
            #main #content .content-box .bulleted-list {
                float: left;
                margin-right: 8px;
            }

        #main #content #content-view {
            margin-right: 150px;
            padding: 20px;
        }

        #main #content #content-header {
        }

        #main #content #content-inner {
        }

#toolbar {
    position: absolute;
    top: 80px;
    left: 230px;
    right: 0;
    height: 52px !important;
    box-sizing: border-box;
    padding: 6px 20px;
    overflow: auto;
    background-color: #F3E56A;
    background-image: url(./images/ToolbarBackgroundGradient.png);
    background-repeat: repeat-y;
    z-index: 2;
    background: none !important;
    border-left: none !important;
    border-bottom: 1px solid #bbb;
}

    #toolbar .section {
        display: block;
    }

    #toolbar ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        display: block;
    }

        #toolbar ul li {
            display: inline-block;
        }

            #toolbar ul li input[type=button],
            #toolbar ul li input[type=submit] {
            }

    #toolbar #section-toolbar-top {
        float: right;
    }

    #toolbar #section-toolbar-bottom {
        float: left;
    }

    #toolbar #section-toolbar-top ul {
    }

        #toolbar #section-toolbar-top ul li {
            float: left;
            margin-left: 10px;
        }

    #toolbar #section-toolbar-bottom ul {
    }

        #toolbar #section-toolbar-bottom ul li {
            float: left;
            margin-right: 10px;
        }


.fields-view {
    margin-bottom: 8px;
}

.details-view {
    width: 320px;
    margin-bottom: 8px;
}

    .fields-view,
    .fields-view table,
    .details-view,
    .details-view table {
        border-collapse: collapse;
        border: 1px solid #BCBCBC;
    }

        .fields-view table,
        .details-view table {
            width: 100%;
        }

        .fields-view tr,
        .fields-view td,
        .fields-view th,
        .details-view tr,
        .details-view td,
        .details-view th {
            padding: 0;
            margin: 0;
            border-spacing: 0;
            border-width: 0;
        }

        .fields-view .details-view-field-header,
        .details-view .details-view-field-header,
        .fields-view .field th {
            border: 0.8px solid #BCBCBC !important;
            background-color: #6D10B4 !important;
            padding: 4px 8px;
            background-image: none !important;
            background-repeat: repeat-x;
            /*background-position: left top;*/
            vertical-align: middle;
        }

        .details-view .details-view-field-header {
            width: 40%;
        }

        .fields-view .details-view-field-item,
        .details-view .details-view-field-item,
        .fields-view .field td {
            border: 1px solid #bcbcbc !important;
            background-color: #FFFFFF;
            padding: 4px 8px;
        }

            .fields-view .details-view-field-item.details-view-field-item--help-text,
            .details-view .details-view-field-item.details-view-field-item--help-text {
                /*background-color: #ffc8c8;*/
            }

            .fields-view .details-view-field-item-textarea,
            .details-view .details-view-field-item-textarea,
            .fields-view .field td.textarea {
                border: 1px solid #bcbcbc !important;
                background-color: #FFFFFF;
                height: auto;
                padding: 4px 8px;
            }

.content-box input[type=button],
.content-box input[type=submit] {
    outline: none;
}

.table-view {
    border-collapse: collapse;
    width: 100%;
}

    .table-view table {
        border-collapse: separate;
    }

thead th {
    background-color: #6D10B4 !important;
    background-image: none !important;
    background-repeat: repeat-x;
}

#application-icon-empty {
    display: block;
    width: 150px;
    height: 150px;
    background-image: none !important;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -75px;
}

.buttonset {
    text-align: center;
}

.row-template {
    border: 1px solid #bbb !important;
    padding: 8px !important;
    font-size: 100%;
    font-family: inherit;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    width: 300px;
    margin-top: -300px;
}

.row-edit {
    width: 100%;
}

    .row-edit table {
        width: 100%;
        border-collapse: collapse;
    }

.table-view div {
    position: relative;
}

.loading-indicator {
    display: inline;
    zoom: 1;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.details-view--medicine-info-form {
    width: 470px;
}


    .details-view--medicine-info-form .details-view-field-header {
        width: 30%;
    }

.medicine-info.details-view .details-view-field-header {
    width: 45%;
}

.image3x4-wrapper {
    min-width: 120px;
    min-height: 90px;
    margin-bottom: 8px;
}

.image3x4 {
    max-width: 120px;
    max-height: 90px;
}

.upload-button-wrapper {
    margin-top: 8px;
}

.upload-button {
    width: 200px;
}

.image-file-input {
    width: 100px;
}

.mail-order-list-wrapper {
    padding: 20px;
}

.mail-order-list {
    width: 100%;
}

    .mail-order-list th,
    .mail-order-list td {
        padding: 5px 5px 4px;
    }

.mail-token-list {
    width: 100%;
}

    .mail-token-list tr th,
    .mail-token-list tr td {
        border: 1px solid #BCBCBC;
        padding: 5px 5px 4px;
    }

    .mail-token-list tr th {
        background-color: #F7CF3B;
        /*
    background-image: -khtml-gradient(linear, left top, left bottom, from(#FEFA96), to(#F7D13F));
    background-image: -moz-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: -ms-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FEFA96), color-stop(100%, #F7D13F));
    background-image: -webkit-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: -o-linear-gradient(top, #FEFA96, #F7D13F);
    background-image: linear-gradient(top, #FEFA96, #F7D13F);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FEFA96', endColorstr='#F7D13F', GradientType=0);
    */
    }

    .mail-token-list tr td {
        background-color: #fff;
    }

table.form {
    border-collapse: collapse;
    min-width: 480px;
}

    table.form thead tr th {
        background-image: none;
        background-color: transparent;
        text-align: left;
    }

    table.form thead tr {
    }

    table.form th,
    table.form td {
        padding: 5px 5px 4px;
        border: 1px solid #BCBCBC;
        z-index: -1;
        background-color: #fff;
    }

    table.form thead {
        background-color: #F7CF3B;
        background-image: linear-gradient(top, #FEFA96, #F7D13F);
    }

    table.form tbody th {
        text-align: right;
        width: 30%;
    }

    table.form input,
    table.form textarea,
    table.form select {
        color: #808080;
        border: 1px solid #ccc;
    }

    table.form select {
        padding: initial;
    }

    table.form input.mini {
        width: 60px;
    }

    table.form input.small {
        width: 90px;
    }

    table.form input.medium {
        width: 150px;
    }

    table.form input.large {
        width: 210px;
    }

    table.form input.xlarge {
        width: 270px;
    }

    table.form input.xxlarge {
        width: 530px;
    }

.alerts-message {
    color: #429F53;
    padding: 5px 5px 4px;
    display: block;
    margin-bottom: 8px;
}

td.mail-order-cassette-sample-tablet-row {
    background-color: #D4F8DC !important;
}

td.mail-order-non-existent-medicine-code-row {
    background-color: #FFC6A5 !important;
}

.parts-order-status-view {
    width: 100px;
    text-align: center;
}


td.details-view-field-item.parts-order-status {
    color: white;
}
.parts-order-div-calc.details-view .details-view-field-item {
    width: 50px;
    text-align: center;
}

.parts-order-div-calc.details-view .details-view-field-header {
    background: #ddd;
    width: 150px;
}

.parts-order-div-calc.details-view {
    width: auto;
}

div.update-progress-indicator {
    width: 220px;
    height: 19px;
    background-image: url(./images/UpdateProgress.gif);
    background-position: center center;
    background-repeat: no-repeat;
}

.image-button {
    vertical-align: middle;
}

.details-view-field-header-text-align-center,
.details-view-field-item-text-align-center {
    text-align: center;
}

.validation-errors-list li {
    color: Red;
}

#medicine-information-header {
    overflow: hidden;
}

#medicine-information-search-form {
    width: 50%;
    float: left;
}

#medicine-information-calibration {
    width: 50%;
    float: right;
}

#medicine-information-content {
    clear: both;
}

#medicine-information-content-inner {
    padding: 20px;
}

#medicine-information-search-form-inner {
    padding: 20px;
}

#medicine-information-calibration-inner {
    padding: 20px;
}

table.form-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #000;
}

    table.form-table tr > th,
    table.form-table tr > td {
        padding: 4px 8px;
        border: 1px solid #BCBCBC;
    }

    table.form-table tr th {
        font-weight: normal;
        text-align: left;
        background-color: #6D10B4 !important;
        background-image: none !important;
        background-repeat: repeat-x;
    }

        table.form-table tr th a {
            text-decoration: underline;
        }

    table.form-table tr td {
        background-color: #ffffff;
    }

        table.form-table tr td input[type=text],
        #medicine-information-search-form table tr td textarea {
            border: 1px solid #bbb;
        }

.grid-view-table,
.medicine-information-table {
    width: 100%;
    margin-bottom: 14px;
}

    .grid-view-table tr th,
    .grid-view-table tr td,
    .medicine-information-table tr th,
    .medicine-information-table tr td {
        padding: 4px 8px;
    }

    .grid-view-table tr th,
    .medicine-information-table tr th {
        background-color: #6D10B4 !important;
        background-image: none !important;
        background-repeat: repeat-x;
        border: 0.800000011920929px solid #BCBCBC;
        opacity: 1;
    }

    .grid-view-table tr td,
    .medicine-information-table tr td {
        background-color: #fff;
    }

    .medicine-information-table tr.medicine-information-table-disabled-row td,
    .grid-view-table tr.grid-view-table-disabled-row td {
        background-color: lightgray;
    }

    .grid-view-table tr.grid-view-table-selected-row td,
    .grid-view-table tr.cassette-row-selected td,
    .medicine-information-table tr.medicine-information-table-selected-row td,
    .medicine-information-table tr.medicine-information-table-disabled-row.medicine-information-table-selected-row td,
    .grid-view-table tr.grid-view-table-disabled-row.grid-view-table-selected-row td {
        background-color: lightblue;
    }


.shape-pattern-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

    .shape-pattern-table tr th,
    .shape-pattern-table tr td {
        border: 1px solid #BCBCBC;
        padding: 2px;
    }

    .shape-pattern-table tbody tr td {
        background-color: White;
        width: 33.3%;
    }

        .shape-pattern-table tbody tr td img {
            width: 100%;
        }

.medicine-shape-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
}

    .medicine-shape-table tr td,
    .medicine-shape-table tr th {
        border: 1px solid #BCBCBC;
        padding: 2px;
    }

    .medicine-shape-table tr th {
        background-color: #F7D13F;
        background-image: url(./images/TableViewHeaderBackgroundGradient.png);
        background-repeat: repeat-x;
    }

    .medicine-shape-table tr td {
        text-align: center;
        background-color: #FFFFFF;
        width: 33.3%;
    }

        .medicine-shape-table tr td input[type=text] {
            border: 1px solid #bbb;
            text-align: center;
        }

.search-past-calibration-shape-pattern-drop-down-list {
    margin-bottom: 10px;
}

.grid-view-table .command-field,
.medicine-information-table .command-field {
    background-color: #f48025 !important;
    width: 1em;
}

    .grid-view-table .command-field a,
    .medicine-information-table .command-field a {
        font-weight: bold;
        text-decoration: none;
        color: White;
    }

.c-match-importer-error-message-label {
    display: block;
    margin: 8px 0;
}

.c-match-importer-result-message-label {
    display: block;
    margin: 8px 0;
}

.c-match-importer-error-message-list {
    margin: 8px 0;
}

.matching {
    display: inline-block;
    padding: 0 8px;
    border: 1px solid #bbb;
    margin: 20px 0;
    border-radius: 4px;
    background-color: white;
}

.note-text-box {
    width: 100%;
    height: 200px;
}

.content-cab-pattern-suggestion .table input[type="text"] {
    text-align: center !important;
}

.progress-panel {
    margin: 20px;
    overflow: auto;
}

.progress-label {
    display: block;
    height: 20px;
    line-height: 20px;
    float: left;
    padding-left: 20px;
}

.progress {
    height: 20px;
    background-color: white;
    border: 1px solid #ddd;
    width: 300px;
    float: left;
}

    .progress > .progress-bar {
        height: 100%;
        background-color: #0094ff;
        width: 0%;
    }

.jsgrid .jsgrid-grid-header .jsgrid-table .jsgrid-header-row .jsgrid-header-cell {
    background-color: #6D10B4 !important;
    background-image: none !important;
    background-repeat: repeat-x;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#grid-toolbar {
    padding: 10px 20px;
    background-color: #ddd;
    border-top: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    overflow: hidden;
    text-align: right;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.visibility-hidden {
    display: none !important;
}

.jsgrid {
    background-color: #fff;
}

    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row .jsgrid-cell,
    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row .jsgrid-cell {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row.mail-order-non-existent-medicine-code-row .jsgrid-cell,
    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row.mail-order-non-existent-medicine-code-row .jsgrid-cell {
        background-color: #FFC6A5 !important;
    }

    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row.calibrated .jsgrid-cell,
    .jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row.calibrated .jsgrid-cell {
        background-color: #ffccff !important;
    }

.jsgrid-alt-row .jsgrid-cell.fixed,
.jsgrid-row .jsgrid-cell.fixed {
    background-color: #CD201B2E;
}
.jsgrid-alt-row .jsgrid-cell.new-order, .jsgrid-row .jsgrid-cell.new-order {
    background-color: #6d10b454 !important;
}

.jsgrid-alt-row .jsgrid-cell.new-order,
.jsgrid-row .jsgrid-cell.new-order {
    background-color: #6d10b454 !important;
}

.jsgrid-selected-row > .jsgrid-cell.fixed,
.jsgrid-selected-row > .jsgrid-cell.new-order,
.jsgrid-selected-row > .jsgrid-cell {
    background: #E9DBF4;
    border-color: #E9DBF4;
}


.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row .jsgrid-cell input[type="button"],
.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-alt-row .jsgrid-cell input[type="submit"],
.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row .jsgrid-cell input[type="button"],
.jsgrid .jsgrid-grid-body .jsgrid-table .jsgrid-row .jsgrid-cell input[type="submit"] {
    padding: 2px 4px;
}

.jsgrid-nodata-row {
    background-color: #fff;
}

    .jsgrid-nodata-row td {
        text-align: center;
        padding: 5px;
    }

.radio-button input[type="radio"] {
    vertical-align: top;
}

.modal-recalibration-attachment {
    padding: 2rem;
}

    .modal-recalibration-attachment .modal-dialog {
        width: 100%;
        height: 100%;
        margin: 0;
    }

        .modal-recalibration-attachment .modal-dialog .modal-content {
            height: 100%;
        }

.thumbnail-recalibration-attachment {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    background-color: #000;
}

.image-thumbnail-recalibration-attachment {
    max-width: 100px;
    max-height: 100px;
}

.file-preview {
    z-index: 2000;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.50);
}

    .file-preview .file-preview-content {
        height: 100%;
        width: 100%;
        background-color: #000;
        display: flex;
        flex-direction: column;
    }

    .file-preview .file-preview-header {
        height: 4rem;
        display: flex;
        align-items: center;
    }

        .file-preview .file-preview-header .file-preview-header-title {
            flex: 1 0 0%;
            color: #fff;
            padding: .5rem 1rem;
        }

        .file-preview .file-preview-header .file-preview-header-close-button {
            flex: 0 1 auto;
            background: none;
            color: inherit;
            border: none;
            padding: 0;
            font: inherit;
            cursor: pointer;
            outline: inherit;
            color: #fff;
            padding: .5rem 2rem;
            font-size: 2rem;
        }

    .file-preview .file-preview-body {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .file-preview img {
        max-width: 100%;
        max-height: 100%;
    }

    .file-preview video {
        max-width: 100%;
        max-height: 100%;
    }


    .h3, h3 {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 7px;
    }
    .content-inner, p {
        font-size: 14px;
        margin-bottom: 28px;
        color: #353535;
    }

    .grid-view-table tr td:nth-child(5) {
        background-color: #CD201B2E !important;
    }

    .btn-danger {
        background-image: -webkit-linear-gradient(top,#CD201B 0,#CD201B 100%);
        background-image: -o-linear-gradient(top,#CD201B 0,#CD201B 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#CD201B),to(#CD201B));
        background-image: linear-gradient(to bottom,#CD201B 0,#CD201B 100%) !important;
        border-color: #CD201B !important;
        background-color: #CD201B !important;
    }

    .btn-default:hover {
        color: white;
        background-color: #F48025 !important;
        background-image: linear-gradient(to bottom,#F48025 0,#F48025 100%) !important;
        border-color: #F48025 !important;
    }


    textarea#MainContent_NoteTextBox {
        height: 48px !important;
    }
    div#medicine-information {
        margin-top: 23px;
    }

    th a:hover{
        color: white !important;
    }
    th a:active{
        color: white !important;
    }
    th a:focus{
        color: white !important;
    }
    .btn-primary {
        background-image: linear-gradient(to bottom,#F48025 0,#F48025 100%) !important;
        border-radius: 2px;
        border: 1px solid #F48025 !important;
        background-color: #F48025 !important;
        padding: 7px 20px;
    }
    .h2, h2:nth-child(1) {
        font-size: 24px;
        font-weight: 600;
        color: #353535;
        margin-top: 62px;
        margin-bottom: 27px;
    }
    .btn-group-sm>.btn, .btn-sm {
        padding: 7px 10px;
        font-size: 12px;
        line-height: 1.5;
        border-radius: 2px;
    }
    .btn-default {
        background-image: linear-gradient(to bottom,#f48025 0,#f48025 100%) !important;
        border-color: #f48025 !important;
    }

    .details-view .details-view-field-item {
        border: 1px solid#bcbcbc !important;
        background-color: #FFFFFF;
        color: #222;
    }

    .btn-info {
        background-image: -webkit-linear-gradient(top,#4353D4 0,#4353D4 100%);
        background-image: -o-linear-gradient(top,#4353D4 0,#4353D4 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#4353d4),to(#4353d4)) !important;
        background-image: linear-gradient(to bottom, 0,#4353D4 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        background-repeat: repeat-x;
        border-color: #4353D4;
    }
    .btn-info {
        color: #fff;
        background-color: #4353D4 !important;
        border-color: #4353D4 !important;
    }
    button.btn.btn-info.btn-xs.btn-block:hover {
        background-color: #4353D4 !important;
    }
    btn-info:focus, .btn-info:hover {
        background-color: #4353D4 !important;
        background-position: 0 -15px;
    }
   
    input[type=submit].green-button:hover, input[type=button].green-button:hover {
        background-color: #7CB53A;
        background: linear-gradient(top, #7CB53A, #7CB53A);
        background: -moz-linear-gradient(top, #7CB53A, #7CB53A);
        background: -webkit-gradient(linear, left top, left bottom, from(#7CB53A), to(#7CB53A));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#7CB53A, endColorstr=#7CB53A);
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e6e7, endColorstr=#e5e6e7)";
        zoom: 1;
        color: white;
        border: 1px solid #7CB53A !important;
    }
    
    .btn-default:active {
        background-color: #F48025 !important;
        background-image: linear-gradient(to bottom,#F48025 0,#F48025 100%);
        color: white;
        border: 1px solid #F48025 !important;
    }
    .jsgrid-edit-row>.jsgrid-cell {
        background: #E9DBF4 !important;
    }

    .btn-success {
        background-image: -webkit-linear-gradient(top,#f48025 0,#f48025 100%);
        background-image: -o-linear-gradient(top,#f48025 0,#f48025 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));
        background-image: linear-gradient(to bottom,#f48025 0,#f48025 100%); 
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        background-repeat: repeat-x;
        border-color: #f48025;
        background-color: #f48025 !important;
    }
    .btn-success:hover {
        background-image: linear-gradient(to bottom,#f48025 0,#f48025 100%) !important;
        border-color: #f48025;
        background-color: #f48025 !important;
    }
    button.btn.btn-block.btn-xs.btn-success.btn-save:hover {
        background-color: #f48025 !important;
        border-color: #f48025 !important;
    }

    div#freezingDiv {
        margin-top: 30px !important;
    }
    input#MainContent_Btn_WdwSp_Ok {
        margin-top: 20px !important;
       
    }
    div#MainContent_Panel_MedicineCodeConfirm {
        background-color: #00AE9E !important;
    }

    div#MainContent_Panel_MedicineCodeConfirm p {
        color: white;
    }

    div#MainContent_Panel_MedicineCodeConfirm, input#MainContent_Btn_MedicineCodeConfirm_Cancel {
        color: black;
    }

    div#MainContent_Panel_MedicineCodeConfirm, input#MainContent_Btn_MedicineCodeConfirm_Ok {
        color: black;
    } !important;
        background-image: linear-gradient(to bottom,#232E83 0,#232E83 100%);
        color: white;
        border: 1px solid #232E83 !important;
    }
    .jsgrid-edit-row>.jsgrid-cell {
        background: #E9DBF4 !important;
    }

    .btn-success {
        background-image: -webkit-linear-gradient(top,#f48025 0,#f48025 100%);
        background-image: -o-linear-gradient(top,#f48025 0,#f48025 100%);
        background-image: -webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));
        background-image: linear-gradient(to bottom,#f48025 0,#f48025 100%); 
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        background-repeat: repeat-x;
        border-color: #f48025;
        background-color: #f48025 !important;
    }
    .btn-success:hover {
        background-image: linear-gradient(to bottom,#f48025 0,#f48025 100%) !important;
        border-color: #f48025;
        background-color: #f48025 !important;
    }
    button.btn.btn-block.btn-xs.btn-success.btn-save:hover {
        background-color: #f48025 !important;
        border-color: #f48025 !important;
    }

    div#freezingDiv {
        margin-top: 30px !important;
    }
    input#MainContent_Btn_WdwSp_Ok {
        margin-top: 20px !important;
       
    }
    div#MainContent_Panel_MedicineCodeConfirm {
        background-color: #00AE9E !important;
    }

    div#MainContent_Panel_MedicineCodeConfirm p {
        color: white;
    }

    div#MainContent_Panel_MedicineCodeConfirm, input#MainContent_Btn_MedicineCodeConfirm_Cancel {
        color: black;
    }

    div#MainContent_Panel_MedicineCodeConfirm, input#MainContent_Btn_MedicineCodeConfirm_Ok {
        color: black;
    }
    input#MainContent_Btn_Help {
        background-color: #00ae9e;
        border: 1px solid #00ae9e !important;
        color: white;
    }
    input#MainContent_Btn_Help:hover {
        background: #00ae9e;
    }
    input#ToolbarContent_Btn_AddToOrder {
        background-color: #F48025;
        border: 1px solid #F48025 !important;
        color: white;
    }
    input#ToolbarContent_Btn_AutoOrder {
        background-color: #00AE9E !important;
    }
    input#ToolbarContent_Btn_AutoOrder:hover {
        background: #00AE9E !important;
    }
    input#ToolbarContent_Btn_EditFixed {
        background-color: #f48025;
        border: 1px solid #f48025 !important;
        color: white;
    }
    input#ToolbarContent_RegisterButton {
        background-color: #f48025;
        border: 1px solid #f48025 !important;
        color: white;
    }
    input#MainContent_Btn_Search {
        background-color: #00ae9e !important;
        border: 1px solid #00AE9E !important;
        color: white;
    }
    input#MainContent_Btn_Search:hover {
        background: #00ae9e !important;
    }