html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/



/* KGL Customization CSS*/

.st_border_select {
  border: 3px solid #0bafe5;
}

.st_bg-primary-transparent {
  background-color: rgb(255 255 255) !important;
}

.dark-theme .st_bg-primary-transparent {
    background-color: #1f2940 !important;
}

input {
  background: #fff;
}

#form {
  width: 40vw;
  margin: 0 auto;
  margin-top: 50px;
}

.st_input-box.active-grey {
  .st_input {
    border: 1px solid #dadce0;
  }

  .st_input-label {
    top: -8px;
    background: #fff;
    transition: 250ms;
    z-index:1 !important;

    svg {
      position: relative;
      width: 11px;
      height: 11px;
      top: 2px;
      transition: 250ms;
    }
  }
}

.st_input-box {
  position: relative;
  margin: 15px 0;

  .st_input-label {
    position: absolute;
    color: #57585c;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 7px;
    top: 15px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;

    svg {
      position: relative;
      width: 15px;
      height: 15px;
      top: 2px;
      transition: 250ms;
    }
  }

  .st_input {
    box-sizing: border-box;
    height: 50px;
    width: 100%;
    border-radius: 4px;
    color: #202124;
    border: 1px solid #bfbfbf;
    padding: 8px 13px;

    transition: 250ms;

    &:focus {
      outline: none;
      border: 1px solid #1a73e8;
      transition: 250ms;
    }
  }
}

.st_input-box.error {
  .st_input-label {
    color: #f44336;
    top: -11px;
    background: #fff;
    transition: 250ms;
  }

  .st_input {
    border: 1px solid #f44336;
  }
}

.st_input-box.focus,
.st_input-box.active,
.st_input-box.fixed-focus {
    .st_input-label {
    color: #57585c;
    top: -11px;
    background: #fff;
    transition: 250ms;

    svg {
      position: relative;
      width: 11px;
      height: 11px;
      top: 2px;
      transition: 250ms;
    }
  }
}

.st_input-box.active {
  .st_input {
    border: 1px solid #1a73e8;
  }
}

 
.st_margin {
    margin : 0 0;
}


& .dark-theme .st_input {
    box-sizing: border-box;
    height: 50px;
    width: 100%;
    border-radius: 4px;
    color: #ffffff !important;
    border: 1px solid #bfbfbf;
    padding: 8px 13px;
    transition: 250ms;
    &:;
}

& .dark-theme .st_input-label {
    /* background: #1f2940;*/
    /*    z-index: 500 !important;*/
}

& .dark-theme .st_input-label {
    color: #ddd4d4 !important;
    background: #1f2940 !important;
}

/*File upload drag and drop design KGL*/
.st_drop-container {
    position: relative;
    display: flex;
    gap: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90%;
    padding: 5px;
    border-radius: 10px;
    border: 2px dashed #555;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
}

    .st_drop-container:hover {
        background: #eee;
        border-color: #111;
    }

        .st_drop-container:hover .st_drop-title {
            color: #222;
        }

.st_drop-title {
    color: #444;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
}

.form-control:disabled, .form-control[readonly] {
    background-color: #fff;
}


.st_kgl_logo {
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    margin-left: 0px;
    background: #fff;
    height: 55px;
    border-top: 1px solid #eae8f1;
    position: fixed;
    padding-top: 13px;
}
/*.st_kgl_logo {
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    margin-left: 0px;
    background: #fff;
    height: 39px;
    border-top: 1px solid #eae8f1;
    position: fixed;
    padding-top: 3px;
}*/

.dt-buttons.btn-group {
    position: unset;
    top: auto;
    inset-inline-start: auto;
}

    .dt-buttons.btn-group button {
        margin: 0px 5px;
        border-radius:3px !important;
    }

.no-padding {
    padding: 0;
}

.st_input-label {
    z-index: 1;
}

.ui-datepicker-month, .ui-datepicker-year {
    display: inline;
    min-width: 60px;
    height: inherit;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4d5875;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8f1;
    border-radius: 3px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none;
    margin: 0px 2px !important;
    cursor: pointer;
}

.ui-datepicker-calendar td a {
    text-align: center;
}

input[type=checkbox] {
    cursor: pointer;
}

.fa-trash-alt {
    color: #ff2c69;
}

.fa-edit {
    color: #a47fff;
}

.fe-check-circle {
    color: green;
}

.fa-times-circle {
    color: orange;
}

.fa-star {
    color: lightgray;
}

    .fa-star.active {
        color: orange;
    }

td.editable {
    border: 1px solid lightblue !important;
}

    td.editable:focus {
        border-color: lightblue;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px lightblue;
        outline: 0 none;
    }

.card {
    border: 1px solid #e9e9e9;
}

/* Custom Radio design start by Arunkumar */
input[type="radio"] {
    appearance: none;
    border: 0px solid #red;
    width: 24px;
    height: 24px;
    content: none;
    outline: none;
    margin: 0;
    float: right;
    margin-top: -1.0em;
    margin-right: -0.7em;
}

input[type="radio"]:checked {
    appearance: none;
    outline: none;
    padding: 0;
    content: none;
    border: none;
}

input[type="radio"]:checked::before {
    color: white !important;
    content: "\00A0\2713\00A0" !important;
    font-weight: bolder;
    font-size: 17px;
    background: #eb2227;
    border-radius: 50%;
    margin-top: -1.0em;
    margin-left: 1px;
}

.form-check-input:checked {
    background-color: #eb2227;
    /*border-color: #0d6efd;*/
    /* border-color: #0d6efd;*/
}
/* Custom Radio design end */



/* _FTPDetails partial page css start Added by Ramkumar on 13th Dec 2023*/
.clscardspan {
    font-weight: 400;
    color: #80868b;
    font-size: 12px;
}

.clscardspanout {
    color: #607086;
    font-weight: 400;
    font-size: 12px;
}

.clsendtxt {
    text-align: end;
    font-weight: 600;
    font-size: 12px;
}

.toast {
    max-width: none;
    width: 100%;
    min-height: 170px;
}

.r1label {
    font-weight: 500;
    font-size: 13px;
    color: #031b4e;
}

.clsmobFtheaderimg {
    margin-block-start: 0.5rem;
    width: 65%;
}

.clsupdatebtn:hover {
    cursor: pointer;
}

.clsupdatebtn {
    width: 50%;
}

.sweet-alert .confirm {
    background-color: #198754 !important;
    color: #fff !important;
}

.toast-body {
    overflow: auto;
}

.clsStatusbtn {
    float: right;
}

.clsStatuslabel {
    margin: 6px 0px;
    padding: 0 !important;
}

@media only screen and (max-width: 600px) {
    .clsendtxt {
        text-align: start;
    }

    .clsmobFtheader {
        margin-block-start: 0.5rem !important;
        padding-inline-start: 1.5rem !important;
    }

    .clsmobFtheaderimg {
        margin-block-start: 0.5rem !important;
        width: 30%;
    }

    .clsStatusbtn {
        float: unset;
    }

    .btn-primary.data-table-btn {
        position: unset;
        inset-inline-start: 0px;
    }

    .clsupdatebtn {
        width: 65%;
    }

    .setDefault img {
        width: 25% !important;
    }

}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    .clsendtxt {
        text-align: start;
    }

    .clsmobFtheader {
        margin-block-start: 0.5rem !important;
        padding-inline-start: 1.5rem !important;
    }

    .clsmobFtheaderimg {
        margin-block-start: 0.5rem !important;
        width: 20%;
    }

    .clsupdatebtn {
        width: 65%;
    }

    .setDefault img {
        width: 60% !important;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1600px) {
    .clsupdatebtn {
        width: 65%;
    }
    .setDefault img {
        width: 60% !important;
    }
}
/* _FTPDetails partial page css end */


/*Article History start*/
.typeahead > li > a {
    float: left;
    width: 100%;
    color: var(--bs-secondary);
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    padding: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    background: #fff;
}

.typeahead > li.active > a {
    float: left;
    width: 100%;
    color: #fff;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
    padding: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    background: var(--primary-bg-color);
}

#divArticleHistory .clsSpinloader, #graphicsDetail .clsSpinloader {
    position: absolute;
    top: 18px;
    right: 18px;
    color: var(--primary-bg-color);
}

.clslink_Primary {
    text-decoration: underline;
    color: var(--bs-primary) !important;
    cursor: pointer;
}

.default_Primary {
    color: var(--bs-primary) !important;
}

#divArticleHistory .tabs-style-3 .nav.panel-tabs li a {
    border-radius: 0px;
    padding: 0.4rem 1rem;
}

    #divArticleHistory .tabs-style-3 .nav.panel-tabs li a.active {
        background: #00b9ff !important;
    }

#divArticleHistory #btnmore, #btnless {
    margin: 0 5px 5px 0;
}

#divArticleHistory .clsFilelable {
    display: flex;
    text-decoration: underline;
}

    #divArticleHistory .clsFilelable:hover {
        cursor: pointer;
    }

#divArticleHistory .reset {
    all: revert;
    border: 1px solid #e9e9e9;
}

#divArticleHistory legend {
    float: none;
    width: auto;
}

#divArticleHistory .clsrefreshbtn:hover {
    cursor: pointer;
}

#divArticleHistory .card-dashboard-eight .list-group-item span {
    font-family: "Roboto", sans-serif !important;
}

#divArticleHistory .card.card-RL {
    border-left: 2px solid #ff7600 !important;
    border-right: 2px solid #ff7600 !important;
}

#divArticleHistory .card.card-R {
    border-right: 2px solid #ff7600 !important;
}

#divArticleHistory .card.card-L {
    border-left: 2px solid #ff7600 !important;
}

#divArticleHistory .clsReportlegend {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #f9f9f9;
    padding: 4px 8px !important;
}

#divArticleHistory #divArticleDetails .card .card-body span {
    font-weight: 600;
    color: #1c273c;
}

#divArticleHistory .cardShadow {
    box-shadow: -8px 12px 18px 0 #dadee8 !important;
}
/*Article History end*/

/* Customize input text box with label start */

.st_input-group-text, .form-check-inline label {
    font-size: 0.75rem;
    color: #80868b;
    padding-inline-start: 0.5rem;
}

.st_input-group-text {
    width: 25%;
    flex: .5 0 auto;
    display: flex;
    padding: 0.375rem 0.75rem;
    padding-inline-start: 0.5rem;
    margin-block-end: 0;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
    background-color: #fbfbfb;
    border: 1px solid #eae8f1;
    padding-block-start: 0;
    padding-block-end: 0;
    align-items: center;
    border-radius: 0;
}

.input-group .select2-container--default, .input-group .select2-container--default {
    position: relative;
    flex: 1 1 auto;
    width: 1% !important;
    margin-left: -10px !important;
}

.input-group .select2-container .select2-selection--single, .input-group .select2-container .select2-selection--single {
    height: 30px;
}

.input-group .select2-selection__arrow {
    height: 6px !important;
}

.input-group input {
    height: 30px;
}

/* Customize input text box with label End */


/* Customize table design start */
.st_table thead th {
    border-color: rgba(251,188,11,.1);
    background-color: #fbfbfb;
    color: #8e9093;
    font-weight: 400;
    font-size: 0.75rem;
}

.st_table tbody td {
    font-size: 0.75rem;
    border-color: rgba(251,188,11,.1);
}

.st_table.dataTable thead th {
    border-color: rgba(251,188,11,.1);
    background-color: #fbfbfb;
    color: #8e9093;
    font-weight: 400;
    font-size: 0.75rem;
}

/* Customize table design End */

/*Journal Code by Karthik*/
@media (min-width: 576px) {
    .wizard > .steps a .number, .wizard > .steps a:hover .number, .wizard > .steps a:active .number {
        font-size: 0.765rem;
        font-weight: 500;
        line-height: 2.4;
        width: 30px;
        height: 30px;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0rem;
        padding-left: 0rem;
    }
}

@media (min-width: 320px) {

    .journalTAT-nav-line li {
        background: none !important;
        font-size: 0.765rem;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .columngap {
        display: flex;
        column-gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .cardoverflow, .Listoverflow {
        padding: 0.1rem !important;
        overflow-x: auto;
    }

    .journalTAT-nav-line {
        flex-direction: initial;
    }
}

@media (min-width: 375px) {
    .Journal-navbar-expand-sm {
        flex-wrap: wrap;
        column-gap: 30px;
    }
}


@media (min-width: 768px) {


    .columngap {
        display: flex;
        column-gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .cardoverflow, .Listoverflow {
        padding: 0.1rem !important;
        overflow-x: auto;
    }
}

@media (min-width: 1024px) {

    .cardoverflow, .Listoverflow {
        padding: 0.1rem !important;
        overflow-x: hidden;
    }
}

.dark-theme .st_input-group-text {
    background-color: unset;
    border: 1px solid #383e53;
    color: #c6d7e7;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #005fcc;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    font-weight: bold;
    transition: top 0.3s ease;
}
 
.skip-link:focus {
    top: 0;
}

/*breadcrumb insde button back color changes style start*/

.breadcrumb-header .right-content button[title="Back"], .breadcrumb-header .right-content #backButton, button[title="Back to the Dashboard"] {
    background-color: #e65722 !important;
    color: white;
    border-color: #e65722 !important;
}

.breadcrumb-header .right-content .btn-icon {
    width: 30px;
    height: 30px;
}

    .breadcrumb-header .right-content .btn-icon i {
        font-size: 1rem;
    }

/*breadcrumb insde button back color changes style end*/

.cp {
    cursor: pointer;
}

.widget_Dashboard .filter_Selected {
    box-shadow: rgba(235, 34, 39, 0.5) 0px 0px 18px 5px;
    transition: box-shadow 0.5s ease-in-out, background-color 0.5s ease-in-out;
    background: rgb(229 124 126 / 50%);
    color: #eb2227;
    width: 19px;
    height: 20px;
    border-radius: 50%;
    padding-left: 3px;
    margin-top: 2px;
}

.border-bottom {
    border-block-end: 1px solid #eae8f180 !important;
}

.text-lightGray {
    color: #6d7a93;
    opacity: 1;
}

.bg-lightGray-transparent {
    background-color: #eff0f3 !important;
    color: #6d7a93 !important;
}

.text-lightBlue {
    color: #0162e8;
    opacity: 1;
}

.bg-lightBlue-transparent {
    background-color: #0162e81a !important;
    color: #0162e8 !important;
}

.text-lightRed {
    color: #ee335e;
    opacity: 1;
}

.bg-lightRed-transparent {
    background-color: #ee335e1a !important;
    color: #ee335e !important;
}

.text-lightWarning {
    color: #fbbc0b;
    opacity: 1;
}

.bg-lightWarning-transparent {
    background-color: #fbbc0b1a !important;
    color: #fbbc0b !important;
}

.text-lightSuccess {
    color: #22c03c;
    opacity: 1;
}

.bg-lightSuccess-transparent {
    background-color: #22c03c1a !important;
    color: #22c03c !important;
}

.text-lightsecoundary {
    color: #6d7a93;
    opacity: 1;
}

.bg-lightsecoundary-transparent {
    background-color: #eff0f3 !important;
    color: #6d7a93 !important;
}
/*breadcrumb insde button back color changes style end*/

.select2-results__option[aria-disabled="true"] {
    display: none;
}