.icon-check {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}

.icon-check::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 6px;
    height: 2px;
    border: solid #4CAF50;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
}

.icon-shield {
    display: inline-block;
    width: 16px;
    height: 20px;
    background: linear-gradient(to bottom, #4CAF50, #087f23);
    clip-path: polygon(50% 0, 100% 25%, 100% 80%, 50% 100%, 0 80%, 0 25%);
    margin-right: 10px;
}

.icon-warning {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: #FFC107;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: relative;
    margin-right: 10px;
}

.icon-warning::before {
    content: '!';
    position: absolute;
    top: 2px;
    left: 5px;
    font-size: 12px;
    color: #000;
    font-weight: bold;
}

.icon-book {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: linear-gradient(to right, #1E90FF 20%, #fff 20%, #fff 80%, #1E90FF 80%);
    border: 1px solid #1E90FF;
    position: relative;
    margin-right: 10px;
}

.icon-book::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 2px;
    height: 12px;
    background: #1E90FF;
}

.icon-file {
    display: inline-block;
    width: 12px;
    height: 16px;
    background-color: #FF5722;
    clip-path: polygon(0 0, 80% 0, 100% 20%, 100% 100%, 0 100%);
    margin-right: 10px;
    position: relative;
}

.icon-file::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 6px;
    height: 2px;
    background-color: #fff;
}

.icon-file::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 3px;
    width: 6px;
    height: 2px;
    background-color: #fff;
}

.icon-info {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #03A9F4;
    color: white;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.icon-info::after {
    content: 'i';
}

.icon-pencil {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: linear-gradient(to bottom, #FF9800, #E65100);
    clip-path: polygon(50% 0, 100% 25%, 100% 100%, 0 100%, 0 25%);
    margin-right: 10px;
    position: relative;
}

.icon-pencil::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 3px;
    width: 8px;
    height: 4px;
    background: #000;
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}



.icon-warning-triangle {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #FF5722;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: relative;
    margin-right: 10px;
}

.icon-warning-triangle::before {
    content: '!';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.icon-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 10px;
}

.icon-squares {
    display: inline-block;
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #3F51B5;
    margin-right: 10px;
}

.icon-squares::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 12px;
    height: 12px;
    background-color: #7986CB;
}

.icon-dot-circle {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #4e73df;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
}

.icon-dot-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background-color: #4e73df;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.icon-line {
  display: inline-block;
  width: 17px;
  height: 2px;
  background-color: #000000; 
  margin-right: 15px;
  position: relative;
}

.icon-line::before,
.icon-line::after {
  content: '';
  position: absolute;
  width: 17px;
  height: 2px;
  background-color: inherit; 
}

.icon-line::before {
  top: -6px; 
}

.icon-line::after {
  top: 6px; 
}

.icon-gradient-square {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    margin-right: 10px;
    border-radius: 2px;
}

.icon-bars {
    display: inline-block;
    width: 20px;
    height: 10px;
    position: relative;
    margin-right: 10px;
}

.icon-bars::before,
.icon-bars::after {
    content: '';
    display: block;
    height: 3px;
    background-color: #9C27B0;
    margin-bottom: 2px;
}

.icon-bars::before {
    width: 15px;
}

.icon-bars::after {
    width: 8px;
}



.border-left-primary {
    border-left: 0.35rem solid #4e73df !important;
  }
  
  .border-bottom-primary {
    border-bottom: 0.35rem solid #4e73df !important;
  }
  
  .border-left-secondary {
    border-left: 0.35rem solid #858796 !important;
  }
  
  .border-bottom-secondary {
    border-bottom: 0.35rem solid #858796 !important;
  }
  
  .border-left-success {
    border-left: 0.35rem solid #1cc88a !important;
  }
  
  .border-bottom-success {
    border-bottom: 0.35rem solid #1cc88a !important;
  }
  
  .border-left-info {
    border-left: 0.35rem solid #36b9cc !important;
  }
  
  .border-bottom-info {
    border-bottom: 0.35rem solid #36b9cc !important;
  }
  
  .border-left-warning {
    border-left: 0.35rem solid #f6c23e !important;
  }
  
  .border-bottom-warning {
    border-bottom: 0.35rem solid #f6c23e !important;
  }
  
  .border-left-danger {
    border-left: 0.35rem solid #e74a3b !important;
  }
  
  .border-bottom-danger {
    border-bottom: 0.35rem solid #e74a3b !important;
  }
  
  .border-left-light {
    border-left: 0.35rem solid #f8f9fc !important;
  }
  
  .border-bottom-light {
    border-bottom: 0.35rem solid #f8f9fc !important;
  }
  
  .border-left-dark {
    border-left: 0.35rem solid #5a5c69 !important;
  }
  
  .border-bottom-dark {
    border-bottom: 0.35rem solid #5a5c69 !important;
  }