html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 120%;

    @media #{$xlarge} {
        font-size: 100%;
    }

    @media #{$large} {
        font-size: 95%;
    }

    @media #{$medium} {
        font-size: 90%;
    }

    @media #{$small} {
        font-size: 85%;
    }

    @media #{$xsmall} {
        font-size: 80%;
    }

    @media #{$xxsmall} {
        font-size: 75%;
    }
}

@media (min-width: 1199px) {
    .container {
        width: 85%;
        max-width: 85%;
    }
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

a,
a:hover,
a:focus {
    color: $st-text-third;
    text-decoration: none;
    cursor: pointer;
}

*:focus {
    outline: none !important;
}

a:focus {
    text-decoration: none;
    background: none;
}

.link-black {
    color: $st-text-primary;
}

body {
    margin: 0;
    padding: 0;
    font-family: $st-font-family;
    font-weight: $st-font-regular;
    font-size: $st-font16;
    background: $st-third-bg;
    width: 100%;
    color: $st-text-primary;
    // overflow-y: hidden;
    @media #{$medium} {
        overflow-y: auto;
    }
    @media #{$xxsmall} {
        overflow-y: auto!important;
    }
}
.lockscrollbar {
    overflow-y:hidden;
  }

  .openscrollbar {
    overflow-y:scroll;
  }
p {
    font-family: $st-font-family;
}

sup {
    font-size: 60%;
    top: -0.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: $st-font-family;
    margin: 0px;
    padding: 10px;
    color: $st-heading-primary;
}

.main-panel {
    width: 100%;
    // background: $st-third-bg;
    background: $st-text-ninth;
}

.bg-danger-gradient {
    background-color: $st-secondary-bg;
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    // margin-top: 80px !important;
    // padding-bottom: 60px; /** Removed padding on 05/12/2023 **/
    min-height: 100vh!important; /** Additionally Added For Min Page Height **/
    transition: 0.3s;
    margin-left: 250px;
    width: calc(100% - 250px);
    @media #{$medium} {
        width: 100%;
        margin-left: 0px;
     }
    @media #{$small} {
        width: 100%;
        margin-left: 0px;
     }
}

.content {
    width: 100%;
    overflow: hidden;
    // min-height: 900px;
    min-height: 90vh;
    .contentInnerWrap {
        padding: 40px;
        overflow-y: auto;
        height: 87vh;
        @media #{$small} {
          padding: 15px;
         }
        //background: $st-text-ninth;
    }
}

.defaultPlaceholder {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    img {
        width: 320px;
        height: auto;
    }
    .defaultPlaceholderText {
        color: $st-text-third;
        font-size: 24px;
    }
}

.badge {
    font-size: 0.75em;
    font-weight: 700;
    line-height: 12px;
    color: $st-text-ninth;
    text-align: center;
    white-space: nowrap;
    //vertical-align: baseline;
    // border-radius: 50rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
}

.InProgress {
    background: #0033FF;
}

.Pipeline {
    background: #FF9900;
}

.Completed {
    background: #14a44d;
}

.Cancelled {
    background: #da2128;
}

.OnHold {
    background: #F0E130;
}

.Analysis {
    background: #CC6600;
}

.UAT {
    background: #C24641; 
}

.Design {
      background: #2C3539; 
}

.Development {
    background: #00cccc;
}

.form-label {
    font-weight: 500;
}
// .progress {
//     .bg-default {
//         background-color: #eee;
//         color: $st-text-primary;
//         margin: 0 auto;
//         width: 100%!important;
//     }
// }
.progressBarWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-self: center;
    .closedStatus {
        float: left;
        margin-right: 6px;
        cursor: pointer;
    }
    .progress {
        border-radius: 12px;
        width: 85%;
        position: relative;
        min-width: 120px;
        .progress-bar {
            position: absolute;
        }
        .percentageText {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            position: relative;
        }
    }
    .openStatus {
        float: right;
        margin-left: 6px;
        cursor: pointer;
    }
    .badge {
        padding: 5px 8px;
        min-width: 75px;
    }
}

.white-sec-container {
    padding: 40px;
    .white-sec-inner {
        background: #ffffff;
        box-shadow: 0 3px 10px 0 rgba(189, 207, 212, 0.8);
        border-radius: 8px;
        .sec-heading {
            border-bottom: 1px solid #ccc;
            padding: 1rem;
            h5 {
                padding: 0;
            }
        }
        .sec-main {
            padding: 1.5rem;
        }
    }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #2e58a6;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #224890;
}
.maskBgOverlay {
    background: $st-text-primary;
    position: fixed;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: 1111;
    opacity: 0.5;
}
.loader {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.assignedId {
    opacity: 0.75;
    color: $st-text-secondary;
}
.errMsg {
    color: $st-secondary-bg;
    margin: 5px 0 0 0;
}
.showScrollBar {
    max-height: 420px;
    overflow-y: auto;
}
.backbtn{
    display: flex;
    justify-content: end;
}
.fixedScrollBottom {
    .MuiPaper-root {
        z-index: 0;
        position: relative;
        .MuiTableContainer-root {
            height: 70vh;
            .MuiTableBody-root {
                // height: 62vh;
                overflow-x: auto;
                position: relative;
                .MuiTableCell-root {
                    white-space: nowrap;
                }
            }
        }
    }
}
.blankData {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    font-size: 28px;
    font-weight: 600;
}