/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user-rtl.css.map */
/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */
/* sjc_custom.css */
@charset "UTF-8";

.seemore {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.expanded {
  white-space: normal;
  overflow: visible;
}

.text-preview {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Overlay to disable other elements */
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050; /* Ensure it's above other elements */
}
.overlay-content {
    position: relative;
    z-index: 1060; /* Ensure it's above the overlay */
}

/* Carousel */

.carousel-multi-item {
    opacity: 0.75;
}

.carousel-item-center {
    transform: scale(1.2);
    opacity: 1;
    z-index: 2;
}

.carousel-item-blur {
    filter: blur(5px);
    pointer-events: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5); /* Slightly transparent black background */
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(0, 0, 0, 0.7)); /* Gradient for better visibility */
    width: 6vh;
    height: 6vh;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.8); /* White border for contrast */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for better visibility */
    transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background on hover */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); /* Stronger shadow on hover */
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    color: white; /* Ensure the icon itself is white for visibility */
}


/* scrollbar */
/* Hides scrollbar by default in Webkit browsers */
::-webkit-scrollbar {
  width: 8px;
  opacity: 0;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(85, 85, 85, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
  border-radius: 10px;
}


::-webkit-scrollbar-thumb:hover {
  background: rgba(136, 136, 136, 0.5);
}

.scrollable-dropdown {
  max-height: 200px; /* Adjust the maximum height as needed */
  overflow-y: auto;
}

.drag-file{
  border: 1px dashed #666;
  height: 300px;
  width: 350px;
  border-radius: 5px;
  font-weight:400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.drag-file.active{
  border: 2px solid #00cc00;
}
.drag-file .icon{
  font-size: 60px;
  color: #666;
}
.drag-file h6{
  font-size: 20px;
  font-weight: 300;
  color: #666;
}
.drag-file span{
  font-size: 14px;
  font-weight: 300;
  color: #666;
  margin: 10px 0 15px 0;
}
.drag-file button{
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 300;
  border: none;
  outline: none;
  background:transparent;
  color: #666;
  border:1px solid #666;
  border-radius: 5px;
  cursor: pointer;
  transition:all 0.5s;
}

.drag-file button:hover{
    background-color:#666;
    color:#00cc00;
}


.const-progress-container {
  width: 300px;
  margin: auto;
}

.const-progress-bar {
  height: 4px;
  background-color: rgba(5, 114, 206, 0.2);
  width: 100%;
  overflow: hidden;
}

.const-progress-bar-value {
  width: 100%;
  height: 100%;
  background-color: rgb(5, 114, 206);
  animation: indeterminateAnimation 1s infinite linear;
  transform-origin: 0% 50%;
}

.animate-progress-bar .const-progress-bar-value {
  animation: indeterminateAnimation 1s infinite linear;
}

@keyframes indeterminateAnimation {
  0% {
    transform:  translateX(0) scaleX(0);
  }
  40% {
    transform:  translateX(0) scaleX(0.4);
  }
  100% {
    transform:  translateX(100%) scaleX(0.5);
  }
}

.video-display-preview {
    width: 100%; /* Set the width of the video to 100% of its container */
    height: auto; /* Set the height to auto to maintain the aspect ratio */
    max-height: 100%; /* Limit the maximum height of the video */
}


/* pdf-viewer */

.file-viewer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #999999; /* Darker grey */
    padding: 20px;
}

.file-viewer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.file-viewer-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    bottom: 10px;
    background-color: #333; /* Match the darker grey background */
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.file-viewer-controls button {
    margin: 0 5px;
}
.file-viewer-canvas {
    background-color: white; /* Optional: to provide contrast with the grey background */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.text-viewer-container {
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
}

.text-viewer {
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 10px;
}


