/* For tablets and mobile devices */
@media screen and (max-width: 1024px) { /* tablet */
    .column-divide {
        display: block; /* stack columns vertically */
        width: 100%; /* full width */
        box-sizing: border-box; /* include padding in width */
    }
  [id^=edit-actions] {
   
    left: 0px;
}
}

@media screen and (max-width: 600px) { /* mobile */
    .column-divide {
        display: block;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px; /* spacing between stacked items */
    }
  [id^=edit-actions] {
   
    left: 0px;
}
}
