/*
 Theme Name:   Hello Elementor Child
 Description:  Child Theme by DIGITALEWEGE
 Author:       Christoph Geier
 Author URI:   https://digitalewege.de/
 Template:     hello-elementor
 Version:      1.0
 Text Domain:  hello-elementor-child
*/

:root {
    background: #ffffff;
}


.buttonLine::after {
    content: '';
    position: absolute;
    width: 55px;
    height: 4px; /* Höhe der Linie */
    background-color: #485e70; /* Farbe der Linie */
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}

.buttonLineWhite::after {
    content: '';
    position: absolute;
    width: 55px;
    height: 4px; /* Höhe der Linie */
    background-color: #ffffff; /* Farbe der Linie */
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
}