/*---file_updated_on: 10/02/2025;---*/

/**
note:
1) it should be good if we use css variables since a lot elements shares same padding, margin and other styles in common. but, due to compatibility for older devices i haven't used it yet.
2) while setting width or height to element, subtract padding, margin, border values if necessary. ignoring this may cause overflow issues.
**/

@font-face {
    font-family: "RobotoCondensedRegular";
    src: url(font/RobotoCondensed-Regular.ttf);
}

@font-face {
    font-family: "RobotoCondensedBold";
    src: url(font/RobotoCondensed-Bold.ttf);
}

/* SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 5px;
    height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #cccccc;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

/* Handle */

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background: #cccccc;
}

body {
    font-family: RobotoCondensedRegular !important;
    background-color: #fff;
    margin: auto;
    color: #4e4e4e;
    letter-spacing: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

html,
body {
    overflow: hidden;
}

/*-------Standard classes for basic styling of elements------*/
b,
strong,
span.bold {
    /*For bold*/
    font-family: RobotoCondensedBold;
}

i,
em,
span.italic {
    /*For italic*/
    font-style: italic;
}

u,
span.underline {
    /*For underline*/
    text-decoration: underline;
}

sup,
span.text-sup {
    /*For super-script*/
    vertical-align: super;
}

sub,
span.text-sub {
    /*For sub-script*/
    vertical-align: sub;
}

sup,
span.text-sup,
sub,
span.text-sub {
    font-size: 0.7em;
    line-height: 100%;
}

/*-----------------------------------------------------------*/

/* --------------main wrapper-------------- */
#mainDiv {
    overflow-x: scroll;
    overflow-y: hidden;
    padding: 5px;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    /* disable white-space, if having problem of overflowing on small screens */
    width: calc(100% - 10px);
}

/* ---------------------------------------- */

/* ---------------grid wrapper---------------- */
#grid-wrapper {
    border: 0 solid #ccc;
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
}

/* --------------------------------------------- */

/* ------------------grids---------------------- */
.grid {
    /*-----common styles used for grids-----*/
    display: inline-block;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-box-shadow: 1px 1px 1px 1px #d0d0d0;
    -moz-box-shadow: 1px 1px 1px 1px #d0d0d0;
    box-shadow: 1px 1px 1px 1px #d0d0d0;
    background-color: #ffffff;
    padding-top: 34px;
    /*----height of the main_section_header this should be handled from js, according to size of header label the height can increase-----*/
    margin-right: 5px;
    /*----this is added to create a even space on both sided of the single & multi grid tool---*/
}

#mainDiv .grid::-webkit-scrollbar {
    width: 5px;
}

#mainDiv .grid::-webkit-scrollbar-thumb {
    background-color: #0000004c;
    /* Adjust scrollbar thumb color */
}

#mainDiv .grid::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    /* Adjust scrollbar track color */
}

#mainDiv>div>div:first-child {
    margin-left: 0px !important;
    /*---for same gap between all grids and from both sides---*/
}

#mainDiv>div>div:last-child {
    margin-right: 0px !important;
    /*---for same gap between all grids and from both sides---*/
}

/* ---------------------------------------------- */

/* -----------section headers------------ */
.main_section_header {
    margin: 0;
    padding: 10px 5px;
    font-size: 14px;
    background: #cccccb;
    color: #4e4e4e;
    font-family: RobotoCondensedBold;
    top: -36px;
    margin-top: -36px;
    width: calc(100% - 10px);
    white-space: initial !important;
    position: sticky !important;
    /*---to make section header stick to top when scrolling---*/
    position: -webkit-sticky !important;
    position: -moz-sticky !important;
    position: -o-sticky !important;
    position: -ms-sticky !important;
    z-index: 1;
    display: flex;
    flex-direction: row-reverse;
    /*---this is un-necessary, updated the element creation process in js to append text first and icon later---*/
    align-items: center;
    justify-content: space-between;
}

#mainDiv div.main_section_header p,
div.sub_section_header p {
    display: block;
    margin: 0;
}

/* -------------------------------------------------------------- */

/* ----------------wrapper for table in sub section---------- */
.grid .sub_section_div {
    /*---let this wrapper use all available space of a grid to handle further overflowing behavior---*/
    padding: 0;
    margin: 0;
    width: 100%;
    white-space: initial !important;
}

/* ------------------------------------------------------------ */

/* -----------styles for tables, td-tables in direct sub section and sub section tr td and labels inside them--------- */
.section-table {
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    margin-bottom: 5px;
    margin-top: 0px;
}

.section-table>tr {
    width: calc(100%);
    margin: 0;
}

.section-table>tr>td {
    padding: 0 !important;
    margin: 0;
    display: flex;
    /*---this affects all elements present in table cells, make sure to use proper sizing styles for images---*/
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.section-table>tr>td>p,
.section-table>tr>td>p>p {
    margin: 0;
}

.section-table>tr>td>div {
    width: 100%;
}

.section-table>tr td table {
    width: 100%;
    border: 0;
    outline: 0;
    border-collapse: collapse;
}

.section-table>tr td table td {
    padding: 0;
}

.section-table>tr td table td p {
    margin: 0;
}

.td-table>tr {
    width: calc(100%);
    margin: 0;
}

.td-table>tr>td {
    padding: 0 !important;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.td-table>tr>td>div {
    width: 100%;
}

/* ------------------------------------------------------------ */

/* ----------- these styles are only used in management board ------------ */
.parent-table {
    width: 100%;
}

.parent-table>tr {
    width: calc(100%);
    margin: 0;
    padding: 0;
    margin-bottom: 1px;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
}

.parent-table>tr>td:nth-child(2) {
    display: flex;
    align-content: center;
    padding-left: 1em;
}

.parent-table>tr>td:last-child {
    display: flex;
    flex-direction: row;
}

.parent-table>tr>td:last-child>table {
    width: 100%;
}

.dx-element-block {
    background-color: rgb(31, 79, 203) !important;
    color: #ffffff;
    padding: 5px 0 !important;
}

.tx-element-block {
    background-color: rgb(42, 178, 209) !important;
    color: #ffffff;
    padding: 5px 0 !important;
}

tr.recommendation_box_radioGroup td .label {
    font-family: RobotoCondensedRegular;
    padding-left: 2px;
}

/* --------------------------------------------- */

/* -----------styles for all labels is tr--------- */
.section-table .label,
.parent-table .label {
    /*--these styles are for labels on left side--*/
    padding: 4px 5px;
    text-align: left;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: normal;
    width: -webkit-calc(100% - 14px);
    width: -moz-calc(100% - 14px);
    width: calc(100% - 14px);
}

.section-table .label-units {
    /*--these styles are for labels on right side, mostly units--*/
    padding: 4px 6px 4px 9px;
    text-align: left;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: normal;
    width: -webkit-calc(100% - 15px);
    width: -moz-calc(100% - 15px);
    width: calc(100% - 15px);
}

/* --------------------------------------------- */

/* -----------------border radius for elements---------- */
input,
select,
button,
textarea,
label,
.resultbox {
    border-radius: 4px !important;
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
}

/* ----------------------------------------------------- */

/* ---------------------textarea------------ */
.section-table .textarea {
    resize: none;
    width: -webkit-calc(100% - 18px);
    width: -moz-calc(100% - 18px);
    width: calc(100% - 18px);
    padding: 4px 5px;
    margin: 3px;
    border: 1px solid #b3b3b3;
    font-family: RobotoCondensedRegular !important;
}

/* ----------------------------------------- */

/* -----------------dropdowns--------------- */
.section-table .dropdown {
    width: -webkit-calc(100% - 6px);
    width: -moz-calc(100% - 6px);
    width: calc(100% - 6px);
    font-size: 14px;
    font-family: RobotoCondensedBold;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #b3b3b3;
    /* below css is for radial color background for the select button*/
    /* border: 1px solid transparent;
    -webkit-border: 1px solid transparent;
    -moz-border: 1px solid transparent;
    border-image: linear-gradient(
        90deg,
        #b3b3b3 calc(100% - 29px),
        rgba(61, 108, 204, 1) 28px
      )
      1 round;
    -webkit-border-image: linear-gradient(
        90deg,
        #b3b3b3 calc(100% - 29px),
        rgba(61, 108, 204, 1) 28px
      )
      1 round;
    -moz-border-image: linear-gradient(
        90deg,
        #b3b3b3 calc(100% - 29px),
        rgba(61, 108, 204, 1) 28px
      )
      1 round; */
    overflow: hidden;
    background: url(./img/arrow.svg),
        linear-gradient(90deg,
            rgba(61, 108, 204, 1) 0%,
            rgba(61, 108, 204, 1) 0%,
            rgba(61, 108, 204, 1) 100%);
    /*---dropdown icon used in select input*/
    background-size: 28px 100%;
    background-position-x: 100%;
    background-position-y: 50%;
    background-repeat: no-repeat;
    padding: 5px;
    padding-right: 35px;
    color: #4d4d4d;
    font-weight: normal;
    white-space: normal;
    background-color: white;
    text-overflow: ellipsis;
    max-height: 6em;
    /*---only 4 lines will be visible if text is longer---*/
    margin: 3px;
}

/* ----------------------------------------- */

/* ------------------textbox------------------ */
.section-table .textbox {
    width: -webkit-calc(100% - 16px);
    width: -moz-calc(100% - 16px);
    width: calc(100% - 16px);
    padding: 5px 4px;
    margin: 3px;
    display: inline-block;
    border: 1px solid #ccc;
    box-shadow: none;
    font-size: 14px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

/* ------------------------------------------ */

/* ----------------------------------result boxes-------------------------- */
#mainDiv .resultbox,
.resultbox-disabled,
.resultbox-blue,
.resultbox-blue-disabled,
.resultbox-green,
.resultbox-green-disabled {
    width: -webkit-calc(100% - 18px);
    width: -moz-calc(100% - 18px);
    width: calc(100% - 18px);
    min-height: 20px;
    /* border-radius: 0; */
    color: #4d4d4d;
    margin: 3px;
    font-family: RobotoCondensedBold;
    font-size: 14px;
    padding: 4px 5px;
    /* overflow-y: scroll; */
    /* max-height: 4.5em; */
}

#mainDiv .resultbox {
    background-color: #c2d2f2;
    border: 2px solid #3d6dcc;
}

#mainDiv .resultbox-disabled {
    background-color: #e6e6e6;
    border: 2px solid #9eb6e5;
}

#mainDiv .resultbox-blue {
    background-color: #c2d2f2;
    border: 2px solid #3d6dcc;
}

#mainDiv .resultbox-blue-disabled {
    background-color: #e8e8e8 !important;
    border: 1.2px solid #9eb6e5;
}

#mainDiv .resultbox-green {
    background-color: #b8e5a1;
    border: 2px solid #77b259;
}

#mainDiv .resultbox-green-disabled {
    background-color: #e6e6e6;
    border: 2px solid #bbd9ac;
}

#mainDiv .resultbox::-webkit-scrollbar,
.resultbox-disabled::-webkit-scrollbar,
.resultbox-blue::-webkit-scrollbar,
.resultbox-blue-disabled::-webkit-scrollbar,
.resultbox-green::-webkit-scrollbar,
.resultbox-green-disabled::-webkit-scrollbar {
    display: none;
}

/* ---------------------------------------------------------------- */

/* --------------------------------Headings------------------------------ */
.header {
    width: calc(100% - 10px);
    margin: 0;
    padding: 10px 5px;
    text-align: left;
    font-size: 14px;
    color: #4e4e4e;
    font-family: RobotoCondensedBold;
    margin-bottom: 2px;
}

.heading_1 {
    background: #e6e6e6;
}

.heading_2 {
    background: #efefef !important;
}

.heading_3 {
    background: #f3f3f3 !important;
}

.heading_4 {
    background: #f3f3f3d6 !important;
}

.heading_5 {
    background: #f3f3f38c !important;
}

.sub_section_header {
    margin: 0;
    padding: 10px 5px;
    font-size: 14px;
    background: #f2f2f2;
    color: #4e4e4e;
    font-family: RobotoCondensedBold;
    width: calc(100% - 10px);
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

/* ---------------------------------------------------------------- */

/* -------------------------collapsible arrow icons----------------- */
#mainDiv .expand_collapse {
    display: inline-block;
    width: 20px;
    height: 20px;
}

/* ----------------------------------------------------------------- */

/* -----------------------------radio buttons------------------------ */
#mainDiv .radio-button,
.radio-button-recommended {
    display: none;
}

#mainDiv .radio-button+label,
.radio-button-recommended+label {
    padding: 6px;
    margin: 3px;
    border: solid 1px #b3b3b3;
    color: rgb(172, 174, 175);
    background-color: #ffffff;
    font-size: 14px;
    text-align: center;
    display: block;
    white-space: normal;
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    word-break: break-all;
}

#mainDiv .radio-button:checked+label {
    color: #ffffff;
    background-color: #3d6ccc;
    border: solid 1px #3d6ccc;
}

#mainDiv .radio-button:checked:disabled+label {
    color: #ffffff;
    background-color: #becdf1;
}

#mainDiv .recommendation_box_radioGroup_blue .radio-button:checked+label {
    color: #ffffff;
    background-color: #3d6ccc;
    border: solid 1px #3d6ccc;
}

#mainDiv .recommendation_box_radioGroup_blue .radio-button:checked:disabled+label {
    color: #ffffff;
    background-color: #becdf1;
    border: solid 1px #becdf1;
}

#mainDiv .recommendation_box_radioGroup_green .radio-button:checked+label {
    color: #ffffff;
    background-color: #77b259;
    border: solid 1px #77b259;
}

#mainDiv .recommendation_box_radioGroup_green .radio-button:checked:disabled+label {
    color: #ffffff;
    background-color: #87b1ac;
    border: solid 1px #87b1ac;
}

#mainDiv .radio-button-recommended+label {}

#mainDiv .radio-button-recommended:checked+label {
    border: solid 1px #becdf1;
    color: #3d6ccc;
    background-color: #becdf1;
}

/* -------------------------------------------------------------------------- */

/* -----------------------------summary----------------------------- */
#mainDiv .summary_title_green {
    display: block;
    background: #a2c25a;
    color: #fff;
    padding: 4px 8px;
    margin: 0 !important;
    font-family: RobotoCondensedBold;
}

#mainDiv div.summary_box_green {
    border: 2px solid #a2c25a !important;
    margin: 0;
    padding: 0 !important;
}

#mainDiv .summary_title_blue {
    display: block;
    background: #3d6ccc;
    color: #fff;
    padding: 4px 8px;
    margin: 0 !important;
    font-family: RobotoCondensedBold;
}

#mainDiv div.summary_box_blue {
    border: 2px solid #3d6ccc !important;
    margin: 0;
    padding: 0 !important;
}

/* ------------------------------------------------------------------------ */

/* -----------------------------arrow icons----------------------------- */
/*---------------fixed the icon and text overlapping issue, base 64 encoded images are being used here---------*/
.arrowIcon {
    display: inline-block !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 24px !important;
    height: 24px !important;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

.arrow-right-transparent,
.arrow-right-green-filled,
.arrow-right-green-border,
.arrow-right-white-filled,
.arrow-right-blue-filled,
.arrow-right-red-filled,
.arrow-right-blue-border,
.arrow-right-red-border,
.arrow-right-green-filled-ce,
.arrow-right-green-border-ce,
.arrow-right-white-filled-ce {
    background-repeat: no-repeat;
    width: calc(100% - 5px);
    height: 1em;
    margin-left: 5px !important;
    display: inline;
    background-size: contain;
    background-position: center;
}

.arrow-right-green-filled {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAACXBIWXMAAAsSAAALEgHS3X78AAAAoElEQVRIic3Wuw2AMAwE0AMxHz2TMAOT0AKLwQagNMhEEZBg+7gmZZ6Uj6/ql24FMAGYh3YMKzUBtAvAxsbFIBkK7g5Ewb0FyZjiSkCmuK8gGRWcJkgFZwWSycJ5gLJw3iCZJI4JSuLqH2AuaYh7J4/MG/R4qT1AWc/eClT8MWqCVEbHV5D6cC0BmdaPtyC3gnYHolTYGEQv+QFER5wBcAAGe4KC6JcCfAAAAABJRU5ErkJggg==);
}

.arrow-right-green-border {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAACXBIWXMAAAsSAAALEgHS3X78AAAAtklEQVRIicXWvQ3CMBCG4TeIQRiBSSJaV6wAlWdIxRhpwYslG4DcIMeKHCW5+Pua66xH/rtrfHAD8AY+XdvHKk0EfRPAqMbloDQSXAkkweWgJ3AHrircBNS1fROrD+4C3BS4WVCa2rhFUG3cKlAN3GbQUTgTkCXOHLQXd7IEWORsveDeIzMBWV7qzaCjnv0qUI2PcRFUu3XMgpTNdQLywT3U40e+Qy8FogSSIEog+ZAfQXLEP8APlFSxmFm95RkAAAAASUVORK5CYII=);
}

.arrow-right-white-filled {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAACXBIWXMAAAsSAAALEgHS3X78AAAAv0lEQVRIicXWzQ3CMAwF4BdgEG7myCKx2IAVYBJWgXQZyhKwASgXlFZVqrau37v4Fn3Kn72Nqm8ROYhIeLXtE+SEqPotCB8AdwCPJqVc3dMHgY2rgcq44fqgK4AzgCML1wE1KYVco+oewImBGwSV8caNgrxxk0AeuNmgtXAmIEucOWgpbmMJsMjOesGlR2YCsrzUs0FrPftJII+PcRTk3ToGQczm2gFF1Qt7/Ojv0I2BqIEoiBqIPuRnEB3xD4Aflm2ztDGpnZoAAAAASUVORK5CYII=);
}

.arrow-right-green-filled-ce {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA2CAYAAACvHjsIAAAACXBIWXMAAAsSAAALEgHS3X78AAACaklEQVRYhe2Yy3EiMRCGf6YIgBBwBOsQIAGtfdRpIQLDSUfbR50WR4B90tG2EjAZmM2ADNYZ7JZcPVVCSDPSjGaGA38VRc1Dzadu9aMYCc3/AngD8C6ZMt+DygD9swC+hoZzgWwNAlcFNAhcLJCtTuGaAHUK1xbIVha4nEBZ4LoCspUE1wdQElzfQLa8cEMCeeGKM4A50njA3/aGrG+g2kPdB1BS2ncF1Lgw5gTK0jraAmVvrk2AOh0/YoF6G9CqgAYZYV2gwYf88TlAXHTRRX1qVPVbQvMbAD8BzABMrUdzydQulVNobmzckb1r69FOMjVHqFILzc2CrQPRWELzCYDfABZ1Nk6AhOZm4SoHiLW5VwCTmPePgITm24pdHOgDqu4xMAvydEhl2Pfl85G1OOSZDYAnydQhZDUAY87Ip+fRjuyFZ2pyqwtjqJeSqb1vYYRePa+sJVObqqVlyFy37imTokLjSmj+4EkIs7nnurUFpbZvcSMY0i/n+jEG5huI6oytTYswleG3N/hF5zBKBRUpW09NYUiuvecUb4+d3RxSs8mjH86tldA8VNdOKr77Z0NbGMQWwJDO7t8PFyhH72qTnd9n6GCBTE1HbnmO/gC4sa5N1q5jFxdWPyl11wIGHnsL6vbRQO/OvRX1oUairLE9PEmZHgpqcm6Itim78ujFuXVPnb8eiL6Xzn3joY+mnpJMPQQ2Weupsxs/jmbqhAFtHdPvUga0MhOP6pBkalnRCKfUp2ax1Zg6/LyiNs3cgf+kUhPpPFMbKbPuyjTZmPe9rcMYkUwZI7dkqBWc6fbkfWPTRMAfbgD/AWBrL/eOZ/hSAAAAAElFTkSuQmCC);
}

.arrow-right-green-border-ce {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA2CAYAAACvHjsIAAAACXBIWXMAAAsSAAALEgHS3X78AAACa0lEQVRYhe2YwXHbMBBFvzgqQCUoFdglSA0gyZEnSxVYOvEY54hT5Apkn3C0zQasDqJ0oA7sDpxZz3IGWoEkQMKEDvozHo5JYudhgd0PalSU+RuAZwAvWhm6JhUBfVgA76nhJJCtJHBNQEngJNAawA2A61RwR0BamRFdizKfAviRAs4JZGtouFagoeGCgIaA6wz0VXBRgGLCRQfqC5fFBIihceyAfZcsClDMTd0Z6KvKPghoiMbYCjS0dTiBUprrEVBR5qvUxw+ZoT8pIJqAkkA0ASU/5I/PAeKiiy4aUm2fPeRn3wHMAEytR3OtzC6Ukz3yluPZ9rTTyszRYK40YCsgOqso8wnb0qItxglQUeY0cBUDxJrcE4CJz/vS7bcNszjwH7i7+8AsONN1qpZ9Xz0fWYPrMrMBcK+VOdRFrYGhPfLX8WjH8erP1JxWCUPUS63M3jXQQ0+OV9ZamU3T0GrJZFr3XEleSyNVlPmdoyBocg9tYzMubdfgTjCsG/H/bx+YTyDuM7Y2PZapWn57gu+8D72UcZOydd8VhiXjPYRkeyxmcwitJoeuxK0Vfzy4dNLx5Y8NfWHg2wDrdHa/fkigGN7Vpzo/99DBApmSI/fcR//4q7cSVe3ad3Bm+Uml2x4wcMRbsNt7A72Ieyv2oU7iqrEzPAk5PWRscnKJtiGzcuhR3PrFzt8OxNeluE8Zeu2aKa3MXc0kWzN1dsePozN1wAFt7eN3IQe0qhKP+pBWZtlghFP2qZlvN2aHnzf0ppk88J90aiadR7KRquq+kcn6vO+0DgqilaEgPzlQLzhye84+xaQVcC83gP81B18NIu9JPAAAAABJRU5ErkJggg==);
}

.arrow-right-white-filled-ce {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAA2CAYAAACvHjsIAAAACXBIWXMAAAsSAAALEgHS3X78AAACo0lEQVRYhe2ZMXLbMBBFV7IOoDKlUm26pEwpdWkIJyew1KWzdILYJ4h8AjknsL08QJQTROlCVbxBnBMks57lDLQCSYCESRf6MxLHILHzsMDig/JZYswfRHyDiIN9lv2GnjVIjPlnITwCwD0APKREfO1cGgj6hqsCstUZnAZaAcAFALzrC+4AKCUa8DUxZgIAH/uAcwLZ6hquFqhruCCgLuAaAz0XXBSgmHDRgdrCDWMCxNAodsC2UxYFKOaibgz0XGUfBNTFxlgL1LV1OIH6NNcDoMSYZd/HD52hr31AVAH1AlEF1Pshf/QSIE466aQuVffaw352DgBTAJhYt2Yp0TaUUzzyUuLZ9rRNiWZQYa7cYaMgGisxZiy2NK+LcQSUGMMdlzFArMHdAcDY53nt9puKUeTyAdndfWDmkukyFdO+K+4PrM5lmVkDwE1KlJdFLYHhNfLTcWsr8crP1JJWDcPUi5Ro5+rooTvHI6uUaF3VtZgyndadVJLX1Gglxlw5CoIHd1vXdyil7ercCEZ0of6+9oF5ApJ9xta6xTQV028P8FHWoZeGsknZumkKI9LxbkOyPVKjyUOryaG3qmkpLw8uHe34+seGtjDguwGW6cX9+qGBYnhXm+p8WkO5BTJhR265jn7JW28hrtqVb+eh5SeFLlvAgCPeXNzeG+hBtS3FhxpJqsbO8Djk9DAUk9NTtAkZlUPfVNMXcf56ILkuVDtn6HvTTKVEVyWDrM3UGX/tsyxHRM7Ie+veKwD4zO2ImO2zLKh6EPEH91fNHxBxioh/y/5ZeHCmDjigrXz8LuSAVlTiwT6UEi0qjHAiPjX13Y3F4WcVe9NUH/iPdmohnUWykaLqXrPJ+jzvtA4OkhJxkE8SqBUcu71kn2PyDLinGwD+A8jcaYUK01RdAAAAAElFTkSuQmCC);
}

.arrow-right-blue-filled {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMRJREFUeNrM18ENgzAMBVAHeSjG6BIMxLmXsEG6QY+9wQiMkA2KD1iyKhUFEmN/KQfE5cnCjgn9kGYAmOikz/OxgnECgb7iebHG/YJkEp3XjsseQCa4UhAnM45gyQNIHVcDkll33ES4xQOoGU4DBDVjRBt0GncnqGiMWIH+4jpwEq4UeqiKfHEniD/qeHT9oIfO0gbxYByvrDDYGFF9ddSAskC8W5UXLyLU1g8806aEiNqtiB62xCNQ0azQBpn/achsAgwAlJeImtPH6xMAAAAASUVORK5CYII=);
}

.arrow-right-blue-border {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAASZJREFUeNrk180NgjAYBuBiOgAj4AZ688gGsoFcPBM30BE8exAmsG6AN28yAhvIBvqStEnT8FvaYmKTN41g9MlX/Fq9zZ69CCEZwp6XqCQzDw+gj/S6mBsnQDniIyvpHkPuHFe5Ai34/MCXrjEvkQOvVIRckTfQNyRGfFcVOgF0lG/geoAp4bCAX65E5fB+5hSk4Oql3LnADQIpuFDCiSUsOS7D5xROQQquRm1N4iaBFFws4bTbiDGQBPM5SgtnHNSAi/kzN6jHWQU1tJGoD7cgPzJEpajlqoxeMmoJ0fVQp117IzUIMfKzpxMRXY3xrHOEoRqItq0jNbF10IGIts1VIHJTS097+kbSgrB2/KBjmhcQ6d8dYUWFwjG9wjZo9n8a8vgKMABqlss//KGVogAAAABJRU5ErkJggg==);
}

.arrow-right-red-filled {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAYAAACPZlfNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAaNJREFUeNrs1sFNw0AUANGAcENUQAmUBhWQdJASqCA1pATuOYCRcuAAghue3TfSlyzt+vJHY3m3AwAAAAAAAAAAAIAKp2V5WefBJrbBzR+EvV8fz+s8r7O/v1zerG77wr6yX+ewinu1woawneqawlQXFqa6qDDVhYWpLipMdWFhqosKU11YmOqiwlQXFqa6qDDVhYVNX11V2LTVjSBsqupGEjZFdaMKG7a60YUNV91MwoaobkZh6epmF5arjrBYdYTFqiMsVh1hseoIi1VHWKw6wmLVERarjrBYdYTFqiMsVh1hseoIi1VH2EarW8U9fXd4az+bk3VY5/jThTs72gTH6+fw+NtFwv6/ps8fjvNfXyJswzURFquJsFhNhMVqIixWE2GxmgiL1URYrCbCYjURFquJsFhNhMVqIixWE2GxmmYWlqxpNmH5mmYRNkxNIwsbsqYRhQ1d0yjCpqmpLmy6morCpq6pJExNAWFqighTU0CYmiLC1BQQpqaIMDUFhKkpIkxNAWFqighTU0CYmiqcluXRFgAAAAAAAAAAABDlQ4ABAFV0nnMW0lXRAAAAAElFTkSuQmCC);
}

.arrow-right-red-border {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGwAAABsCAYAAACPZlfNAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAiNJREFUeNrs3NEtQ2EYh/ESva8N2EAsoN3ABpigMQEjsEFNYAS1ADbQEXrfG+8blTTSJudGnef9nif5oigX559fDxcMBmZmZmZmZmZmZmbWRm/D4WWcE69E/zrc8fFpnM8Y7TnH8zL1p4Mdwl7izXjjQ4s4T3Fm56vVwsvWP2G/y5fHO9VxhG1LdT0WproCwlTXY2EfcW7Xg6gOMNgyxDzEOY3HkxTU4WtyrBwtx7v397p/uofFaPM4N/HwWHX9vYflSJNd3ySen8+9inPtva6/PyWqjipMdTBhqisgTHUwYaorIEx1MGGqKyBMdTBhqisgTHUwYaorIEx1MGGqKyCsRXVoYS2qKyesurpywqqra0JYJXVNCKukrllhVHXNCqOqUxhMncJg6hQGU6cwmDqFwdQpDKZOYTB1CoOpUxhMncL2X/416+v6bZdS3UWcs3znyOu3N1l5wfMf1uTL3KjDlywH33/p+rh5P3Owvx1ptB5o+iOkQ/N8CYyRZts+6WA91uRgME0OBtPkYDBNDgbT5GAwTQ4G0+RgME0OBtPkYDBNDgbT1OxgVE3NDUbX1MRglTSVHqyipnKDVddUZrBWNKEHa1ETcrCWNWEGUxNkMDUBBlMTZDA1AQZTE2QwNQEGUxNkMDUBBlMTZDA1AQZTE2QwNbEGG8d5V1OdnxLVBBlMTYDB1AQZTE2AwdQEGexVTWZmZmZmZmZmZmZme+pLgAEAKMehurtGjnsAAAAASUVORK5CYII=);
}

.arrow-right-transparent {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAL9JREFUeNrM18EJhTAMBuD4yF7iiG8D3aBOoE6gIzhCN9AcDARBqbYx+aEH8fIRTBqrYRpmAOjohKZuVjBORaBNPC/WuDNIJtDpD1z0ADLBpYI4kXEECx5A6rgckMx64DrCLR5AxXAaIMgZI9qgx7gvQUljxAp0ifuBk3Cl0ENV5IsvQfxRt3fXD3roLG0QD8b/mxUGCyOyr44cUBSIsVR58SVCbf3AJ21KiFa7FdHDlngHSpoV2iDzPw2ZXYABAIWufUJVMqD0AAAAAElFTkSuQmCC);
}


/* ------------------------------------------------ */

/* ---------------------------warnings---------------------- */
/*-----have to optimize / update this element styles----*/
#toolWarningbar {
    width: calc(100% - 18px);
}

#toolWarningbar.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

#toolWarningbar.alert {
    padding: 15px 8px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
}

#toolWarningbar a.close {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 0.2;
}

#toolWarningbar.fade.in {
    opacity: 1;
}

#toolWarningbar.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

/* ------------------------------------------------------------- */

/* ----------------info button icon----------------- */
.info-btn {
    margin: 0;
    margin-left: 2px;
    background-color: transparent;
    color: #3d6ccc;
    /* font-size: 0.8em; */
    cursor: pointer;
}

.hyperlink-dataitem {
    color: #3760c8;
    text-decoration: underline;
    cursor: pointer;
}

/* --------------------------------------------------------- */

/* ---------------highlight current rule element--------------- */
.highlight-current-rule-element {
    background-color: #eaf5fe !important;
    animation: zoominoutsinglefeatured 0.5s;
}

.highlight-current-rule-element table {
    background-color: #eaf5fe !important;
}

/* ------------------------------------------------------ */

/* ---------------abbreviation textarea and footnote textarea------------- */
#abbreviation_textarea_sub2,
#footnote_textarea_sub2 {
    width: calc(100% - 10px) !important;
    border: none !important;
    max-height: none !important;
}

#abbreviation_textarea,
#footnote_textarea {
    background-color: #e6e6e6;
}

#abbreviation_textarea .resultbox,
#footnote_textarea .resultbox {
    font-size: 14px !important;
    font-weight: normal !important;
    margin: 0;
}

#abbreviation_textarea table,
#footnote_textarea table {
    background-color: transparent !important;
}

#abbreviation_textarea_sub2 p,
#footnote_textarea_sub2 p {
    font-weight: normal !important;
}

/* --------------------------------------------------------------- */

/* -------------------------greyed out elements--------------- */
.greyed-out-disabled {
    background-color: #ffffff !important;
}

.greyed-out-disabled input:disabled+label,
.greyed-out-disabled select {
    background-color: #e8e8e8 !important;
}

.greyed-out-disabled select {
    filter: grayscale(100%);
    color: #999999 !important;
}

.greyed-out-disabled .radio-button:checked:disabled+label {
    background-color: #becdf1 !important;
}

/* -------------------------------------------------------- */

/*----haven't changed any properties for below elements -Raviraj-*/
/**************************************************************************/
/* ----------------------------export pdf--------------------------------- */
#exportPDF img {
    width: 100%;
}

#exportPDF {
    width: 7%;
    margin-top: 5px;
    padding: 5px;
    background: transparent;
    color: #000000;
    border: none;
    border-radius: none;
    box-shadow: none;
    cursor: pointer;
    font-family: RobotoCondensedBold;
    float: right;
}

/* ----------------------------------------------------------------------- */

/* ---------------------------dashboard--------------------------- */
.dashboard_title {
    width: 100%;
    display: none;
    background: #ccc;
}

.dashboard_title tbody tr td {
    padding: 5px;
}

/* ------------------------------------------------------------------- */

/* ------------------------------POPUP ----------------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 0 auto;
    padding: 0;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

.popup-custom-header {
    background: rgb(255, 255, 255);
    width: calc(100%);
    display: flex;
    text-align: center;
    justify-content: space-between;
}

.popup-close-button {
    font-size: 16px;
    color: rgb(0, 0, 0);
    padding: 10px;
    cursor: pointer;
    font-family: RobotoCondensedRegular;
}

.p-popup-custom-header {
    margin: 0;
    padding: 10px;
    font-family: RobotoCondensedBold;
    color: black !important;
}

.p-popup-custom-message>img {
    width: 99%;
}

.modal-body {
    padding: 2px 16px;
    overflow: auto;
    height: 300px;
}

.popup-custom-footer {
    background: rgb(255, 255, 255);
    margin: 0;
    padding: 1px;
    text-align: right;
    border-top: 1px solid #f2f2f2;
}

.popup-positive-btn {
    margin: 0;
    padding: 10px;
}

.positive-btn {
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-family: RobotoCondensedBold;
}

.popup-custom-message-body {
    width: calc(100% - 22px);
    margin: 10px;
    height: calc(100% - (20px + 19px + 20px));
    overflow: scroll;
}

.popup-custom-message-body::-webkit-scrollbar {
    display: none;
}

.rule-count {
    padding: 4px;
    margin: 0;
    font-family: RobotoCondensedBold;
    font-size: 16px;
    color: rgb(61, 127, 250);
    text-align: center;
}

.dash-applied-rule {
    border-bottom: 2px solid #ccc;
}

.dash-applied-rule b {
    color: rgb(248, 104, 104);
}

.split-section {
    width: 100%;
    margin: 0;
}

.split-section>p {
    width: 45%;
    display: inline-block;
    vertical-align: text-top;
    margin: 0;
    padding: 5px;
}

#elementExtraInfoPopup>.modal-content,
#warningPopupSingleButtonForRecommendationElement>.modal-content {
    width: calc(100% - 22px);
    height: calc(90% - 14px);
    margin: 0 !important;
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#elementExtraInfoPopup>.modal-content>.extra-custom-modal-body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#elementExtraInfoPopup .popup-custom-header,
#warningPopupSingleButtonForRecommendationElement .popup-custom-header {
    background-color: #cccccb;
}

#elementExtraInfoPopup .popup-close-button {
    color: #000000;
}

#elementExtraInfoPopup .p-popup-custom-header {
    color: #000000 !important;
}

#warningPopupSingleButtonForRecommendationElement .popup-custom-header {
    justify-content: space-between !important;
}

#warningPopupSingleButtonForRecommendationElement .custom-modal-body {
    height: calc(100%);
}

#warningPopupSingleButtonForRecommendationElement .popup-custom-message-body {
    height: calc(100% - (19px + 20px + 19px + 33px + 14px));
}

#system-messages>.modal-content,
#pdf-error-popup>.modal-content,
#moreInfo-error-popup>.modal-content,
#warning-popup>.modal-content {
    height: 15vh;
    width: 85vw;
    position: relative;
    top: 15%;
}

#system-messages .popup-custom-header,
#pdf-error-popup .popup-custom-header,
#moreInfo-error-popup .popup-custom-header,
#warning-popup .popup-custom-header{
    background-color: #cccccb;
}

#system-messages .popup-custom-header,
#system-messages .popup-custom-message-body,
#pdf-error-popup .popup-custom-header,
#pdf-error-popup .popup-custom-message-body,
#moreInfo-error-popup .popup-custom-header,
#moreInfo-error-popup .popup-custom-message-body,
#warning-popup .popup-custom-header,
#warning-popup .popup-custom-message-body {
    display: flex;
    justify-content: center;
    align-items: center;
}

#system-messages .popup-custom-message-body,
#pdf-error-popup .popup-custom-message-body,
#moreInfo-error-popup .popup-custom-message-body,
#warning-popup .popup-custom-message-body {
    width: calc(100% - 20px);
    height: calc(15vh - (20px + 19px + 20px));
    overflow: hidden;
}

#system-messages .p-popup-custom-message,
#pdf-error-popup .p-popup-custom-message,
#moreInfo-error-popup .p-popup-custom-message,
#warning-popup .p-popup-custom-message {
    margin: 0 !important;
}

#system-messages .p-popup-custom-header,
#pdf-error-popup .p-popup-custom-header,
#moreInfo-error-popup .p-popup-custom-header,
#warning-popup .p-popup-custom-header {
    color: #303030;
}

#system-messages .popup-custom-footer,
#pdf-error-popup .popup-custom-footer,
#moreInfo-error-popup .popup-custom-footer,
#warning-popup .popup-custom-footer {
    width: calc(100% - 2px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* -------------------------------------------------------------------- */

/* ----------------------extra buttons----------------- */
.extra-btn label {
    color: #ffffff !important;
    background-color: #4e4e4e !important;
    border: solid 1px #4e4e4e !important;
    cursor: pointer;
}

.extra-btn :checked+label {
    color: #000000 !important;
    background-color: #c4c3c3 !important;
    border: solid 1px #c4c3c3 !important;
}

.extra-btn label:hover {
    color: #000000 !important;
}

.resetPopupBtn label {
    color: #ffffff !important;
    background-color: #4e4e4e !important;
    border: solid 1px #4e4e4e !important;
    cursor: pointer;
}

.resetPopupBtn label:hover {
    color: white !important;
    background-color: #3d6dcc !important;
    border: 1px solid #3d6dcc !important;
}

.resetPopupBtn :checked+label {
    color: #fff !important;
    background-color: #446ec1 !important;
    border: 1px solid #446ec1 !important;
}

/* ----------------------------------------------------- */

/*--------------------------Standard Table Declaration for abbreviation textarea------------------------*/
#abbreviation_textarea .table {
    border-collapse: collapse;
}

#abbreviation_textarea .table tr:not(:last-child) {
    border-bottom: 1px solid white;
}

#abbreviation_textarea .table tr>td:first-child {
    width: 35% !important;
    border-right: 1px solid white;
}

#abbreviation_textarea .table tr>td:last-child {
    width: 65% !important;
}

#abbreviation_textarea .table tr>td {
    padding: 4px;
    border-collapse: collapse;
}

/* ---------------------------------------------------------- */

/* -----------------medication plan------------------- */
.medicationPlanTable {
    background-color: transparent !important;
}

.medicationPlanDiv th {
    background-color: #f3f3f3 !important;
    font-size: large !important;
}

.medicationPlanDiv tr {
    margin-bottom: 4px;
}

.medicationPlanDiv tr td {
    font-size: 14px;
}

.medicationPlanDiv tr td p {
    width: calc(100% - 7px) !important;
    font-size: 14px;
    padding-left: 5px;
    padding-right: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.medicationPlanDiv .medicationName {
    font-size: 14px;
    font-family: RobotoCondensedBold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.medicineTitle {
    font-size: large !important;
}

/* --------------------------------------------------------- */
/************************************************************************/

/* ------------did not found these element in DOM of tools---------------- */
/**----some of these style are being used in cdss editor---------**/
/**----some of these elements are used quite rarely, some are haven't used yet. for styling such tools, create a test tool on cdss editor containing these elements and then apply styles------**/

.resizeAllowed {
    background-color: #e7eab2 !important;
    border: 2px solid #d6d852 !important;
    height: 10rem;
    overflow: scroll;
}

#mainDiv div.banner {
    position: absolute;
    background-color: #d9d9d9;
    color: #000;
}

#mainDiv ul.list {
    margin: 0;
    padding-left: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#mainDiv ul.list li {
    list-style-type: none;
    color: #4d4d4d;
    font-size: 16px;
    white-space: normal;
}

#mainDiv ul.list li:before {
    content: "- ";
}

#mainDiv .preview_triangle_solid_green_right {
    height: 35px;
}

#mainDiv .footer-button-click {
    width: 100%;
    color: white;
    height: 40px;
    font-family: RobotoCondensedRegular !important;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    font-size: 14px;
}

#mainDiv .footer-button:active {
    background-color: #808080;
    text-align: center;
    height: 40px;
    border: 1px solid white;
    font-size: 14px;
}

#mainDiv .mfooter-button {
    width: 96%;
    color: white;
    height: 30px;
    font-family: RobotoCondensedRegular !important;
    background-color: #4c4c4c;
    border: none;
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

#mainDiv .mfooter-button:active {
    width: 96%;
    color: white;
    height: 30px;
    font-family: RobotoCondensedRegular !important;
    background-color: #4c4c4c;
    border: none;
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
}

#mainDiv div.resultGroupBox p {
    display: inline;
}

#mainDiv div.resultGroupBox {
    padding: 5px;
    margin-top: 5px;
    margin-left: 3px;
    margin-right: 3px;
    text-align: left;
    font-size: 14px;
    color: #ffffff;
}

#mainDiv div.resultGroupBox+div {
    margin-left: 3px;
    margin-right: 3px;
}

#mainDiv .blue {
    background-color: #3761c8;
    font-size: 16px;
}

#mainDiv .blue-border {
    border: solid 1px #3760c8;
}

#mainDiv .green {
    background-color: #77b259;
    font-size: 16px;
}

#mainDiv .green-border {
    border: solid 1px #77b259;
}

#mainDiv .radio-group {
    width: 100%;
    padding: 5px 2px;
}

#RecommendationElementShowHide {
    width: 100%;
    margin-top: 5px;
    padding: 5px;
    background: #1c6b55;
    color: #ffffff;
    border: none;
    border-radius: none;
    box-shadow: none;
    cursor: pointer;
}

#mainDiv .unordered-list {
    padding-left: 25px;
    list-style: square;
}

#mainDiv .footnotes-box {
    margin-top: 10px;
    width: 95%;
    height: auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-family: RobotoCondensedRegular !important;
    text-align: left;
    background-color: #d0d0d0;
    font-size: 16px;
    color: #303030;
    font-style: italic;
    float: left;
    padding: 5px;
}

#mainDiv .slider {
    width: 100%;
}

.float-right {
    float: right;
    padding-right: 10px;
}

.clearfix {
    zoom: 1;
}

sup {
    font-size: 0.7em;
    vertical-align: super;
}

.timer-bar {
    width: 100%;
    text-align: center;
    height: 20px;
    padding: 10px 0px;
    background: rgb(61, 127, 250);
    font-size: 25px;
    color: #fff;
}

.reset-clock {
    background-image: url("img/refresh.png");
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: 100%;
    height: 41px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.clock-table {
    background: rgb(61, 127, 250);
    width: 100%;
}

.blur-bg {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

input[type="time"] {
    height: 15px;
}

.no_header {
    display: none !important;
}

/* -------------------------------------------------- */

/*=================STANDARD STYLES FOR INLINE & BLOCK ELEMENTS IN ALL EXTRA INFORMATION POPUPS===================*/

/*------------Styles for anchor tag / hyperlinks---------*/
.popup-custom-message-body a {
    color: blue;
    text-decoration: underline;
}

.popup-custom-message-body .data-item-label {
    font-family: RobotoCondensedBold;
}

/*------------------------------------------------------*/

/*---Headline Definition - 4 Level (Note: Display: none! Exception Level 4 clarify behavior with Editor)---*/
.popup-custom-message-body p.h1:first-child {
    margin-top: 0px;
}

.popup-custom-message-body p.h1,
.popup-custom-message-body p.h2,
.popup-custom-message-body p.h3,
.popup-custom-message-body p.h4 {
    font-family: RobotoCondensedBold;
}

.popup-custom-message-body p.h1 {
    color: #08338f;
    margin: 10px 0px 3px 2px;
    font-size: 37px;
}

.popup-custom-message-body p.h2 {
    color: #298a08;
    margin: 5px 0px 0px 2px;
    font-size: 34px;
}

.popup-custom-message-body p.h3 {
    color: #ff8000;
    margin: 5px 0px 0px 2px;
    font-size: 30px;
}

.popup-custom-message-body p.h4 {
    color: #585858;
    margin: 2px 0px 0px 2px;
    font-size: 26px;
}

/* ---------------------------------------------------------- */

/*-----------------------Enumeration with Bullet Points - First Level------------------------*/
.popup-custom-message-body p.listlevel1::before {
    content: "\2022";
    padding-right: 2px;
}

.popup-custom-message-body p.listlevel1 {
    text-indent: -9px;
    padding-left: 20px;
}

/* ---------------------------------------------------------- */

/*-----------------------Enumeration with Hyphen - Second Level------------------------*/
.popup-custom-message-body p.listlevel2::before {
    content: "\2212";
    padding-right: 2px;
}

.popup-custom-message-body p.listlevel2 {
    text-indent: -14px;
    margin-left: 20px;
}

/* ---------------------------------------------------------- */

/*-----------------------Numbered List, first and second Level Note: also latin, small/big letters ------------------------*/
.popup-custom-message-body ol {
    counter-reset: item;
    padding: 0px 12.5px 0px 17px;
}

.popup-custom-message-body ol ol {
    padding-top: 2px;
}

.popup-custom-message-body ol li {
    display: block;
    text-indent: -16px;
    padding-left: 16px;
    padding-bottom: 2px;
}

.popup-custom-message-body ol li li {
    text-indent: -32px;
    padding-left: 32px;
    padding-top: 2px;
}

.popup-custom-message-body ol li li li {
    text-indent: -38px;
    padding-left: 38px;
    padding-top: 2px;
}

.popup-custom-message-body ol li::before {
    content: counters(item, ".") ".";
    counter-increment: item;
    padding-right: 5px;
    margin-left: -5px;
}

/* ---------------------------------------------------------- */

/*-----------------------Standard Source Code with div box------------------------*/
.popup-custom-message-body div.box {
    background: #f5f5f5;
    border: 1px solid #fff;
    padding: 2px 2px 2px 2px;
    margin: 5px 7px 7px 2px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------------- */

/*-----------------------Standard reference with div container------------------------*/
.popup-custom-message-body p.reference {
    font-size: 16px;
    margin-bottom: 5px;
}

.popup-custom-message-body div.ref {
    background: #e6e8fa;
    border: 1px solid #fff;
    padding: 5px 2px 2px 2px;
    margin: 7px 1px 14px 5px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------------- */

/*-----------------------Standard footnote with div container------------------------*/
.popup-custom-message-body p.footnote {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 5px;
}

.popup-custom-message-body div.footn {
    background: #d9d9f3;
    border: 1px solid #d9d9f3;
    padding: 2px 2px 0px 2px;
    margin: 7px 1px 10px 5px;
    border-radius: 5px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ---------------------------------------------------------- */

/*----------Standard Image Declaration with div container - use div container for Images and Algorithm-----------*/
.popup-custom-message-body div.legend {
    margin-top: 7px;
    margin-bottom: 7px;
    margin-left: 1px;
    border: 0px solid #a6003a;
    color: #58585a;
    padding: 0px 12.5px 0px 12.5px;
}

/* ---------------------------------------------------------- */

/*-----------------------Standard Image/Algorithm caption------------------------*/
.popup-custom-message-body img {
    width: 100%;
}

.popup-custom-message-body p.fig-caption {
    font-family: RobotoCondensedBold;
    color: #3e3d40;
    text-align: left;
    margin-top: 14px;
}

/* ---------------------------------------------------------- */

/*--------------------------Standard Table Declaration------------------------*/
.popup-custom-message-body table th,
.popup-custom-message-body table td,
.popup-custom-message-body table,
.popup-custom-message-body table.recomm-table {
    border-collapse: collapse;
    font-size: 16px;
}

.popup-custom-message-body table+table {
    margin-top: 10px;
}

.popup-custom-message-body table.recomm-table+table.recomm-table {
    margin-top: 10px;
}

.popup-custom-message-body table th,
.popup-custom-message-body table td {
    padding: 2px 4px;
}

/*------------------------------------------------------*/

/*------------------------------Caption----------------------------*/
.popup-custom-message-body caption {
    margin: 0px 2px 3px 2px;
    text-align: left;
}

/* ---------------------------------------------------------- */

/*-----------Standard Table head declaration, first, second Level and third Level----------*/
.popup-custom-message-body th.table-header1 {
    background-color: #e9e7c1;
}

.popup-custom-message-body th.table-header2 {
    background-color: #cacaca;
}

.popup-custom-message-body th.table-header3 {
    background-color: #f1e3e8;
    vertical-align: top;
}

.popup-custom-message-body th.table-header4 {
    background-color: #4ea1d1;
    vertical-align: top;
}

/* ---------------------------------------------------------- */

/*---------------Border behavior of table header---------------	*/
.popup-custom-message-body th.table-header1+th.table-header1 {
    border-left: 1px solid rgb(182, 181, 181);
}

.popup-custom-message-body th.table-header2+th.table-header2 {
    border-left: 1px solid #e5e5e5;
}

.popup-custom-message-body th.table-header3+th.table-header3 {
    border-left: 1px solid #bfbfbf;
}

.popup-custom-message-body th.table-header4+th.table-header4 {
    border-left: 1px solid #bfbfbf;
}

/* ---------------------------------------------------------- */

/*----------Standard Table Header Text declaration---------------*/
.popup-custom-message-body p.table-title1 {
    color: #000000;
}

.popup-custom-message-body p.table-title2 {
    color: #ffffff;
}

.popup-custom-message-body p.table-title1,
.popup-custom-message-body p.table-title2 {
    text-align: left;
    padding-left: 2px;
    font-family: RobotoCondensedBold;
}

/* ---------------------------------------------------------- */

/*-------------------Standard Table Text----------------------*/
.popup-custom-message-body p.table-text,
.popup-custom-message-body p.table-text-right,
.popup-custom-message-body p.table-text-cent,
.popup-custom-message-body p.table-text-left {
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 0px;
    margin: 0;
}

.popup-custom-message-body p.table-text-cent {
    text-align: center;
}

.popup-custom-message-body p.table-text-left {
    text-align: left;
}

.popup-custom-message-body p.table-text-right {
    text-align: right;
}

/* ---------------------------------------------------------- */

/*---------Table Cell Declaration Background any color (Column background) (don't know the working)----------*/
.popup-custom-message-body td.col-pink1 {
    background-color: #f3dee3;
    vertical-align: top;
}

/* ---------------------------------------------------------- */

/*----------------------------Different Text Highlighting Character styles---------------------------*/
.popup-custom-message-body span.bold {
    /*---------Bold Text----------*/
    font-family: RobotoCondensedBold;
}

.popup-custom-message-body span.normal {
    /*---------Normal Roboto Text----------*/
    font-weight: normal;
    font-family: RobotoCondensedRegular;
}

.popup-custom-message-body span.italic {
    /*---------Italic Text--------------*/
    font-style: italic;
}

.popup-custom-message-body span.underline {
    /*--------------Text Underlined--------------*/
    text-decoration: underline;
}

.popup-custom-message-body span.text-white {
    /*--------------Text font white--------------*/
    color: #ffffff;
}

.popup-custom-message-body span.text-sup {
    /*--------------Super-script--------------*/
    vertical-align: super;
}

.popup-custom-message-body span.text-sub {
    /*--------------Sub-script--------------*/
    vertical-align: sub;
}

.popup-custom-message-body span .text-sub,
.popup-custom-message-body span .text-sup {
    font-size: 0.7em;
    line-height: 100%;
}

/* ---------------------------------------------------------- */
/*=================================================================================*/

/*================STYLES FOR COMMONLY USED ELEMENTS IN ALL EXTRA INFROMATION POPUPS==================*/
/*---------------------------Styles for tool info popup-------------------------------*/
.tool-info-table table {
    border: none;
    border-spacing: 0;
}

.tool-info-table table th,
.tool-info-table table td {
    border-right: 1px solid rgb(109, 109, 109);
    border-bottom: 1px solid rgb(109, 109, 109);
}

.tool-info-table table tr:first-child td {
    border-top: 1px solid rgb(109, 109, 109);
}

.tool-info-table table td:first-child {
    border-left: 1px solid rgb(109, 109, 109);
}

.tool-info-div .tool-info-header {
    margin: 5px 0;
}

.tool-info-div .tool-info-header:first-child {
    margin-top: 0;
}

.tool-info-header {
    font-family: RobotoCondensedBold;
}

.tool-info-content {
    overflow-x: scroll;
    word-break: keep-all;
}

.tool-info-content>* {
    margin: 0;
}

.tool-info-table {
    overflow-x: scroll;
}

.tool-info-table table {
    margin-top: 5px !important;
    padding: 0 !important;
    min-width: 100%;
}

.tool-info-table tr:first-child td,
.tool-info-table tr:first-child th {
    background-color: #d5d5d5ff;
}

.tool-info-table table tr td,
.tool-info-table table th {
    text-align: left;
}

.tool-info-table table p {
    margin: 0;
}

/*------------------------------------------------------------------*/

/*--------------Styles for recommendation infromation popup-----------*/
.rule-info-table {
    border: none;
    border-spacing: 0;
    width: 100%;
}

.rule-info-table th,
.rule-info-table td {
    border: 1px solid rgb(109, 109, 109);
    border-collapse: collapse;
}

.rule-info-table tr:first-child td,
.rule-info-table tr:first-child th {
    background-color: #d5d5d5ff;
}

.rule-info-table tr td,
.rule-info-table tr th {
    background-color: #ffffff;
}

.rule-info-table tr td,
.rule-info-table th {
    text-align: left;
}

/*------------------------------------------------------------------*/
/*=================================================================================*/

/**------zoom in, zoom out effect for newly / updated elemts---**/
@keyframes zoominoutsinglefeatured {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.05, 1.05);
    }

    100% {
        transform: scale(1, 1);
    }
}

/**----styles for element on smaller screens-----**/
@media screen and (max-width: 786px) {
    .resetPopupBtn {
        /*---different looks for reset popup on different screens*/
        width: 47% !important;
    }

    .tool-info-table table {
        /*---these widths are there to make the tabels scrollable on mobile devices---*/
        max-width: 850px;
        min-width: 100%;
    }

    .tool-info-table table.scrollable,
    .tool-info-table table.fixed {
        width: calc(100% + 30vw) !important;
        border-spacing: 0;
        border-collapse: separate;
    }

    /*---.fixed class will ---*/
    .fixed tr td:first-child,
    .fixed tr th:first-child {
        position: -webkit-sticky;
        position: sticky;
        left: 0px;
        background-color: white;
        width: 35vw !important;
    }
    .extra-btn :not(:checked) + label {
        color: #ffffff !important;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .extra-btn :not(:checked) + label {
        color: #ffffff !important;
    }
}

@media screen and (min-width: 1024px) {
    .extra-btn :not(:checked)+label {
        color: #ffffff !important;
    }
}
/*-----removed these styles, causing over-rights*/
/* input[type="text"] {
  resize: none;
  overflow: hidden;
  transition: height 0.2s;
  height: 4em;
  padding: 5px;
}

#mainDiv div div:nth-child(3) {
  white-space: normal;
}

.infoTextButton {
  display: flex;
  align-items: center;
  margin-right: 10px;
  padding-left: 5px;
}

.BB_Label_Textbox_Dropdown .textbox {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
  margin-top: 3px !important;
}

.checkboxButtonBox td:first-child {
  width: 72% !important;
}

.checkboxButtonBox td:nth-child(2) {
  width: 23% !important;
}

div .medicationPlanDiv {
  overflow-x: scroll;
  min-width: 300px !important;
  margin-bottom: 0px !important;
}

tr.recommendation_box_radioGroup td {
  vertical-align: middle !important;
} */

/* .tool-info-table {
  width: 100%;
  padding-bottom: 15px;
  border-collapse: collapse;
  margin-bottom: 1%;
}

.tool-info-table-tr {
  border: none !important;
}

.tool-info-table-field {
  font-family: RobotoCondensedBold;
  border: none !important;
  padding: 5px !important;
  padding-left: 15px !important;
}

.tool-info-table-td,
.tool-info-table-th {
  border: none !important;
  padding: 5px !important;
  padding-left: 15px !important;
}

.toool-info-table-title {
  background-color: #cccccb;
  color: #000000;
}

.tool-info-table-td img {
  width: 100%;
} */

/* .extraInfoForRule p {
  margin: 0px;
  padding-bottom: 2px !important;
  padding: 0px 12.5px 0px 5px;
  width: calc(100% - (17.5px + 14px));
} */

/* .popup-custom-message-body .table tr > td p,
.popup-custom-message-body .table tr > td {
  text-align: left !important;
  padding-left: 5px !important;
} */

/* .popup-custom-message-body .tool-info-table-td tr > td p {
  text-align: left !important;
  padding-left: 5px !important;
} */

/* .popup-custom-message-body .tool-info-table-td tr:first-child td {
  background-color: #cccccb;
} */

/* .popup-custom-message-body tr:first-child {
  border-bottom: 1px solid #bfbfbf;
}

.popup-custom-message-body th + th {
  padding-left: 3px;
}

.popup-custom-message-body tr + tr {
  border-bottom: 1px solid #9c9c9c;
}

.popup-custom-message-body td + td {
  border-left: 1px solid #bfbfbf;
  padding-left: 3px;
}

.popup-custom-message-body td {
  background: #ffffff;
} */
/*----------------------------------*/


.d-flex {
    display: flex !important;
}

.d-none {
    display: none !important;
}

.visibility-hide {
    visibility: hidden;
}

.visibility-show {
    visibility: visible;
}

.visibility-unset {
    visibility: unset;
}