/* Modified Bootstrap Text & Button Colors */
/* btn-primary-#051a37 Dark Blue */
/* btn-danger-#2cabfb Light Blue  / Hover-#048ee1 Shade Darker*/
/* btn-danger used on Product Cards */

div.text-primary{
    color:#051a37 !important;
  }
  
  .btn-danger,
  .btn-danger:focus,
  .btn-danger:active{
    background-color: #2cabfb !important;
    border-color: #2cabfb !important;
  }
  
  .btn-danger:hover{
    background-color: #048ee1 !important;
  }
  
  /*.btn-primary, .btn-primary:hover, .btn-primary:active, .btn-primary:visited {
      background-color: #8064A2;
  }
  */
  
  .colored-line{
    border-top: 2px solid #051a37; /* Change this to any color you like */
  }
  
  .colored-line-1{
    border-top: 2px solid #ffffff; /* Change this to any color you like */
  }