/*
Theme Name: Divi Child Theme
Theme URI: https://putzdesign.com/
Description: Child Theme For Divi
Author: VB Putz-Design
Author URI: https://putzdesign.com/
Version: 1.0.0
Template: Divi
*/

/* Taste ausklappen */
.hide {
  display:none;
}
.degrade {
  transition:background-color 1300ms ease 0ms,border 1300ms ease 0ms;
}
.degrade.close > *:after {
  content:"";
  position:absolute;
  top:0;
  display:block;
  width:100%;
  height:calc(100% - 32px);
}
/* Style hier Deine Taste */
.button {
  display:block;
  max-width:150px;
  cursor:pointer;
  padding:4px;
  -webkit-border-radius:6px;
  -moz-border-radius:6px;
  border-radius:6px;
  text-align:center;
  color:#fff;
  margin-top:20px;
  transition: background-color 300ms ease 0ms,border 300ms ease 0ms;
}
.button:hover {
  box-shadow:1px 1px 10px 0px rgba(0,0,0,0.3);
}

/* Hintergrundfarbe Deiner Taste */
.background-taste {
  background:#2da1db;
}

/* style hier die Hover Farbe Deiner Taste */
.background-taste:hover {
  background:#000;
  color: #2da1db;
  border: solid 1px #2da1db;
}