/*######################################################################
# BUTTON.CSS 
# ----------------------------------------------------------------------
# WEBASMEDIA | Andreas Schoene
# 
# KONFIGURATION
# -----------------------------------
# * Buttons
# 
# AENDERUNGEN
# -----------------------------------
# * 26.09.2023 - Erstellung
# 
#
#######################################################################*/

/***********************************************************************
 ***                         Button 1                                ***
 ***********************************************************************/
 
/** <p><a href="baumschule/arboretum/" title="Baumschule" class="buttonone">mehr erfahren</a></p> **/

.bg a.buttonone, .bg span.buttonone a {
    bottom: 60px;
}

a.buttonone, span.buttonone a {
    padding: 5px 15px;
    padding-right: 60px;
    background: #45257a;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-top: 2em;
    display: inline-block;
    position: relative;
    z-index: 50;
    color: #fff !important;
    position: absolute;
    bottom: 0px;
    white-space: nowrap;
    line-height: 2.5em;
    cursor: pointer;
    border-radius: 5px;
}

a.buttonone:hover:after, span.buttonone a:hover:after {
    width: 100%;
    -webkit-transition: width 500ms ease;
    -moz-transition: width 500ms ease;
    -ms-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
}

a.buttonone:after, span.buttonone a:after {
    content: '';
    width: 60px;
    height: 100% !important;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/button/button_01_round.svg');
    z-index: -1;
    background-size: cover;
    -webkit-transition: width 500ms ease;
    -moz-transition: width 500ms ease;
    -ms-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
}

/***********************************************************************
 ***                         Button 2                                ***
 ***********************************************************************/
 
/** <p><a href="baumschule/arboretum/" title="Baumschule" class="buttontwo">mehr erfahren</a></p> **/

.bg a.buttontwo, .bg span.buttontwo a {
    bottom: 80px;
}

a.buttontwo, span.buttontwo a {
    padding: 5px 15px;
    padding-right: 60px;
    background: #635d9b;
    text-transform: uppercase;
    font-size: 0.8em;
    margin-top: 2em;
    display: inline-block;
    position: relative;
    z-index: 50;
    color: #fff !important;
    position: absolute;
    bottom: 0px;
    white-space: nowrap;
    line-height: 2.5em;
    cursor: pointer;
    border-radius: 5px;
}

a.buttontwo:hover:after, span.buttontwo a:hover:after {
    width: 100%;
    -webkit-transition: width 500ms ease;
    -moz-transition: width 500ms ease;
    -ms-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
}

a.buttontwo:after, span.buttontwo a:after {
    content: '';
    width: 60px;
    height: 100% !important;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('../images/button/button_02_round.svg');
    z-index: -1;
    background-size: cover;
    -webkit-transition: width 500ms ease;
    -moz-transition: width 500ms ease;
    -ms-transition: width 500ms ease;
    -o-transition: width 500ms ease;
    transition: width 500ms ease;
}