/* ********************************** ********************************** */
/* *                               TOOLS                               * */
/* ********************************** ********************************** */


.ly-button{        
    display:flex;
    flex-direction: row;
    justify-content:flex-start;
    align-items:center;    
    background:var(--ly-color-violett);
    border-radius:var(--ly-border-radius-default);
    min-width:250px;    
    max-width: 100%;
    margin-top:10px;
    margin-bottom:10px;
}

.ly-button.small{
  width:200px;
}

.ly-button.middle{
  width:350px;
}

.ly-button.big{
  width: 500px;
}

.ly-button.full{
  width: 100%;  
}

.ly-button.left{
    margin-left:auto;
}

.ly-button.right{
    margin-right:auto;
}

.ly-button.center{
  margin-left:auto;
  margin-right:auto;
    
}

.ly-button:hover{
    background: var(--ly-color-violett-light);
}

.ly-button-icon {
    display: grid;
    width:75px;    
    margin-right:10px;
    background:var(--ly-color-violett-light);    
    padding:10px;
    border-radius:var(--ly-border-radius-default);
}

.ly-button-icon i{
    color:#fff;
    font-size: 2.0rem;;       
    text-align: center;
}

.ly-button-text{    
    color:#fff;
    font-family: var(--ly-font-family-button);
    font-size: var(--ly-font-size-default);  
}




/* .................................. .................................. */
/* .                            Media-Queries                          . */
/* ..................................................................... */


/* Styles für Bildschirme mit einer Mindestbreite von 0px */
@media only screen and (min-width: 0px) {
}

/* XSMALL */
/* Styles für Bildschirme mit einer Mindestbreite von 576px */
@media only screen and (min-width: 576px) {
}

/* SMALL */
/* Styles für Bildschirme mit einer Mindestbreite von 992px */
@media only screen and (min-width: 768px) {
}

/* MEDIUM */
/* Styles für Bildschirme mit einer Mindestbreite von 992px */
@media only screen and (min-width: 992px) {
}

/* LARGE*/
/* Styles für Bildschirme mit einer Mindestbreite von 1200px */
@media only screen and (min-width: 1200px) {
}

/* DESKTOP */
/* Styles für Bildschirme mit einer Mindestbreite von 1400px */
@media only screen and (min-width: 1400px) {
}



/* ********************************************************************* */
/*                              HIDE & SHOW                              */
/*
 * ===== VERBERGEN ===== 
 * 
 * # Verbirgt Small Mobile
 * .ly-hide-sm-mobile
 * 
 * # Verbirgt Large Mobile und kleiner
 * .ly-hide-lg-mobile
 * 
 * # Verbirgt Tablet und kleiner
 * .ly-hide-tablet
 * 
 * # Verbirgt Desktop und kleiner
 * .ly-hide-desktop
 * 
 * 
 * ===== ZEIGEN =====
 * 
 * # Zeigt Small Mobile
 * .ly-show-sm-mobile
 * 
 * # Zeigt Large Mobile und kleiner
 * .ly-show-lg-mobile
 * 
 * # Zeigt Tablet und kleiner
 * .ly-show-tablet
 * 
 * # Zeigt Desktop und kleiner
 * .ly-show-desktop
 * 
 * 
 * ********************************************************************* */

/* Verbergen bis zu einem Breakpoint */


/* Verbirg das Element bis zu einer Bildschirmbreite von 480px. */
/* Verbirgt Small Mobile. */
.ly-hide-sm-mobile {
  display: none;
}

@media (min-width: 481px) {
 .ly-hide-sm-mobile {
    display: block;
  }
}

/* Verbirg das Element bis zu einer Bildschirmbreite von 767px. */
/* Verbirgt Large Mobile und alles, was kleiner ist. */
.ly-hide-lg-mobile {
  display: none;
}

@media (min-width: 768px) {
 .ly-hide-lg-mobile {
    display: block;
  }
}

/* Verbirgt das Element bis zu einer Bildschirmbreite von 1024px.*/
/* Verbrigt Tablet und alles, was kleiner ist.*/
.ly-hide-tablet {
  display: none;
}

@media (min-width: 1025px) {
 .ly-hide-tablet {
    display: block;
  }
}

/* Verbirgt das Element bis zu einer Bildschirmbreite von 1200px. */
/* Verbirgt Desktop und alles, was kleiner ist. */
.ly-hide-desktop {
  display: none;
}

@media (min-width: 1201px) {
 .ly-hide-desktop {
    display: block;
  }
}

/* Anzeigen ab einem Breakpoint */

/* Zeigt das Element nur bis zu einer Bildschirmbreite von 481px. */
/* Zeigt alles nur für Small Mobiles */
.ly-show-sm-mobile {
  display: block;
}

@media (min-width: 481px) {
 .ly-show-sm-mobile {
    display: none;
  }
}

/* Zeigt das Element nur bis zu einer Bildschirmbreite von 767px. */
/* Zeit alles für Large Mobiles und kleiner*/
.ly-show-lg-mobile {
  display: block;
}

@media (min-width: 768px) {
 .ly-show-lg-mobile {
    display: none;
  }
}

/* Zeigt alles für Tablets und kleiner */
.ly-show-tablet {
  display: block;
}

@media (min-width: 1025px) {
 .ly-show-tablet {
    display: none;
  }
}

/* Zeigt alles für Desktops und kleiner */
.ly-show-desktop {
  display: block;
}

@media (min-width: 1201px) {
 .ly-show-desktop {
    display: none;
  }
}

.ly-show-wide {
  display: none;
}

@media (min-width: 1201px) {
 .ly-show-wide {
    display: block;
  }
}


