/* Allgemeines, u.a. wie die Schrift im Inhalt aussieht */

input[type=submit], button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

		
blockquote {
    width: 95%;
	margin: 20px 10px;
    background: rgba(255,255,255,0.5);
	box-shadow: var(--boxshadow);
    padding: 10px;
    border-left: 10px solid #ddd;
    font-family: Cambria, serif; /* Consolas */
    font-style: italic;
    letter-spacing: 1px;
    font-size: 1rem;
    color: var(--background-dark);
}
blockquote i {
    font-family: Cambria, serif; /* Consolas */
    font-size: 1rem;
    font-style: normal;
    color: var(--highlight-one);
}	

@media (min-width: 48em) {
   blockquote { width: 70%;}
}

/*---------------- TABLES ----------------*/
/*
table {
    width:400px;
	margin-left: auto;
    margin-right: auto;
	margin-top: 10px;
	margin-bottom: 20px;
	border-radius: 10px;
	//-webkit-border-radius: 10px;
	//-moz-border-radius: 10px;
    //box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: left;
}

@media (max-width: 600px) {
   table { width: 100%;}
}

table tr {
    padding: 15px;
}
*/
/*---------------- INPUT FELDER ----------------*/
textarea, select, input[type=text], input[type=password], input[type=email], input[type=number], input[type=file], input[type=color]  {
	background: #fff;
	border: 1px #ddd solid;
	padding: 10px 5px;
    border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
    box-shadow: var(--boxshadow);
    margin: 3px 0;
}

select, input[type=text], input[type=password], input[type=email], input[type=number], input[type=file] {
    width: 250px;
}


textarea:disabled, select:disabled, input[type=text]:disabled, input[type=password]:disabled, input[type=email]:disabled, input[type=number]:disabled, input[type=file]:disabled, input[type=color]:disabled  {
    background: #eaeaea;
    cursor: not-allowed;
}
    
input[type=color] {
    height: 37px;
    cursor: pointer;
    background: transparent;
    padding: 0px;
    vertical-align: bottom;
    margin-right: 2px;
    margin-bottom: 5px;
}

textarea {
	height: 150px;
}

input[type=submit], button, a.buttonlink {
	background:  var(--secondarycolor);
	border: 0;
	margin-top:5px;
	margin-bottom:5px;
	padding: 10px;
	color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: normal;
}

a.buttonlink {
    display: inline-block;
    text-decoration: none;
}

button a, button a:link, button a:visited, button a:active, button a:hover {
    color: #fff;
    font-weight: normal;
}

input[type=submit]:hover, button:hover, a.buttonlink:hover {
	background: var(--secondarycolor-dark);
}

input[type=submit]:active, button:active, a.buttonlink:active {
	background: var(--secondarycolor-darker);
}

input[type=submit]:disabled, input[type=submit]:disabled:active, button:disabled, button:disabled:active {
    background: #999;
    cursor: not-allowed;
}

button > a::before {
    content: none;
}

.labl >  input { /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
}
.labl >  input + div{ /* DIV STYLES */
    cursor:pointer;
}
.labl >   input:checked + div { /* (RADIO CHECKED) DIV STYLES */
    /* box-shadow: 5px 10px #888888; */
    border-radius: 22px;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
}

/* ------------------- CHECKBOX ----------------------- */

/* http://jsfiddle.net/0qjozqtc/1/ */
/*
.checkbox { position: absolute; opacity: 0; z-index: -1;  outline:none;}
.checkbox+span:before, .checkbox:checked+span:before { content: url('../images/icons/checkbox-unchecked.svg'); display: inline-block; width: 16pt; padding: 2px 0 0 3px; margin-right: 0.5em; outline: none; }
.checkbox:checked+span:before { content: url('../images/icons/checkbox-checked.svg'); }
.checkbox:focus+span:before { outline: 1px dotted #aaa; }
.checkbox:disabled+span { color: #999; }
.checkbox:not(:disabled)+span:hover:before { text-shadow: 0 1px 2px #77F; }

.checkbox::-moz-focus-inner,
.checkbox:checked+span:before::-moz-focus-inner,
.checkbox+span:before::-moz-focus-inner,
.checkbox:focus+span:before::-moz-focus-inner { border: 0; outline:none; } /* komischer gepunkteter Umriss in Firefox */
.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #000;
}
.checkbox:hover + label:before {
  background: #f35429;
}
.checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.checkbox:checked + label:before {
  background: #f35429;
}
.checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}
.redbutton {
    background: #d64b4b !important;
}
.redbutton:hover {
    background: #e65555 !important;
}
.redbutton:active {
    background: #bf3434 !important;
}