/*
* demo.css
* File include item demo only specific css only
******************************************************************************/



.menu .app-brand.demo {
    height: 64px;
    margin-top: 12px;
    padding-left: 10px;
}

    .menu .app-brand.demo img, .app-brand-text .demo .menu-text .fw-bolder .ms-2 img{
        height: 35px;
    }

.app-brand-text.demo img {
    height: 45px;
}
.app-brand-text.demo1 img {
    height: 50px;
}


    .app-brand-logo.demo svg {
        width: 22px;
        height: 38px;
    }

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.5px;
  text-transform: lowercase;
}

/* ! For .layout-navbar-fixed added fix padding top to .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 76px !important;
}
/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}
.docs-page .layout-navbar-fixed.layout-wrapper:not(.layout-without-menu) .layout-page,
.docs-page .layout-menu-fixed.layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 62px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks > * {
  display: block !important;
}

.demo-inline-spacing > * {
  margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing > * {
  margin-top: 1rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-lg > * {
  margin-top: 1.875rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-lg.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.demo-vertical-spacing-xl > * {
  margin-top: 5rem !important;
  margin-bottom: 0 !important;
}
.demo-vertical-spacing-xl.demo-only-element > :first-child {
  margin-top: 0 !important;
}

.rtl-only {
  display: none !important;
  text-align: left !important;
  direction: ltr !important;
}

[dir='rtl'] .rtl-only {
  display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 1rem;
}
.layout-demo-placeholder img {
  width: 900px;
}
.layout-demo-info {
  text-align: center;
  margin-top: 1rem;
}

.hide{display:none;}


h3.number {
    font-weight: 600;
    font-size: 28px;
    line-height: 36px;
    text-align: right;
    color: var(--heading-color);
    transition: .3s ease;
    margin-bottom: 0;
}

.card:hover h3.number,
.card:hover p.info {
    color: #1447E1;
    transition: .3s ease;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
}

h3.numberD {
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-align: left;
    color: var(--heading-color);
    transition: .3s ease;
    margin-bottom: 0;
}

h3.numberD0 {
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-align: left;
    color: var(--heading-color);
    transition: .3s ease;
    margin-bottom: 0;
}

p.stat-textD {
    font-size: 14px;
    text-align: left;
}

#FileViewer a.download {
    position: absolute;
    right: 20px;
}

.amount {
    text-align: right;
}

.arrow-up disabled, .arrow-down disabled {
    display: none
}


.nav-align-top .nav-tabs .nav-link.active {
   /* box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    background: #fff;
    color: white;
    font-weight: bold;*/
}


.nav-pills .nav-link.active, .nav-pills .nav-link.active:hover, .nav-pills .nav-link.active:focus {
    background-color: #008cff;
    color: #fff;
    box-shadow: 0 2px 4px 0 rgba(105, 108, 255, 0.4);
}

.btn-primary {
    color: #fff;
    background-color: linear-gradient(93deg, #53b2fe, #065af3);
    border-color: #008cff;
    box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4);
}

@media print {
    /* Hide everything in the body when printing... */
    body.printing * {
        display: none;
    }
    /* ...except our special div. */
    body.printing #print-me {
        display: block;
    }
}

@media screen {
    /* Hide the special layer from the screen. */
    #print-me {
        display: none;
    }
}

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;

    @media (max-width: 768px) {
        font-size: 12px;
    }
}

    .stepper-item::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #ccc;
        width: 100%;
        top: 20px;
        left: -50%;
        z-index: 2;
    }

    .stepper-item::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #ccc;
        width: 100%;
        top: 20px;
        left: 50%;
        z-index: 2;
    }

    .stepper-item .step-counter {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #ccc;
        margin-bottom: 6px;
    }

    .stepper-item.active {
        font-weight: bold;
    }

    .stepper-item.completed .step-counter {
        background-color: #4bb543;
    }

    .stepper-item.completed::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #4bb543;
        width: 100%;
        top: 20px;
        left: 50%;
        z-index: 3;
    }

    .stepper-item:first-child::before {
        content: none;
    }

    .stepper-item:last-child::after {
        content: none;
    }




.ProjectrDetails .menu-icon {
    border: 1px solid #e2dbdb;
    border-radius: 5px;
    padding: 1px;
}

.EditPic 
{
    position: absolute;
    bottom: 50px;
    left: 120px;
}

.accordion-collapse{text-align:left;}
.statusDiv {
   
    color: #fff;
    font-weight: 800;
    text-align: left;
    border-radius: 4px;
}
.mandatory{color:red; font-weight:bold;}
.LetItEditCA{display:block!important;}

.home .tab-content {
    padding: 0px;
    background: unset!important;
}

.t8dsCat {
    background-color: #e33239 !important;
    color: #fff !important;
    text-align: center;
    font-weight: 700;
}
.t8dsCatHeader {
   
    color: #000 !important;
    font-size: 16px !important;
}
.t8dsCatHeader th{
    color: #000 !important;
}

.t8dsTable td, .t8dsTable th{width:20%;}
.card-header .D0 {
    background-color: #062f71 !important;
    color: #fff !important;
    padding:5px 10px;
    font-size:30px;
    margin-right:10px;
    border-radius:10px;
}
.card-header .D1{}
.card-header .D2 { font-weight:bold
}
.card-header .D3 {
    font-size: 22px;
}

.Uploadedimg {
    padding: 6px;
    width: auto;
  
    float: left;
    border: 1px dashed blueviolet;
    position: relative;
    height: 40px;
    margin-right:8px;
    margin-top:8px;
    margin-block:8px;
}

.UploadedPassDocs {
    padding: 6px;
    width: auto;
    float: left;
    border: 1px dashed blueviolet;
    position: relative;
    height: 40px;
    margin-right: 8px;
    margin-top: 8px;
    margin-block: 8px;
}

.UploadedPassDocs1 {
    padding: 6px;
    width: auto;
    float: left;
    border: 1px dashed blueviolet;
    position: relative;

    margin-bottom:4px;
    margin-right: 8px;
    margin-top: 8px;
    margin-block: 8px;
}
.closeP {
    color: #fff!important;
   
    right: 2px;
    top: 2px;
    font-size: 11px;
    background: #5a7089;
    padding: 2px;
    border-radius: 50%;
  margin-left:5px;
}

.TotalSta{
    background: cadetblue;
    color: #fff;
    padding: 5px;
    border-radius: 10px;
}

.AppendedOnView {
    margin-bottom: 10px;
    color: rgba(var(--bs-gray-rgb), var(--bs-text-opacity));
    font-weight: 500;
    font-size: 14px;
    padding-left: 8px !important;
}   
.h6NoLeft .AppendedOnView {
    padding-left: 0px !important;
}
    .AppendedOnView .FDBy {
        font-size: 12px;
    }
    .Notes h6 {
        font-size: 16px;
        background-color: #f0f1ec;
        /* color: #fff; */
        width: auto;
        padding: 6px;
    }

.borderBoth{height:5px}
    .borderBoth .first {
        background: #ff3e1d;
        height: 5px;
        width: 50%;
        float: left;
    }
    .borderBoth .second {
        background: #062f71;
        height: 5px;
        width: 50%;
        float: left;
    }

.descdetails {
    color: #42b0b2;
    font-weight: 600;
}
.Incidents .badge {

    text-transform:capitalize;
}

.t8dsTable1 th {
    text-align: center;
}

.IncidentList  a:hover {
    font-weight: bold;
}

.lastyearinc .card .row-bordered > [class*=" col-"]::before,.lastyearinc .card .row-bordered > [class*=" col-"]::after {
    border-width: 0px !important;
    border-color: #fff;
}

.recentincs .table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
    padding-bottom: 0px;
}

.SpaceTop{margin-top:62px;}

.Approvers {
    padding: 5px;
    border-bottom: 1px solid #d2aeae;
}

p.summary {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 0px solid #000000;
}

    p.summary:hover {
        /*overflow: visible;
        background-color:yellow;
        width:100%;
        position:absolute;
        top:0px;*/
    }

p.summary1 {
    white-space: nowrap;
    width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 0px solid #000000;
}

    p.summary1:hover {
        /*overflow: visible;
        background-color:yellow;
        width:100%;
        position:absolute;
        top:0px;*/
    }

.mask2 {
    -webkit-mask-image: radial-gradient(circle, black 50%, rgba(0, 0, 0, 0.5) 50%);
    mask-image: radial-gradient(circle, black 50%, rgba(0, 0, 0, 0.5) 50%);
}

.QYNNA{width:20px; margin-left:10px;}
img.CompanyProfile{height:30px;}
.tbBrief {
    margin-bottom: 20px;
    
}

    .tbBrief td {
        border: 1px solid;
        padding: 2px;
        font-size: 12px;
    }

.input-group-text {
/*    display: none !important;*/
  
}
.inputGroupFile {
    border-radius: 0.375rem !important;
    
}


.blink_me {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

