/*  ==================================================================
	HIER KOMMEN DEINE AUSGELAGERTEN CSS BEFEHLE REIN =================
	==================================================================  */
.sticky {
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 9;
}

.sticky {    position: fixed;    width: 100%;    bottom: 0;    z-index: 9;}

/*** THIS CHANGES THE LOOK OF THE FORM FIELDS ***/
.caldera-grid .form-control {
 padding: 16px;
 height: auto;
 box-shadow: none;
 background: #eee;
 color: #999;
 border: none;
}
 
/*** THIS CHANGES THE BUTTON STYLE ***/
.caldera-grid input[type=submit] {
 padding: 10px 20px;
 border-radius: 2px;
 background: #FEAF0C;
 color: #F42305;
 font-size: 20px;
 border: 2px solid #F42305;
 float: right;
 transition: all 0.3s ease-in-out;
}
 
/*** THIS CHANGES THE BUTTON HOVER STYLE ***/
.caldera-grid input[type=submit]:hover {
 background: #F42305;
 border-color: #FEAF0C;
 color: #FEAF0C;
 
}