
/* ==========================================
* CUSTOM ACCORDION PROJECTS LIST
* ==========================================
*/

/* Horizontal line */
.collapsible-link::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

/* Vertical line */
.collapsible-link::after {
  content: '';
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded='true']::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded='true']::before {
  transform: rotate(180deg);
}




/* ==========================================
* CUSTOM BANNER IMAGE CENTER
* ==========================================
*
*/

.image-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}


/* ==========================================
*TEXT LIST PROJECTS
* ==========================================
*
*/

.custom-list {
  margin-top:0px;
  margin-bottom:0px;
  width: auto;
  height: auto;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  
       
}


.custom-scrollbar-i {
  font-weight: lighter;
    
}

/******* CSS OF SCROLLBAR NOT USED ANYMORE ********
/*
 scrollbar width 
.custom-scrollbar::-webkit-scrollbar {
  width: 20px;
}

 scrollbar track 
.custom-scrollbar::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 0rem;
}

 scrollbar handle 
.custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background-color: #333;  
    height: 40px;
}

*/


/* ==========================================
*CUSTOM BOOTSTRAP ROW CSS
* ==========================================
*
*/

.col-custom {
  position: relative;
  width: 100%;
  padding: 15px;
  margin: 10px;
  flex: 0 0 48%; 
  min-width: 550px;    
  background-color: white;
  /*box-shadow: 0 0px 8px 0 rgba(0, 0, 0, 0.2), 0 0px 30px 0 rgba(0, 0, 0, 0.2);
  */    
}





