/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 21 2025 | 18:44:04 */
/* 
Styling the line connecting html block between "consultation", "Demo", "Setup" on the Pricing page.
*/

/*Desktop Mode*/
/*Line styles*/
    .divider-line{
        width:250px;
        height:3px;
        background-color: #000;
        padding:0px;
        margin: 20px -30px 0px -20px;
    }
/*Tablet Mode*/
@media screen and (max-width: 1024px) {
  /*Line styles*/
  .divider-line{
        width:3px;
        height:100px;
        background-color: #000;
        padding:0px;
        margin: 0px 0px 0px 20px;
    }
    
}
/*Mobile Mode*/

@media screen and (max-width: 767px) {
  /*Line styles*/
  .divider-line{
        width:3px;
        height:100px;
        background-color: #000;
        padding:0px;
        margin: 0px 0px 0px 20px;
    }
    
}

