/*box background color*/
.events-box{
    background-color:#FF6600 !important;
  }
  
  .dot-box{
    background-color:#FF6600 !important;
  }
  
  .dot-container {
    display: inline-flex;
    align-items: center;
    margin-right: 15px; /* Space between each dot and text */
  }
  
  .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%; /* Make the dot round */
    display: inline-block;
  }
  
  .text {
    margin-left: 10px; /* Space between the dot and the text */
    font-size: 12px; /* Text size */
    color: #000 !important; /* Text color */
    font-weight: normal;
  }

  .colored-line{
    border-top: 2px solid #000000 !important; /* Change this to any color you like */
  }
    
  .colored-line-1{
    border-top: 2px solid #ff6600 !important; /* Change this to any color you like */
  }