/*.grid-container {
        display: grid;
        grid-template-columns: auto auto;
        gap: 10px;
    }
    .namecard {
        border: 1px solid #333;
        padding: 10px;
        height: 200px;
    }
    .namecard-green {
        border: 1px solid #333;
        padding: 10px;
        height: 200px;
        background-color:#ABEBC6;
    }
    .namecard-blue {
        border: 1px solid #333;
        padding: 10px;
        height: 200px;
        background-color:#AED6F1;
    }*/
    /*start slider on/off */
    /*.switch-container{
      #switch{
        display: none;
      }
      .switch-label{
        position: relative;
        cursor: pointer;
        margin: 0;
        .switch-rail{
          transition: all 0.2s ease-in-out;
          position: absolute;
          width: 60px;
          height: 30px;
          background: #e3342f;
          border-radius: 50px;
          overflow: hidden;
          .switch-slider{
            transition: all 0.2s ease-in-out;
            position: absolute;
            top: 4px;
            left: 4px;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #fff;
          }
        }
      }
      #switch:checked + .switch-label {
        .switch-rail{
          transition: all 0.2s ease-in-out;
          background: #38c172;
          .switch-slider{
            transition: all 0.2s ease-in-out;
            transform: translateX(30px);
          } 
        }        
      }
    }*/
/*end slider on/off */

/* start - hpu unimas */
.hpu-container {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            padding: 40px;
           /* max-width: 600px;*/
            width: 100%;
        }

        

        .upload-area {
            border: 3px dashed #667eea;
            border-radius: 12px;
            padding: 60px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            background: #f8f9ff;
            position: relative;
        }

        .upload-area.drag-over {
            border-color: #764ba2;
            background: #e8ebff;
            transform: scale(1.02);
        }

        .upload-icon {
            font-size: 64px;
            margin-bottom: 20px;
            color: #667eea;
        }

        .upload-text {
            font-size: 18px;
            color: #555;
            margin-bottom: 10px;
        }

        .upload-hint {
            font-size: 14px;
            color: #888;
        }

        .file-input {
            display: none;
        }

        .browse-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 30px;
            background: #667eea;
            color: white;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .browse-btn:hover {
            background: #764ba2;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .file-list {
            margin-top: 30px;
            max-height: 400px;
            overflow-y: auto;
        }

        .file-item {
            display: flex;
            align-items: center;
            padding: 15px;
            background: #f8f9ff;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .file-item:hover {
            background: #e8ebff;
        }

        .file-icon {
            font-size: 32px;
            margin-right: 15px;
        }

        .file-info {
            flex: 1;
        }

        .file-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .file-size {
            font-size: 12px;
            color: #888;
        }

        .file-remove {
            background: #ff4757;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .file-remove:hover {
            background: #ff3838;
            transform: scale(1.05);
        }

        .clear-all {
            margin-top: 20px;
            width: 100%;
            padding: 12px;
            background: #ff4757;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .clear-all:hover {
            background: #ff3838;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
        }

        .upload-btn {
            margin-top: 20px;
            width: 100%;
            padding: 12px;
            background: #667eea;
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .upload-btn:hover {
            background: #764ba2;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .upload-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .file-actions {
            display: flex;
            gap: 8px;
        }

        .file-status {
            font-size: 12px;
            margin-top: 5px;
            font-weight: 600;
        }

        .status-pending {
            color: #f39c12;
        }

        .status-uploading {
            color: #3498db;
        }

        .status-success {
            color: #2ecc71;
        }

        .status-error {
            color: #e74c3c;
        }

        .empty-state {
            text-align: center;
            color: #888;
            padding: 20px;
            font-style: italic;
        }

        .progress-bar {
            width: 100%;
            height: 6px;
            background: #e0e0e0;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 8px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        .file-preview {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 6px;
            object-fit: cover;
            background: #e8ebff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .file-preview img {
            width: 100%;
            height: 100%;
            border-radius: 6px;
            object-fit: cover;
        }

        .preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .preview-modal.active {
            display: flex;
        }

        .preview-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }

        .preview-content img,
        .preview-content video {
            max-width: 100%;
            max-height: 90vh;
            border-radius: 8px;
        }

        .pdf-viewer {
            width: 90vw;
            height: 90vh;
            background: white;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .pdf-toolbar {
            background: #f8f9fa;
            padding: 12px 20px;
            border-bottom: 1px solid #ddd;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .pdf-toolbar button {
            background: white;
            border: 1px solid #ddd;
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .pdf-toolbar button:hover {
            background: #e8e8e8;
        }

        .pdf-toolbar button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .pdf-page-info {
            margin-left: auto;
            font-size: 14px;
            color: #666;
        }

        .pdf-canvas-container {
            flex: 1;
            overflow: auto;
            display: flex;
            justify-content: center;
            align-items: flex-start;
            padding: 20px;
            background: #525659;
        }

        .pdf-canvas {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            background: white;
        }

        .preview-close {
            position: absolute;
            top: -40px;
            right: 0;
            background: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .preview-close:hover {
            background: #ff4757;
            color: white;
        }

        .preview-name {
            position: absolute;
            bottom: -40px;
            left: 0;
            color: white;
            font-size: 16px;
            font-weight: 600;
        }

        .file-preview-btn {
            background: #667eea;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;
            margin-right: 8px;
        }

        .file-preview-btn:hover {
            background: #764ba2;
            transform: scale(1.05);
        }
/* end - hpu unimas */

.access-icon-container {
        position: relative;
        display: inline-block;
    }

    .access-icon-container i {
        font-size: 12px; /* Adjust the font size as needed */
        width: 30px; /* Adjust the width and height to match the smaller icon */
        height: 30px;
        background-color: black;
        border-radius: 50%;
        text-align: center;
        line-height: 30px; /* Ensure the line height matches the container height for vertical alignment */
        color: white;
        cursor: pointer;
        display: block; /* Ensures the icon is treated as a block element */
    }

    .access-icon-container .access-icon-tooltip {
        position: absolute;
        bottom: calc(100% + 5px);
        left: 50%;
        transform: translateX(-50%);
        background-color: black;
        color: white;
        padding: 5px;
        border-radius: 3px;
        white-space: nowrap;
        font-size: 12px; /* Adjust the font size of the tooltip */
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none; /* Ensures the tooltip doesn't interfere with clicking */
    }

    .access-icon-container:hover .access-icon-tooltip {
        opacity: 1;
    }
#dms_path {
    cursor: default; /* Set default cursor */
    display: inline-block; /* Ensure the element does not expand */
    font-size: 16px; /* Set font size */
}

.invisible-button {
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    font: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.invisible-button:hover {
    background-color: #f0f0f0; /* Change background color on hover */
}

#dms_path button {
    display: inline-block;
    padding: 5px 10px; /* Add padding to each button */
    background-color: transparent; /* Transparent background */
    border: 1px solid transparent; /* Transparent border */
    border-radius: 3px; /* Border radius */
    margin: 0 3px; /* Add margin between buttons */
}

#dms_path button:hover {
    background-color: #e0e0e0; /* Change background color on hover */
    border: 1px solid #ccc; /* Add border on hover */
}



.lightboxpreview {
   transition: all .3s linear;
padding-top:60%;
  cursor:pointer;
  background-size:cover;
}
   
.lightbox-content {
max-height:75vh;
  height:75vh;
  width:100%;
  max-width: 1000px;}

.lightbox-close { 
  cursor:pointer;
    margin-left: auto;
  position:absolute;
  right:-30px;
  top:-30px;
  color:white;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;}
.modal_inner_image {
    min-height: 400px;
    z-index: 1000;}
.modal-content {
    width: 100%;}


.modalscale {transform:scale(0);
opacity:0;}



.lightbox-container, .lightbox-btn, .lightbox-image-wrapper, .lightbox-enabled{transition:all .4s ease-in-out;}
.lightbox_img_wrap {padding-top:65%;
  position:relative;
  overflow:hidden;
}
.lightbox-enabled:hover {
  transform:scale(1.1)
}
.lightbox-enabled {width:100%;
height:100%;
  position:absolute;
  top:0;
object-fit:cover;
cursor:pointer;}

.lightbox-container {width:100vw;
height:100vh;
position:fixed;
top:0;
left:0;
  display:flex;
  align-items:center;
  justify-content:center;
background-color:rgba(0,0,0,.6);
z-index:9999;
opacity:0;
pointer-events:none;
}

.lightbox-container.active {
  opacity:1;
  pointer-events:all;
}
.lightbox-image-wrapper {
  display:flex;
  transform:scale(0);
  align-items:center;
  justify-content:center;
  max-width:90vw;
  max-height:90vh;
  position:relative;
}
.lightbox-container.active .lightbox-image-wrapper {transform:scale(1);}
.lightbox-btn, #close {
  color:white;
  z-index:9999999;
 cursor:pointer; 
  position:absolute;

  font-size:50px;
}

.lightbox-btn:focus {
  outline:none;
}

.left {left:50px;}
.right {right:50px;}
#close {top:50px;
right:50px;}

.lightbox-image {
  width:100%;
  -webkit-box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19); 
box-shadow: 5px 5px 20px 2px rgba(0,0,0,0.19);
  max-height:95vh;
  object-fit:cover;
 }

@keyframes slideleft {
  33% {transform:translateX(-300px);
  opacity:0;
  }
  66% {transform:translateX(300px);
  opacity:0;
  }
}


.slideleft {
   animation-name: slideleft;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
@keyframes slideright {
  33% {transform:translateX(300px);
  opacity:0;}
  66% {transform:translateX(-300px);
  opacity:0;}
}


.slideright{
   animation-name: slideright;
 animation-duration: .5s; 
 animation-timing-function: ease; 
}
    

    
/*#folders .arrow{
  transition: 0.25s ease;
  opacity: 0.3;
  transform: rotate(-90deg);
}
#folders .arrow-animate{
  transform: rotate(0deg);
  opacity: 1;
}
[clear]:before,[clear]:after{
  content:"";
  clear:both;
  display:block;
}*/
.theme-structure.big-file-manager {
    width: 100%;
    height: 90vh;
    /*background: #f7f7f7;
  border-bottom: 1px solid #2196F3;*/
  overflow:auto;
  padding: 10px 0;
}
.big-file-manager.theme-structure ul {
  padding: 0;
  margin: 0;
  list-style: none;
  user-select:none;
}
.big-file-manager.theme-structure ul li {
    padding: 1px;
}
.big-file-manager.theme-structure ul > li {
    cursor: pointer;
  vertical-align: top;
}
.big-file-manager.theme-structure ul > li > b {
  display: block;
  user-select:none;
    text-align: center;
    transform: scale(1);
    transition: transform 0.1s linear;
  width: 74px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    padding: 10px 4px;
}
.big-file-manager.theme-structure ul > li.show-up > b {
    font-size: 14px;
    display: block;
    width: 100% !important;
    background: transparent;
    height: 20px;
    padding: 0;
}
.big-file-manager.theme-structure ul > li.show-up > b {
    margin-bottom: 10px;
}

.big-file-manager.theme-structure ul > li:not(.show-up) > b:active {
    transform: scale(0.95);
}
.big-file-manager.theme-structure ul > li > b svg {
    display: block;
    margin: 0 auto;
    font-size: 25px;
    margin-bottom: 5px;
}
.big-file-manager.theme-structure ul li[data-file-icon="folder"] > b > svg {
    color: #F7D774;
}
.big-file-manager .cm-folder-back {
    display: none;
}
.big-file-manager.theme-structure ul > li.show-up > b > .cm-folder-back {
    display: block;
}
.big-file-manager.theme-structure ul > li.hide-up > b > .cm-folder-back {
    display: none;
}
.big-file-manager.theme-structure ul ul {
    display: none;
}
.big-file-manager.theme-structure ul > li .no-item-inside-folder {
    padding: 10px;
    opacity: 0.6;
    cursor: default;
    user-select: none;
}
.big-file-manager.theme-structure ul > li.data-moving:not(.show-up) > b {
    opacity: 0.6;
}
.big-file-manager.theme-structure ul > li > b:hover {
    background: #343a4026;
}
.big-file-manager.theme-structure ul > li.context-visible > b,
.big-file-manager.theme-structure ul > li.select > b{
    background: #03a9f42e;
    outline: 1px solid #03A9F4;
}
.big-file-manager.theme-structure ul > li span.name {
    border: 1px solid transparent;
}
.big-file-manager.theme-structure ul > li.renaming span.name {
    border: 1px solid #929292;
  display: block;
  outline: 0;
  cursor: text;
}
/*-----------UnderStad-------------------|START--------*/
.big-file-manager.theme-structure ul li.show-up.select > b {
    background: transparent;
    outline: none;
}
.big-file-manager.theme-structure ul > li.show-up > b .cm-folder-back {
    float: left;
}
.big-file-manager.theme-structure ul > li.show-up > b {
    background: transparent;
}
.big-file-manager.theme-structure ul > li.show-up > b .cm-folder-back + svg {
    display: none !important;
}
.big-file-manager.theme-structure ul > li.show-up > b .cm-folder-back svg {
    font-size: 16px;
}
.big-file-manager.theme-structure ul li.file-sub-active.hide-up > b {
    display: none;
}
.big-file-manager.theme-structure ul > li.show-up > b .cm-folder-back {
    padding: 0 10px;
    background: #00000012;
}
.big-file-manager.theme-structure ul > li > b i.cm-folder-back svg {
    position: relative;
    top: 3px;
}
.big-file-manager.theme-structure ul li:not(.show-up):not(.file-sub-active) {
    display: inline-block;
}
/*-----------UnderStad------------------|END---------*/
/*-------------Folder Context Menu---------|START---*/
.append-option-box {
    position: fixed;
    background: #fff;
    border: 1px solid #b1b1b1;
    box-shadow: 0 1px 1px #0000003d;
    padding: 5px 0;
    width: 200px;
    top: 45px;
    z-index: 999;
    left: 57px;
}
.append-option-box>div>div {
    padding: 2px 15px;
  cursor:pointer;
}
.append-option-box>div>div:hover {
    background: #2196F3;
    color: #fff;
}
.renaming-box {
    position: absolute;
    background: white;
    padding: 10px;
    box-shadow: 0 1px 1px #0000002e;
    margin-left: 15px;
    margin-top: -10px;
    outline: 0;
    border: 1px solid #c2c2c2;
}
.renaming-box input {
    background: #fff;
    padding: 2px;
    font-size: 15px;
    color: #000;
    border: 1px solid #9E9E9E;
    display: inline-block;
    border-right: 0;
    line-height: 23px;
    outline: 0;
}
.renaming-box button {
    cursor: pointer;
    color: #2196F3;
    background: #e9e9e9;
    font-size: 13px;
    line-height: 25px;
    display: inline-block;
    border: 1px solid #9E9E9E;
    border-left: 0;
    position: relative;
    top: -1px;
    outline: 0;
}
/*-------------Folder Context Menu---------|END---*/
/*-------Context Menu Style-----------------|START-----*/
.append-option-box>div>div {
    position: relative;
}
.append-option-box>div>div .main-sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    border: 1px solid #b1b1b1;
    box-shadow: 0 1px 1px #0000003d;
    width: 150px;
    display: none;
    color: #000;
}
.append-option-box>div>div:hover .main-sub-menu {
    display: block;
}
.append-option-box>div>div:hover .main-sub-menu>div {
    padding: 2px 10px;
}
.append-option-box>div>div:hover .main-sub-menu>div:hover {
    background: #2196F3;
    color: #fff;
}
.append-option-box>div>div>svg {
    position: absolute;
    right: 8px;
    font-size: 10px;
    top: 5px;
    opacity: 0.5;
}
.theme-structure.big-file-manager.medium li svg {
    font-size: 35px;
}
.theme-structure.big-file-manager.largesvg {
    font-size: 45px;
}
.theme-structure.big-file-manager.large li svg {
    font-size: 45px;
}
.big-file-manager.theme-structure.large ul > li > b {
    width: 84px;
}
.big-file-manager.theme-structure.medium ul > li > b {
    width: 74px;
}

/*-------Context Menu Style-----------------|END-----*/

/*-------Search----------------|Start-----*/
.cm-address-bar-search > div {
    float: left;
    padding: 10px;
}
.cm-address-bar-search > div.address-search {
    width: 70%;
}
.cm-address-bar-search > div.search-file-and-folder {
    width: 30%;
}
.cm-address-bar-search > div input {
    width: 100%;
    padding: 5px;
    padding-right: 35px;
    background: #fff;
  outline: 0;
  height: 30px;
  border: 1px solid #dedede;
}
.cm-address-bar-search div.pos {
  position: relative;
  overflow: hidden;
}
.cm-address-bar-search div.pos .cm-button {
    position: absolute;
    top: 1px;
    right: 1px;
    padding: 6px 11px;
    background: #ffffff;
    cursor: pointer;
    color: #00000082;
    height: 28px;
    display: flex;
    align-items: center;
    z-index: 9;
}
.address-short-btn {
    position: absolute;
    height: 28px;
    overflow: hidden;
    top: 1px;
    background: #fff;
    left: 1px;
    /*padding: 0 6px;*/
    white-space: nowrap;
    user-select: none;
  /*width: calc(100% - 100px);*/
}

.address-short-btn > div {
    float: left;
    padding: 7px 4px;
    height: 28px;
    cursor: pointer;
}

.address-short-btn > div svg {
    margin-left: 9px;
}

.address-short-btn > div:last-child svg {
    display: none;
}
.address-short-btn > div svg {
    color: #00000045;
}
.address-short-btn > div svg {
    color: #00000045;
}
.address-short-btn > div:hover {
    background: #d9d9d9;
}
/*-------Search----------------|END-----*/






@media(max-width:767px){
.append-option-box {
    position: fixed;
    top: auto !important;
    bottom: 0 !important;
    width: 100%;
    left: 0 !important;
}
.append-option-box > div {
    float: left !important;
}
.append-option-box > .inner-contenxt-box {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-flow: nowrap;
}

.append-option-box>div>div {
    float: left;
  white-space: nowrap;
}
}


.icon-container {
    display: flex;
    align-items: flex-end;
    margin:10px;
}

.icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.icon img {
    width: 100px;
    height: 100px;
}

.icon span {
    margin-top: 5px;
    text-align: center;
    font-weight: bold;
}
.blinking-span {
  animation: blink-animation 1s infinite;
}

.excel-column-border {
  border: 1px solid black;
}

@keyframes blink-animation {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

.tracking-detail {
 padding:3rem 0
}
#tracking {
 margin-bottom:1rem
}
[class*=tracking-status-] p {
 margin:0;
 color:#fff;
 text-transform:uppercase;
 text-align:center
}
[class*=tracking-status-] {
 padding:1.6rem 0
}
.tracking-status-intransit {
 background-color:#65aee0
}
.tracking-status-outfordelivery {
 background-color:#f5a551
}
.tracking-status-deliveryoffice {
 background-color:#f7dc6f
}
.tracking-status-delivered {
 background-color:#4cbb87
}
.tracking-status-attemptfail {
 background-color:#b789c7
}
.tracking-status-error,.tracking-status-exception {
 background-color:#d26759
}
.tracking-status-expired {
 background-color:#616e7d
}
.tracking-status-pending {
 background-color:#ccc
}
.tracking-status-inforeceived {
 background-color:#214977
}
.tracking-list {
 border:1px solid #e5e5e5
}
.tracking-item {
 border-left:1px solid #e5e5e5;
 position:relative;
 padding:2rem 1.5rem .5rem 2.5rem;
 margin-left:3rem;
 min-height:5rem
}
.tracking-item:last-child {
 padding-bottom:4rem
}
.tracking-item .tracking-date {
 margin-bottom:.5rem
}
.tracking-item .tracking-date span {
 color:#888;
 font-size:85%;
 padding-left:.4rem
}
.tracking-item .tracking-content {
 padding:.5rem .8rem;
 background-color:#f4f4f4;
 border-radius:.5rem
}
.tracking-item .tracking-content span {
 display:block;
 color:#888;
 font-size:85%
}
.tracking-item .tracking-icon {
 line-height:2.6rem;
 position:absolute;
 left:-1.3rem;
 width:2.6rem;
 height:2.6rem;
 text-align:center;
 border-radius:50%;
 background-color:#fff;
 color:#fff
}
.tracking-item .tracking-icon.status-sponsored {
 background-color:#f68
}
.tracking-item .tracking-icon.status-delivered {
 background-color:#4cbb87
}
.tracking-item .tracking-icon.status-outfordelivery {
 background-color:#f5a551
}
.tracking-item .tracking-icon.status-deliveryoffice {
 background-color:#f7dc6f
}
.tracking-item .tracking-icon.status-attemptfail {
 background-color:#b789c7
}
.tracking-item .tracking-icon.status-exception {
 background-color:#d26759
}
.tracking-item .tracking-icon.status-inforeceived {
 background-color:#214977
}
.tracking-item .tracking-icon.status-intransit {
 color:#e5e5e5;
 border:1px solid #e5e5e5;
}
@media(min-width:992px) {
 .tracking-item {
  margin-left:10rem
 }
 .tracking-item .tracking-date {
  position:absolute;
  left:-10rem;
  width:7.5rem;
  text-align:right
 }
 .tracking-item .tracking-date span {
  display:block
 }
 .tracking-item .tracking-content {
  padding:0;
  background-color:transparent
 }
}

/* Dropdown Button (three dots) */
.dropbtn {
  color: black;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Positioning the dropdown container relative to its parent */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content - Initially hidden, will appear on hover */
/* Default dropdown styles */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  max-height: 250px; /* Max height for the dropdown */
  overflow-y: auto; /* Enable vertical scrolling if the dropdown exceeds max-height */
  box-shadow: 0px 12px 20px 0px rgba(0, 0, 0, 0.2); /* Shadow for dropdown */
  z-index: 1000; /* Ensures dropdown stays above other elements */
  padding-top: 10px;
}

/* Show dropdown content when hovering over the parent dropdown */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Style for the dropdown menu links */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Hover effect for the dropdown links */
.dropdown-content a:hover {
  background-color: #f1f1f1;
}

/* Hover effect on the dropdown button (3 dots) */
.dropdown:hover .dropbtn {
  background-color: white;
}

/* The dropbtn container */
.dropdown {
  position: relative;
}

/* Make sure the dropdowns for rows other than the last 3 open downward */
#folderTable tr:not(:nth-last-child(1)):not(:nth-last-child(2)):not(:nth-last-child(3)) .dropdown-content {
  top: 100%; /* Dropdown opens below the button */
  bottom: auto; /* Reset bottom for other rows */
}

/* For the last 3 rows, open the dropdown above (flow upwards) */
#folderTable tr:nth-last-child(1) .dropdown-content,
#folderTable tr:nth-last-child(2) .dropdown-content,
#folderTable tr:nth-last-child(3) .dropdown-content {
  top: auto; /* Reset top */
  bottom: 100%; /* Position dropdown above the button */
  max-height: 250px; /* Same max-height for last 3 rows dropdowns */
  overflow-y: auto; /* Ensure scrollability */
  padding-top: 10px;
}


/* Ensuring proper box-sizing across elements */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,600,700');
* {
  box-sizing: border-box;
}

/* Ensuring the dropdown menu appears outside of its parent container */
#folder-template-div, .box-body {
  overflow: visible !important; /* Allow dropdowns to overflow their container */
}

.ribbon {
  position: absolute;
  right: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 65px; height: 65px;
  text-align: right;
}
.ribbon span {
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(315deg);
  -webkit-transform: rotate(315deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#ff5d3f 0%, #d63c20 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 8px; right: -3px;
}
.ribbon span::before {
  content: "";
  position: absolute; left: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid #8F0808;
  border-right: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #8F0808;
}
.ribbon span::after {
  content: "";
  position: absolute; right: 0px; top: 100%;
  z-index: -1;
  border-left: 3px solid transparent;
  border-right: 3px solid #8F0808;
  border-bottom: 3px solid transparent;
  border-top: 3px solid #8F0808;
}
@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.ribbon{
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease-in-out;
  -webkit-animation-direction: alternate;
}
.progress-bar.animate {
   width: 100%;
}
.back_to_top {
   position: fixed; 
   bottom: 50px; 
   right: 25px; 
   width: 40px; 
   height: 40px; 
   color: rgb(238, 238, 238); 
   line-height: 40px; 
   text-align: center; 
   background-color: green; 
   cursor: pointer; 
   border-radius: 5px; 
   z-index: 99999; 
   opacity: 0.7;
}
/*News And Announcement Start Region*/
/*Staff List in admin upload news page and edit news page*/
.someclass ul {
  display:none;
}
/*News And Announcement End Region*/

/*DMS Management Start Region*/
.fix-header-table-div table thead {
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: #fff; /* Optional: Background color for the header */
}
.fix-header-table-div table {
    display: block;
    max-height: 500px; /* Adjust based on your needs */
    overflow-y: auto; /* Enable vertical scrolling */
}

.fix-header-table-div table th, .fix-header-table-div table td {
    padding: 10px;
    text-align: center;
}
/*.non-wetwork-margin-table-div {
    max-height: 100vh;
    overflow: auto;
}
.non-wetwork-margin-quotation-thead > tr > th {
    font-weight: normal;
    text-align: center;
    vertical-align: middle !important;
    min-width: 120px;
    position: sticky;
    top: 0;
    z-index: 1;
}*/
/*File List in admin/user file list page*/
.widget {
  padding: 10px 0;
  background-color: #fff;
  width: 100%;
  height: 90vh;
  /*max-height: 700px;*/
 /* box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.24);*/
  overflow: auto;
}

.widget > input { 
    display: block;
    width: 100%;
    min-height: 30px;
    margin-bottom: 20px;
    border: 0 none;
    border-bottom: 1px solid #ccc;
    outline: none;

  }

.folder-container {
  margin: 10px;
  padding: 0 3px;
  margin: 0;
}

.folder-wrapper {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.file-item,
.folder-item {
  margin-left: 10px;
  padding-left: 0;
  list-style-type: none;
  white-space: nowrap;
}

.file-item {
  background: transparent  url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAsUlEQVQ4T2NkgIKE2q4DMDZW+j+jAgPj//0LmssSkeUZEQZ0/1/QXArnoxuSUNPdwMDIEMDwn2HDgpbSBpg8aQYw/H/PwMCQwMDIMHFBc9kCkCGkGODAwMAAwiBd9TDXYhiQUNtdwPCfgR97ePy7uKClfENCLcK7RLsA2UC8BoADi4HhP44YObigpfTAsHfBgMcC3vwAzze0TAcUuKDrAMN/RlwJCNVcRoaPC5pLA0CCALOMnRHTr6OKAAAAAElFTkSuQmCC') no-repeat left center;
}

.folder-item {
  font-weight: bold;
}
/*DMS Management End Region*/

/*Live Chat Start Region*/
.live-chat {
  width: 250px;
  height: 50px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0px 12px 45px rgba(0, 0, 0, .15);
  text-align: center;
  margin: 0 0 10px 0;
  overflow: auto;
  opacity: 0;
}
/* Media Query for Mobile Devices */ 
@media (max-width: 480px) { 
  .live-chat {
    width: 250px;
  }
} 
          
/* Media Query for low resolution  Tablets, Ipads */ 
@media (min-width: 481px) and (max-width: 767px) { 
  .live-chat {
    width: 350px;
  }
} 

/* Media Query for Tablets Ipads portrait mode */ 
@media (min-width: 768px) and (max-width: 1024px){ 
   .live-chat {
    width: 750px;
  }
} 

@media (min-width: 1025px) and (max-width: 1280px){ 
  .live-chat {
    width: 800px;
  } 
}
          
/* Media Query for Large screens */ 
@media (min-width: 1281px) { 
  .live-chat {
    width: 800px;
  } 
} 

.live-chat::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.live-chat {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.live-chat.open {
  height: 450px;
  opacity: 1;
}
.live-chat.popup-ani {
  -webkit-transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/*.live-chat h1 {
  font-size: 20px;
  color: #757575;
  padding: 25px 0;
  margin: 0;
  font-weight:400;
  font-family: 'Roboto', sans-serif;

}*/
.live-chat .love {
  width: 20px;
  height: 20px;
  background-position: 35px 84px;
  display: inline-block;
  margin: 0 6px;
  background-size: 62px;
}
.live-chat .ba-logo {
  width: 65px;
  height: 25px;
  background-position: 0px;
  margin: 0 auto;
  opacity: .5;
  cursor: pointer;
}
.live-chat .ba-logo:hover {
  opacity: 1;
}
.logo-ani {
  transition: 0.5s linear;
  -webkit-transition: 0.5s linear;
}
.live-chat input {
  font-size: 14px;
  padding: 12px 15px;
  /*border-radius: 15px;*/
  border: 0;
  outline: none;
  margin: 8px 0;
  width: 100%;
  box-sizing: border-box;
  line-height: normal;
  /*Bootstrap Overide*/
  font-family: sans-serif;
  /*Bootstrap Overide*/
}
.live-chat form {
  padding: 5px 30px 0;
  margin-bottom: 15px;
}
.live-chat input[name="email"] {
  background-color: #eee;
}
.live-chat input[name="submit"] {
  background-color: #00aeef;
  cursor: pointer;
  color: #fff;
}
.live-chat input[name="submit"]:hover {
  background-color: #26baf1;
}

.live-chat input[name="reset"] {
  background-color: #C0C0C0;
  cursor: pointer;
  color: #fff;
}

.live-chat-fab {
  width: 65px;
  height: 65px;
  background-color: #FF0000;
  border-radius: 30px;
  float: right;
  box-shadow: 0px 12px 45px rgba(0, 0, 0, .3);
  z-index: 5;
  position: relative;
}
.live-chat-fab .img-fab {
  height: 30px;
  width: 30px;
  margin: 15px auto;
  background-image: url("/apps/trinity/common/image/live_chat.png");
  background-position: -1px -53px;
}
.live-chat-fab .wrap {
  transform: rotate(0deg);
  -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
  transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}
.live-chat-fab .ani {
  transform: rotate(45deg);
  -webkit-transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
  transition: all .15s cubic-bezier(0.15, 0.87, 0.45, 1.23);
}
.live-chat-fab .close {
  background-position: -2px 1px;
  transform: rotate(-45deg);
  float: none;
  /*Bootstrap Overide*/
  opacity: 1;
  /*Bootstrap Overide*/
}
.live-chat-wrap {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 1000;
}

#closeButton {
    position: absolute;
    top: 5px;
    right: 12px;
}
#chatTitle {
    position: absolute;
    top: 0;
    left: 8px;
}
#chat_overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  cursor: pointer;
}

#chat_content{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}
/*Live Region End Region*/

/*Side bar menu width start region*/
@media (min-width: 768px) {
  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > span:not(.pull-right-container) {
    width: 250px !important;
  }
 
  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > .treeview-menu {
    width: 250px !important;
  }

  .sidebar-mini:not(.sidebar-mini-expand-feature).sidebar-collapse .sidebar-menu > li:hover > a > .pull-right-container {
    left: 250px !important;
  }
}
.previewMeetingThumb{
  background-color: #EEEEEE;
  height: 100px;
  width: 100px;
  border: 2px solid;
  cursor: pointer;
}

.imageMeetingThumb {
  height: 100px;
  width: 100px;
  border: 2px solid;
  padding: 1px;
  cursor: pointer;
}
.pipMeeting {
  display: inline-block;
  margin: 10px 10px 10px 0; /*top right bottom left*/
}
.removeMeeting {
  display: block;
  background: #dd4b39;
  border-left: 1px solid black;
  border-right: 1px solid black;
  color: white;
  text-align: center;
  cursor: pointer;
}
.downloadMeeting {
  display: block;
  background: #3c8dbc;
  border: 1px solid black;
  color: white;
  text-align: center;
  cursor: pointer;
}
.removeMeeting:hover {
  background: white;
  color: black;
}

.card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.25rem - 0);
  border-top-right-radius: calc(0.25rem - 0);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.25rem - 0);
  border-bottom-left-radius: calc(0.25rem - 0);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 0 solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 0) calc(0.25rem - 0) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 0 solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 0) calc(0.25rem - 0);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.25rem - 0);
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 0);
  border-top-right-radius: calc(0.25rem - 0);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 0);
  border-bottom-left-radius: calc(0.25rem - 0);
}

.card-deck .card {
  margin-bottom: 7.5px;
}

@media (min-width: 576px) {
  .card-deck {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    margin-right: -7.5px;
    margin-left: -7.5px;
  }
  .card-deck .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-right: 7.5px;
    margin-bottom: 0;
    margin-left: 7.5px;
  }
}

.card-group > .card {
  margin-bottom: 7.5px;
}

@media (min-width: 576px) {
  .card-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .card-group > .card {
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: 0;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.option-image {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.option-text {
  font-size: 14px;
}
/*Side bar menu width end region*/


/*.ekko-lightbox.modal.fade.in div.modal-dialog{
  max-width:27%;
}*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
