

/* Import the Poppins font family from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');


:root {
  /* ===== Colors ===== */
  --body-color: #F6F8FD;
  --black-color: #34364A;
  --blue-color: #003399;
  --orange-color: #F4A42B;
  --grey-color: #999AA4;
  --red-color: #E5262C;
  --green-color: #6ab04c;

  --light-orange-color: #FCE4BF;
  --light-grey-color: #E5E9F2;
  --light-red-color: #FFA9AA;
  --light-green-color: #B5E1C6;


  /* ====== Transition ====== */
  --tran-02: all 0.2s ease;
  --tran-03: all 0.3s ease;
  --tran-04: all 0.3s ease;
  --tran-05: all 0.3s ease;
}


.alva-red{
  color: #E5262C !important;
}

.alva-green{
  color: #6ab04c !important;
}

.alva-red-bg{
  background-color: #E5262C !important;
}

.alva-green-bg{
  background-color: #6ab04c !important;
}

.primary {
  color: var(--blue-color) !important;
}

.primary-bg {
  background-color: var(--blue-color) !important;
  color: #FFFFFF;
}

.primary-2{
  color: var(--orange-color) !important;
}

.primary-2-bg {
  background-color: var(--orange-color) !important;
  color: var(--blue-color);
}

.font-weight-bold{
  font-family: 'Poppins';
  font-weight: bold !important;
}

.disabled-link {
  pointer-events: none;
}

.funnel_step_1 span {
  width: 100%;
  border-top-color: var(--red-color);
}

.funnel_step_2 span {
  width: calc(100% - 50px);
  border-top-color: var(--orange-color);
}

.funnel_step_3 span {
  width: calc(100% - 100px);
  border-top-color: var(--green-color);
}

.funnel_step_4 span {
  width: calc(100% - 150px);
  border-top-color: var(--blue-color);
}

.pipeline_step_1{
  /* border: 1px solid #f1f2f6;  */
  box-shadow: 5px 3px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--red-color);
}

.pipeline_step_2{
  box-shadow: 5px 3px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--orange-color);
}

.pipeline_step_3{
  box-shadow: 5px 3px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--green-color);
}

.pipeline_step_4{
  box-shadow: 5px 3px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--blue-color);
}

.meter-bar {

}

.meter-bar .meter-grid{
  height: 30px;
  color: var(--blue-color);


  text-align: center;
  animation-name: fade-in;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}


.meter-bar .meter-grid .normal{
    background-color: rgba(0, 51, 153, 0.05);
    opacity: 0;
}

.meter-bar .meter-grid .low{
    background-color: rgba(0, 51, 153, 0.4);
    opacity: 0;
    animation-delay: 0s;
}

.meter-bar .meter-grid .medium{
    background-color: rgba(0, 51, 153, 0.6);
    opacity: 0;
    animation-delay: 0.3s;
}

.meter-bar .meter-grid .high{
    background-color: rgba(0, 51, 153, 0.8);
    opacity: 0;
    animation-delay: 0.6s;
}

.meter-bar .meter-grid .damage{
    background-color: rgba(0, 51, 153, 1);
    opacity: 0;
    animation-delay: 1s;
}

.opacity-50{
  opacity: 0.5 !important;
}



.custom-control-input:checked~.custom-control-label::before {
  background-color: #003399;
  border-color: #003399;
  box-shadow: none;
}

.custom-switch .custom-control-label::before {
  background-color: #dee2e6;
  border-radius: 16px;
  height: 16px;
  width: 29px;
}

.custom-switch .custom-control-label::after {
  background-color: #fff;
  transition: all 0.3s ease-in-out;


  /* background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  content: "";
  display: inline-block;
  height: 12px;
  margin-left: -14px;
  margin-top: -3px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  width: 12px; */
}

.custom-control-input:checked~.custom-control-label::after {
  transform: translateX(14px);
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-container {
    position: relative;
    display: inline-block;
  }

  .image-container:hover img {
    transform: scale(1.1);
    transition: transform 0.3s ease-out;
  }

  .image-container img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Popup box styles */

  .image-container:hover:after {
    content: '';
    position: absolute;
    top: -10px;
    left: calc(100% + 20px);
    z-index: 1;
    width: 200px;
    height: 200px;
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
  }

  .image-container:hover:after img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
  }

  .post-container {
    width: 100%;
    height: 400px;
    margin: 20px 0;
    position: relative;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    color: #fff;
  }

  .post-container:hover .post-image {
    transform: scale(1.05);
  }

  .post-container:hover .overlay {
    opacity: 1;
  }

  .post-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
  }

  .overlay {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

.funnel_outer {
    width: 100%;
    float: left;
    position: relative;
    padding: 0 5%;
}

.funnel_outer ul li span p {
  margin-top: -45px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.progress-screening{
  width: 100px;
  height:7px;
}

.progress-screening .progress-bar{
  height:7px;
}

.pagination {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.pagination .page-link {
  border-radius: 0;
  padding: 8px 12px;
  color: var(--blue-color);;
}

.pagination .page-item.active .page-link {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  color: #fff;
}

.pagination .page-link:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}

.pagination .disabled .page-link {
  color: #bbb;
}

.sidebar.active {
  display: block !important;
  margin-left: 0px !important;

}

.report .flag {
  width: auto;
  height: auto;
  background-color: transparent;
}

.text-justify{
  text-justify: justify;
}

.reviewed-bg{
  background-color: #f1f2f6 !important;
}

.btn:focus,
.btn:active {
  outline: none;
  box-shadow: none;
}

.dropdown-toggle::after {
  display: none;
}

.male-color {
  color: #93C3D8 !important;
}

.female-color {
  color: #D66572 !important;
}



.icon {
    width: 25px;
    height: 25px;
    border: 0px solid var(--grey-color);
    padding: 5px;
}

.sidebar a.active .icon {
  border: 0px solid var(--blue-color);
}

.icon i {
  font-size: 20px;
}

ul li .nav-link {
  display: flex;
  font-size: 14px;
  color: var(--grey-color);
  font-weight: 500;
  position: relative;
  align-items: center;
  padding: 8px 38px !important;
  text-decoration: none;
}

.alva-checkbox{
  width: 17px;
  height: 17px;
  border-color: var(--grey-color);
}

/* Hide the default checkbox */
.alva-checkbox input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
.alva-checkbox span {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;

  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #dcdde1;
}

/* Add a checkmark when the checkbox is checked */
.alva-checkbox input[type="checkbox"]:checked + span::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  border: solid white;
  background-color: #FFFFFF;
  animation: blink .5s linear infinite;

  /* border-width: 0 2px 2px 0; */
  /* transform: rotate(45deg); */
}

/* Change the background color when the checkbox is checked */
.alva-checkbox input[type="checkbox"]:checked + span {
  background-color: #003399;
  border-color: #003399;
}

.btn-export:hover {
  color: var(--orange-color) !important;
}

.collapse .nav-link.active {
  color: var(--blue-color) !important;
  font-weight: bold;
}

.bootstrap-select .btn-light{
  background-color: #FFFFFF !important;
  border: 1px solid #ced4da;
}

@media (max-width: 768px) {
  .sidebar {
    margin-left: -288 !important;
    display: none !important;
  }

}

/* .page-a4 {
  width: 210mm !important;
  height: 297mm !important;
  page-break-after: always;
} */


@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.blink {
  animation: blink 1.8s linear infinite;
}

@media print {
  .page-a4 {
    height: 297mm !important;
    page-break-after: always;
  }
}
