﻿#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.9);
    z-index: 999999;
    cursor: not-allowed;
    display: none; 
}

    #loader .inner-loader {
        width: 86px;
        height: 50px;
        border-radius: 50px;
        background: radial-gradient(farthest-side,#0000 calc(100% - 10px),#FFF calc(100% - 10px) 100%,#0000) left, radial-gradient(farthest-side,#0000 calc(100% - 10px),#FFF calc(100% - 10px) 100%,#0000) right;
        background-size: calc(50% + 5px) 100%;
        background-repeat: no-repeat;
        animation: flipX 1s infinite linear;
        position: relative;
        position: fixed;
        transform: translate(-50%, -50%);
        left: 50%;
        top: 50%;
    }
    

        #loader .inner-loader:before {
            content: "";
            position: absolute;
            inset: 0;
            margin: auto;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #FF3D00;
            transform-origin: -14px 50%;
            animation: rotate 0.5s infinite linear;
        }

@keyframes flipX {
    0%, 49.99% {
        transform: scaleX(1);
    }

    50%, 100% {
        transform: scaleX(-1);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}


.Imgbg {
    background: none !important;
    padding: 0px;
}
    .Imgbg img {
        border-radius: 50px;
        width:35px !important;
    }
.myprofile {
  
    height: 40px;
    width: 40px;
    background: white;
    border-radius: 50%;
    padding: 21px;
    background-image: url(http://admin.sky8pay.net//uploads//c3452fce-18c2-4923-8bf3-b75bafd13cb6.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom:1px;
    margin-left:5px;

}
.tooltip {
    background: rgb(230, 229, 229) !important;
    color:red !important;
/*    position:relative !important;
    left:20px !important;
    top:30px !important;*/
  
}
.tooltip-bg{
    background-color:red !important;
}

/*fileuploadercss*/


.file-supported {
    font-size: 12px;
    opacity:0.7;
    font-weight:400 !important;

}
.uploadicon{
    max-width:45px !important;
}
.instrutionList li{
    font-size:13px;
    opacity:0.8;
    line-height:20px;
}
.instrutionList ul{
    list-style-type:lower-alpha
}

.instrutionList ul li::marker {
    font-size:13px;
    color:black;
    font-weight:bold;
    }


/* File Upload Container Styling */
/* File Upload Container Styling */
.file-upload-container {
    width: 400px;
    margin: 0px auto;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 20px;
    border: 2px dashed #ccc;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #f9f9f9;
    text-align: center;
}

.file-upload-input {
    display: none;
}

.uploadicon {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
}

.uploaded-files {
    margin-top: 15px;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

    .uploaded-file span {
        font-size: 14px;
        color: #555;
    }

.progress-bar {
    height: 5px;
    width: 0; /* Initially hidden until progress is made */
    background-color: #4caf50;
    border-radius: 5px;
    margin-top: 5px;
    transition: width 0.5s ease-in-out;
}

.progress-container {
    flex: 1;
    margin-left: 10px;
}

.success-message {
    display: none;
    font-size: 14px;
    color: green;
    margin-right:12px;
    opacity: 0;
    transition: opacity 0.5s ease-out;
}

.cancel-btn {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: 23px;
    position: absolute;
    top: 40%; 
    right: 4px; 
    transform: translateY(-50%);
}
    .cancel-btn:hover {
        color: #e74c3c;
    }

/* Hide progress bar and success message after completion */
.uploaded-file.complete .progress-bar {
    display: none;
}

.uploaded-file.complete .success-message {
    display: block;
    opacity: 1;
}


.topTabs .nav-pills .nav-link:active {
font-size:13px;
background-color:green;
color:white !important;
border-radius:50px;

}
.topTabs .nav-link {
    font-size: 13px;
    background-color: rgb(230, 229, 229);
    border-radius: 50px;
}

.topTabs .nav-pills .nav-link.active{
    background-color:green;
    color:white !important;
}
.topTabs .active-link {
    border-radius: 50px;
}




.upload-container {
    background-color: #f6f0fc; /* Light purple background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.upload-icon {
    width: 40px; /* Adjust size of the icon */
}

.uploaded-file-box {
    background-color: #eadef8; /* Matching purple background */
    border: 1px solid #d2c6f0; /* Border for file container */
    border-radius: 8px;
}

#replaceFileBtn {
    background-color: #ffffff;
    color: #6c757d;
    font-size: 14px;
}

    #replaceFileBtn:hover {
        background-color: #f0f0f0;
    }


.feedbackText {
    margin-top: 5px;
    font-weight: bold;
    text-align: center;
    display: none; 
}

    .feedbackText.visible {
        display: block; 
    }

.feedbackIcon {
    max-width: 51px;
    filter: grayscale(1);
    background: #D9D9D9;
    border-radius: 50px;
    padding: 6px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

    .feedbackIcon.selected {
        transform: scale(1.2);
        filter: grayscale(0);
        background: radial-gradient(circle, #F96C24 0%, #FFDF9B 100%);
    }


.feedbackModal {
    border: 1px solid #dee2e6 !important;
}
#commentBox{
    resize:none;
}


.feedbackPopup .modal-footer {
    border: none !important;
    outline: none !important;
}

#chat-widget-container{
    box-shadow:none !important;
}

#tbluserdata p{
    font-size:13px;

}

.fileTable td{
   padding-block:3px; 
}


.UploadedFileTableData .table-responsive tbody tr:nth-child(2n) {
    background-color: unset;
}

.PdfImage{
    max-width:60px;
}
#pdfLink p{
    max-width:152px;
}

.ytubefilms >div{
    position:relative;

}
.ytubeIcon{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
   max-width:50px;
}


.btn:focus-visible{
    box-shadow:none;
}



#file-upload-container {
    margin-top: 20px;
}

.file-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.file-name {
    flex: 1;
    font-size: 14px;
    color: #333;
    margin: 0;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 10px;
    flex: 2;
}

.progress-fill {
    width: 0;
    height: 100%;
    background-color: #4a3aff;
    transition: width 0.3s ease-in-out;
}

.remove-file-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    flex: 0.2;
}

    .remove-file-btn:hover {
        color: #ff0000;
    }

.upload-status {
    font-size: 12px;
    color: green;
    white-space: nowrap;
}



.chooseFile {
    font-size: 12px;
    padding:1px !important;
}

.bg-transparent .uploadicon{
    margin-bottom:0px;
}

.file-upload-label .bg-transparent{
    padding:0px;
}

.verContainer .upload-status {
    position: static !important;
    font-size: 12px !important;
    color: green !important;
    white-space: nowrap;
    background:none !important;
}


.formVerification form:first-of-type p {
    height:14px;
    font-size:13px;
    font-weight:600;
}


