.sidebar_stoerer_section.content_section {
    position: fixed; top: 5rem; left: 0; right: 0; padding: 0;
    width: auto; height: auto; pointer-events: none;
    z-index: 200;
}
.sidebar_stoerer_section.content_section > .row {
    -webkit-box-pack:end;
    -webkit-justify-content:flex-end;
    -ms-flex-pack:end;
    justify-content:flex-end;
}
.sidebar_stoerer_section.content_section > .row .content_column {
    pointer-events: all; font-size: 1rem; width: 2.5em; height: 5em;
    background-color: #997514; color: #FFFFFF; padding: 0.25em;
    text-align: center; border-top-left-radius: 0.25em;
    border-bottom-left-radius: 0.25em;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%; 
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; 
}
.sidebar_stoerer_section.content_section > .row .content_column > * {
    -webkit-box-flex:0;
    -webkit-flex:0 0 100%;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
}
.sidebar_stoerer_section.content_section > .row .content_column > p {
    font-size: 0.625em; margin: 0;
    display: none;
}

.sidebar_stoerer_section.content_section > .row .content_column > .button-group {
    margin: 0;
    -webkit-box-pack:center;
    -webkit-justify-content:center;
    -ms-flex-pack:center;
    justify-content:center;
}
.sidebar_stoerer_section.content_section > .row .content_column > * .button {
    font-size: 0.875em; padding: 0.25em; border-radius: 50%; 
    width: 1.875em; height: 1.875em; color: inherit;
    margin: 0.375em;
}



@keyframes pulse {
    0%   {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    90%  {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    95%  {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100%  {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
  }


@media screen and (min-width: 64em){
    .sidebar_stoerer_section.content_section {
        padding: 0 4rem;
    }
    .sidebar_stoerer_section.content_section > .row .content_column {
        font-size: 1rem; width: 6em; height: 6em; padding: 1em;
        border-radius: 50%; position: relative;
        animation-name: pulse;
        animation-duration: 4s;
        animation-iteration-count: infinite;
    }
    .sidebar_stoerer_section.content_section > .row .content_column:after {
        width: 6.5em; height: 6.5em; top: 50%; left: 50%; 
        content: ''; position: absolute; border: 0.125em solid #997514;
        pointer-events: none; border-radius: 50%;
        -webkit-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%)
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }
    .sidebar_stoerer_section.content_section > .row .content_column > p {
        display: block;
    }
    .sidebar_stoerer_section.content_section > .row .content_column > * .button {
        margin: 0.125em;
    }
}

@media screen and (min-width: 64em){
    .sidebar_stoerer_section.content_section > .row .content_column {
        font-size: 1.25rem;
    }
}