 /* 
 * Gerdes-AG
 * Daniel Klemm
 * 2017
 */

 :root{
    --highlight-color:#00cc46;
    --link-color:#009846;/*Gerdes grün*/
}

.surveyform {
    margin-bottom: 15px;
}

.survey:focus { 
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 10px #9ecaed;
}

.surveybtn {
    background-color: var(--link-color);
    margin-top: 10px;
}

.surveybtn:hover:focus{
    background-color: var(--highlight-color);
    color: black;
}

.surveybtn:hover {
    background-color: var(--highlight-color);
    color: black;
}

.surveytron {
    background-color: white;
    border: 1px;
    border-style: solid;
    border-color: var(--link-color);
    padding-bottom: 50px;
}

.question {
    font-size: large;
}


/* centered columns styles */
.row-centered {
    text-align:center;
}
.col-centered {
    display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;
    width: 50%;
}

@media(max-width:768px) {
.col-centered {
	width: 100%;
	}
}
