.loginColumns {
    width: 500px;
    align-items: center;
    justify-content: center;
    height: 100vh;
    display: flex;
}
.mt-10 {  margin-top: 10px; }
.mt-25 {  margin-top: 25px; }
span.form-error {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    color: #ff0000;
}
.toast__container {
    display: table-cell;
    vertical-align: middle;
}

.toast__cell{
  display:inline-block;
}

.add-margin{
  margin-top:20px;
}

.toast__svg{
  fill:#fff;
}

.toast {
  text-align: -webkit-auto;
  padding: 21px 0;
  background-color:#fff;
  border-radius:4px;
  max-width: 500px;
  bottom: 0px;
  z-index: 9999;
  right: 0;
  position: absolute;
  box-shadow: 1px 7px 14px -5px rgba(0,0,0,0.2);
}


.toast:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
  border-top-left-radius:4px;
  border-bottom-left-radius: 4px;

}

.toast__icon{
  position:absolute;
  top:50%;
  left:22px;
  transform:translateY(-50%);
  width:14px;
  height:14px;
  padding: 7px;
  border-radius:50%;
  display:inline-block;
}

.toast__type {
  color: #3e3e3e;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 8px;
}

.toast__message {
    font-size: 14px;
    margin-top: 0;
  margin-bottom: 0;
    color: #878787;
}

.toast__content{
  padding-left:70px;
  padding-right:60px;
}

.toast__close {
    position: absolute;
    right: 22px;
    top: 50%;
    width: 14px;
    cursor:pointer;
    height: 14px;
  fill:#878787;
    transform: translateY(-50%);
}

.toast--green .toast__icon{
  background-color:#2BDE3F;
}

.toast--green:before{
  background-color:#2BDE3F;
}
.toast--red .toast__icon{
  background-color:#ff0000;
}

.toast--red:before{
  background-color:#ff0000;
}

.toast--blue .toast__icon{
  background-color:#1D72F3;
}

.toast--blue:before{
  background-color:#1D72F3;
}

.toast--yellow .toast__icon{
  background-color:#FFC007;
}

.toast--yellow:before{
  background-color:#FFC007;
}
.ibox-content img { width:150px; }
.qresponse {
    position: relative;
}

.qresponse ul {
    position: absolute;
    border: 1px solid #cccccc;
    padding: 5px;
    list-style: none;
    min-width: 300px;
    min-height: 80px;
    background: #ffffff;
}

.qresponse ul li {
    padding: 0px 10px;
    line-height: 20px;
}

.qresponse ul li a {
    font-size: 15px;
    color: #000000;
}

.qresponse ul li a:hover {
    background: #cccccc;
}


/* iCheck plugin Square skin, green
----------------------------------- */
.icheckbox,
.iradio_square-green {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 22px;
    height: 22px;
    background: url(green.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox {
    background-position: 0 0;
}
.icheckbox.hover {
    background-position: -24px 0;
}
.icheckbox.checked {
    background-position: -48px 0;
}
.icheckbox.disabled {
    background-position: -72px 0;
    cursor: default;
}
.icheckbox.checked.disabled {
    background-position: -96px 0;
}

.iradio_square-green {
    background-position: -120px 0;
}
.iradio_square-green.hover {
    background-position: -144px 0;
}
.iradio_square-green.checked {
    background-position: -168px 0;
}
.iradio_square-green.disabled {
    background-position: -192px 0;
    cursor: default;
}
.iradio_square-green.checked.disabled {
    background-position: -216px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
    .icheckbox,
    .iradio_square-green {
        background-image: url(green@2x.png);
        -webkit-background-size: 240px 24px;
        background-size: 240px 24px;
    }
}

.primeBtn[disabled] .loader{
display:block;
}
.primeBtn[disabled] .text{
display:none;
}

.loader {
   margin-bottom: 3.5em;
   border: 3px solid rgba(0, 0, 0, 0.2);
   border-left-color: #222;
   animation: loader-spin 1.2s infinite linear;
   position: relative;
   display: inline-block;
   vertical-align: top;
   border-radius: 50%;
   width: 30px;
   height: 30px;
   position: absolute;
   top: 3px;
   left: 0;
   right: 0;
   margin: 0 auto;
   display: none;
}

.loader1 {
   margin-bottom: 3.5em;
   border: 3px solid rgba(0, 0, 0, 0.2);
   border-left-color: #222;
   animation: loader-spin 1.2s infinite linear;
   position: relative;
   display: inline-block;
   vertical-align: top;
   border-radius: 50%;
   width: 30px;
   height: 30px;
   position: absolute;
   top: 3px;
   left: 0;
   right: 0;
   margin: 0 auto;
   display: none;
}

.loader2 {
   margin-bottom: 3.5em;
   border: 3px solid rgba(0, 0, 0, 0.2);
   border-left-color: #222;
   animation: loader-spin 1.2s infinite linear;
   position: relative;
   display: inline-block;
   vertical-align: top;
   border-radius: 50%;
   width: 30px;
   height: 30px;
   position: absolute;
   top: -1px;
   left: 0;
   right: 0;
   margin: 0 auto;
   display: none;
}

@keyframes loader-spin {
   0% {
       transform: rotate(0deg);
   }

   100% {
       transform: rotate(360deg);
   }
}



.table thead tr th:last-child {
    width: 200px;
}

a.disabled {
  pointer-events: none;
  cursor: default;
}
.scroll-active .ibox-content{
  overflow-x: auto;
}

.scroll-active td, .scroll-active th{
  min-width: 150px;
}
.click_to_open img{     
    width: 50px;
    height: 50px; 
}
.asset_img{     
    width: 100px;
    height: 100px; 
}

#page-wrapper {
    margin: 0px !important;
    background: #F5F7FF;
}

.header_logo
{
    height: 61px;
    padding: 5px;
}

.navbar-header
{
    margin-left: 10px;
}

.nav > li > a i {
    margin-right: 6px;
    
}

.navbar-hor li a {
    padding: 8px 15px;
    min-height: 0px;
}

.navbar-hor li:last-child {
    margin-right: 0px;
}

.navbar-hor
{
    padding: 12px 7px 0px 7px;
}

.navbar-hor li
{
    margin: 0px 5px;
}

.navbar-hor > li > a {
    color: white !important;
}

.navbar-hor > li {
    padding-bottom: 12px !important;
}

.nav > li.active {
    border-left: 0px;
    background: none;
}

.navbar-hor > li.active > a {
    color: #4b49ac !important;
    background-color: #f8f9fa;
    border: 1px solid;
}


.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open .dropdown-toggle.btn-primary, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary.active:hover, .btn-primary.active:focus
{
    color: #4B49AC !important;
    background-color: #ffffff !important;
    border-color: #4B49AC !important;
}

.caret1{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 8px dashed;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
}

.bg-login{
    background: #ffffff;
    padding: 45px;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #ffffff !important;
}

/*.table-bordered td:nth-child(2) {
    text-align: left;
}*/
.table-bordered td:nth-child(1), .table-bordered th:nth-child(1) {
    width: 50px;
}
.table-bordered td,.table-bordered th {
    text-align: center;
}

.row.scroll-active {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 15px;
    background: #ffffff;
    border-radius: 10px;
}



.outer-wrapper {
  max-width: fit-content;
  max-height: fit-content;
  background: #ffffff;
}
.table-wrapper {

    overflow-y: scroll;
    overflow-x: scroll;
    height: fit-content;
    max-height: 78.4vh;
    
    margin-top: 22px;
    
    margin: 15px;
    padding-bottom: 20px;
    
}


table {
    min-width: max-content;
    border-spacing: 0px;       
}
table th{
    position: sticky; 
    top: 0px;
    text-align: center;
} 



table th, table td {
    

    
}

table td {

    
}

.table>thead:first-child>tr:first-child>th {
    border-top: 1px solid #e7eaec;
}

.main-nav.navbar-top-links a {
    background: #4b49ac;
    border: 0;
    color: #ffffff !important;
}

.filter-button{
    margin-right: 10px;
    background: #4B49AC;
    color: #ffffff;
    /* font-weight: bold; */
    /* border-color: #000000; */
}
.filter-row
{
        position: absolute;
        z-index: 999;
        top: 145px;
        left: 154px;
}
.table-bordered button, .table-bordered input, .table-bordered select, .table-bordered textarea{

}

.grid .btn-primary {
    background: #f8f9fa;
    color: #000000;
    border-color: #f8f9fa;
    font-size: 15px;
    height: auto !important;
    font-weight: 500;
    padding: 5px 20px !important;
}
.dropdown .btn-secondry {
    background: #f8f9fa;
    border-radius: 0;
    color: #000000;
    border: 0;
}
.grid .dropdown{
    position: unset;
}
.position-relative{
    position: relative !important;
}

.navbar-top-links .dropdown-menu li a:hover{
    color:#000 !important;
    border:1px solid
}