.dn {
    display: none;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

/* Admin-Settings */
.addQuestion, .removeQuestion, #addBenchmark, #removeBenchmark {
    padding-bottom: 10px;
}

.addQuestion a:hover, .removeQuestion a:hover, #addBenchmark a:hover, #removeBenchmark a:hover {
    cursor: pointer;
}

/* Icons für Radio-Buttons */
#spiderpoll input[type="radio"] {
    display: none;
}

#spiderpoll input[type="radio"] + label {
    color: #333;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

#spiderpoll .question {
	color: #b39048;
}

#spiderpoll input[type="radio"] + label span {
    display: inline-block;
    width:19px;
    height:19px;
    margin:-1px 4px 0 7px;
    vertical-align:middle;
    background:url(pollicons.png) -38px top no-repeat;
    cursor:pointer;
}

#spiderpoll input[type="radio"]:checked + label span {
    background:url(pollicons.png) -57px top no-repeat;
}

#spiderpoll td:nth-child(3), #spiderpoll td:nth-child(4), #spiderpoll td:nth-child(5), #spiderpoll td:nth-child(6) {
    text-align: center;
}
.chart-canvas-wrapper {
	display: block;
    width: 750px;
    height: 750px;
    overflow: auto;
}

.modalwindow {
    position: fixed;
    top: 0;
	right: 0;
	bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	z-index: 5000;
}
.modalwindow .modalcontent {
    padding: 1.6rem 3rem;
	max-width: 90vw;
	width: 450px;
	-webkit-box-shadow: 0 3px 8px 0 rgba(0,0,0,.5);
	box-shadow: 0 3px 8px 0 rgba(0,0,0,.5);
	background: #4b92a4;
	color: #FFF;
	padding: 30px;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.81;
}
.modalwindow .modalcontent h4 {
	color: #FFF;
}
.modalwindow .modalcontent .form-control {
	width: 100%;
}
.modalwindow .buttons{
    display: flex;
    justify-content: space-between;
}
.modalwindow .modalcontent .btn {
	padding: .45em 2em .5em !important;
}
.modalwindow .modalcontent .btn.btn-send {
	margin-right: ;
}
.modalwindow .modalcontent .btn.btn-send,
.modalwindow .modalcontent .btn.modalwindowclose:hover,
.modalwindow .modalcontent .btn.modalwindowclose:focus {
	background: #FFF;
	border: 1px solid #FFF;
	color: #4b92a4;
}
.modalwindow .modalcontent .btn.modalwindowclose,
.modalwindow .modalcontent .btn.btn-send:hover,
.modalwindow .modalcontent .btn.btn-send:focus{
	background: #4b92a4;
	border: 1px solid #FFF;
	color: #FFFFFF;
}

.modalwindow .buttons button{
    flex: 0.4 auto;
}


.range_tooltip {
	position: relative;
	display: inline-block;
  }
  
  .range_tooltip .range_tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: #555;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;
	opacity: 0;
	transition: opacity 1s;
  }
  
  .range_tooltip .range_tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
  }
  
  .range_tooltip:hover .range_tooltiptext {
	visibility: visible;
	opacity: 1;
  }