.align-center{
    align-self: center;
    }

.centering {
    display: flex;
    justify-content: center;
    align-items: center;
}

.alert-notify-success {
  background-color: #e6f7d0;
  border-color: #daf3b9;
  color: black;
}
.indra-green {
  background: #12D8CA;
}

#myProgress {
    width: 100%;
}
#uploaded_files {
    margin-top: 25px;
    display: flex;
}
.file-icon i {
    font-size: 60px;
    color: rgb(0, 0, 0);
}
.file-details {
    margin-top: -2px;
    padding-left: 10px;
    width: 100%;
}
.file-details p {
    margin-bottom: -7px;
}
.mh-dropdown {
  min-height: 40px;
}

.drop-zone {
    max-height: 420px;
    height: 350px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed gray;
    border-radius: 10px;
  }
  
  .drop-zone--over {
    border-style: solid;
    background-color: #a09e9e;
  }

  .active {
    background-color: #a09e9e;
  }
  
  .drop-zone__input {
    display: none;
  }
  
  .drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
  }
  
  .drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
  }
  

  .notifications{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    max-height: 100vh;
}
.toaster{
    position: relative;
    padding: 10px;
    color: #fff;
    margin-bottom: 10px;
    width: 400px;
    display: grid;
    grid-template-columns: 70px 1fr 70px;
    border-radius: 5px;
    --color: #0abf30;
    background: #12D8CA;
    animation: show 0.2s ease 1 forwards  
}

@keyframes fadeOut {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(100%); }
}
.toaster i{
    color: #fff;
    display: flex;
    align-items: baseline;
    font-size: 1rem;
    justify-content: end;
}
.toaster .title{
    font-size: 1.2rem;
    font-weight: bold;
}
.toaster span, .toaster i:nth-child(3){
    color: #fff;
    opacity: 0.8;
}
@keyframes show{
    0%{
        transform: translateX(100%);
    }
    40%{
        transform: translateX(60%);
    }
    80%{
        transform: translateX(20%);
    }
    100%{
        transform: translateX(0%);
    }
}
.toaster::before{
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffff;
    width: 100%;
    height: 3px;
    content: '';
    box-shadow: 0 0 10px #ffff;
    animation: timeOut 5s linear 1 forwards
}
@keyframes timeOut{
    to{
        width: 0;
    }
}
.toaster.error{
    --color: #f24d4c;
    background: #f24d4c;
}

.toaster.warning{
    --color: #ff9e43;
    background: #ff9e43;
}

.toaster.info{
    --color: #bebebe;
    background: #bebebe;
}


canvas {
    aspect-ratio: auto;
}

.new-row {
    animation: fadeInLeft 0.9s ease-out forwards;
    background-color: #e6ffe6;
}

.remove-row {
    animation: fadeOutRight 0.9s ease-out forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}



.table-adj td, 
.table-adj th {
  font-size: 0.6rem;
  min-width: 3rem;
}

.table-adj-bbce td, 
.table-adj-bbce th {
  font-size: 0.8rem;
  min-width: 1rem;
}