body {
    letter-spacing: 0.3px;
}

.fw-semibold {
    font-weight: 600;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #F6F6F6;
  z-index: 9999;
  transition: all 0.6s ease;
}

.loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: 0.4s;
}

#loader_logo {
  display: block;
  width: 125px;
  height: auto;
  margin-bottom: 30px;
}

#loader_text {
  text-align: center;
  margin-bottom: 25px;
  font-size: 13px;
  font-weight: 600;
  color: #85868f;
}

.loader .loader_bar {
  position: relative;
  width: 500px;
  height: 4px;
  background: #d1d2dd;
  border-radius: 100px;
  --loader-width: 0%;
}

.loader .loader_bar:before {
  content: '';
  transition: width 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: var(--loader-width);
  height: 100%;
  background: #00ade5;
  border-radius: 50px;
}
  
.cu-main-body-wrap {
    overflow: hidden;
    background-color: #F8F8F8;
    min-height: 100vh;

}

.cu-main-section-wrap {
    position: relative;
    z-index: 5;
    padding-right: 24px;
    padding-left: 24px;
    margin-left: 4vw;
    margin-right: 4vw;
}


@media (max-width: 991px) {
    .cu-main-section-wrap {
      padding-right: 56px;
      padding-left: 56px;
    }
    .loader .loader_bar {
      width: 70vw;
    }
    #loader_text {
      text-align: center;
      font-size: 12px;
      font-weight: 550;
    }
}

@media (max-width: 767px) {
    .cu-main-section-wrap {
      padding-right: 40px;
      padding-left: 40px;
    }
}

.cs-section-div {
    position: relative;
    z-index: 5;
}

.cu-search-icon {
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 30px !important; 
    height: 30px !important;
    padding: 15px; /* Adjust this to the size you want */
    box-sizing: border-box; /* This ensures that the padding is included in the button's total width and height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* This will make sure the image doesn't spill out of the circular button */
    margin: none;
}

.cu-search-icon:hover, .cu-search-icon:active {
    background-color: #d3d3d3; /* Change this to the darker color you want */
}

.cu-search-icon img {
    height: 20px !important;
    width: 20px !important;
}

.cu-close-icon {
    border-radius: 50%; 
    transition: background-color 0.3s ease;
    width: 30px !important; 
    height: 30px !important; 
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    margin: none;
}

.cu-close-icon:hover, .cu-search-icon:active {
    background-color: #d3d3d3;
}

.cu-close-icon img {
    height: 20px !important;
    width: 20px !important;
}



#cu-projectSearch:focus {
    outline: none;
    border: 1px solid grey;
}

.cu-project-container {
    transition: max-height 0.5s ease-in-out;
  }
  
  .tickbox-image {
    transition: background-image 0.5s ease-in-out;
  }
  
  .tickbox-image.active {
    background-image: url('images/cu-tickbox-active.png');
  }
  
  #cu-filter-dropdown {
    transition: transform 0.2s ease-in-out;
  }
  
  #cu-filter-dropdown.active {
    transform: rotate(90deg);
  }
  

.cu-img {
    max-width: 100%;
    height: auto;
}

.cu-project-container {
    box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
    background-color: #FFFFFF;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

.cu-project-container {
    transition: all 1s ease-in-out;
}

.cu-project-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.cu-project-type {
    background-color: #D8F3DB;
    border-radius: 15px;
    display: inline-block;
}

.cu-url-text {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
  }  

.cu-project-btn {
    border-radius: 5px;
    background-color: #FFFFFF;
    color: black;
    border: none;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease; /* Add transition for smooth effect */
}

.cu-project-btn:hover {
    background-color: #f5f5f5; /* Change background color when hover */
}

.cu-project-btn:active {
    background-color: #e0e0e0; /* Change background color when active (clicked) */
    box-shadow: none; /* Remove box shadow when active (clicked) */
}

.fade {
    transition: opacity 0.15s linear;
  }
  
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%);
  }
  
  .modal.show .modal-dialog {
    transform: translate(0, 0);
  }
  


