




.markCol {
  text-align: left;
    vertical-align:middle !important;
  font: 14px Rubik;
  margin:0px !important;
  padding:0px !important;
  border-color: transparent !important;
  color: #B1B0B0;
}





.bigImage {
  border: 0;
  height: 300px;
  width:330px;
  background-color:transparent;
  display: inline-block;
  top:50%;
  margin-top:-15px;
}


.summaryDisplayTxt{
  border-style: hidden;
  width: 200px !important;
  text-align: center;
  margin:1rem 1px;
}




.distinction {
  background-color:  var(--distinctionBkg) !important;
}

.merit {
  background-color:  var(--meritBkg) !important;
}

.pass {
    background-color:  var(--passBkg) !important;
}

.fail {
    background-color:  var(--failBkg) !important;

}

.resubmit\/deferred {
    background-color:  var(--failBkg) !important;

}


/* // relates to assesment uploads */
.assessmentUploaderDiv {

font-size: medium;
background-color: #ebf4ec;
padding:5px;
margin:5px;
color:var(--s900) ;
height:100px;
border-radius: 5px;
}

.assessmentUploaderDiv h4 {
  padding-left: 15px;;
}
.assessmentUploaderDiv input[type=text] {
  color: #00230a ;
  padding:auto;
  font-size: medium;
  border: 2px solid #555;
  height:32px;
  width:50%;
  margin:auto;
  margin-top: 6px;
}



.folder-container {
  margin-bottom: 10px;
  padding: 3px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}


.folder-container ul {
  list-style: none;
  padding-left: 0;
  margin-top: 2px;
}

.folder-container li {
  background-color: #f9f9f9; /* same as .folder-container */
  padding: 1px 1px;
  border-radius: 4px;
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.folder-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 20px;

}

.delete-btn {
  cursor: pointer;
  font-size: 1.2rem;
  color: white;
  background-color:  var(--c600);
  border: none;
  padding: 5px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.delete-btn:hover {
  background-color:var(--c900);
  transform: scale(1.2);
}

.file-list {
  list-style-type: none;
  padding-left: 0;

}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2px 0;
  padding: 2px;
  border-bottom: 1px solid #ddd;
 
}

.file-name a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
 
}

.file-name a:hover {
  text-decoration: underline;
  background-color: #c7f1f5;
}




.feedback {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s ease;
  opacity: 0.95;
}

.feedback.success {
  font-size: medium;
  background-color: #28a745;
  color: white;
}

.feedback.error {
  font-size: medium;
  background-color: #dc3545;
  color: white;
}




.dropzone {
  border: 2px dashed #ccc;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 10px;
}
.dropzone.dragover {
  background-color: #f0f0f0;
}
#filePreviewList {
  list-style: none;
  padding-left: 0;
}
#filePreviewList li {
  margin: 5px 0;
}
#feedback {
  margin-top: 10px;
  padding: 8px;
  border-radius: 5px;
  display: none;
}









/* ----- fade In ------------------- */



.fade-in {
  animation: fadeIn ease var(--fadeInSecs);
  -webkit-animation: fadeIn ease var(--fadeInSecs);
  -moz-animation: fadeIn ease var(--fadeInSecs);
  -o-animation: fadeIn ease var(--fadeInSecs);
  -ms-animation: fadeIn ease var(--fadeInSecs);
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}
}


/* ----------------------------------- */

.form-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.form-fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ----- fade Out ------------------- */



.fade-out {
  animation: fadeOut ease var(--fadeOutSecs);
  -webkit-animation: fadeOut ease var(--fadeOutSecs);
  -moz-animation: fadeOut ease var(--fadeOutSecs);
  -o-animation: fadeOut ease var(--fadeOutSecs);
  -ms-animation: fadeOut ease var(--fadeOutSecs);
}

@keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
 }
}

