/* Shop */

/* Farben */
:root
{
  --hintergrund: #F9F5B4;
  --hintergrundachtung: LightCoral;
  --vordergrund: black;
  --linkunbesucht: #0000EE;
  --linkbesucht: #0000EE;
}

body
{
    color: var(--vordergrund); 
    background-color: var(--hintergrund); 
    width: 98%; 
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
}

#achtung
{
    background-color: var(--hintergrundachtung);
}

/* Eingabefelder */
input
{
    width:81%;
    font-size: 30px;
}

#inputhalb
{
    width:40%;
    font-size: 30px;
}

#inputviertel
{
    width:20%;
    font-size: 30px;
}

#inputdreiviertel
{
    width:60%;
    font-size: 30px;
}

textarea
{
    width:81%;
    font-size: 20px;
}

/* Select */
select
{
    width:81%;
    font-size: 30px;
}

/* Button */
button
{
    width:81%;
    font-size: 30px;
}

/* trennlinie */
hr
{
    background: var(--vordergrund);
    height: 2px; 
    border: none;
}

/* Tabellen */
table{
    border-collapse: collapse;
    border: thin solid;
    max-width: 98%;
    margin-left: auto;
    margin-right: auto;
}
th, td {
    border-collapse: collapse;
    border: thin solid;
    background-color: white;
}


/* bilder */
img {
  max-width: 98%;
  height: auto;
}

/* Link Farben*/
a:link
{
    color: var(--linkunbesucht);
}

a:visited
{
    color: var(--linkbesucht);
}


/* slider */
.switch {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 44px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 36px;
  width: 36px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: green;
}

input:focus + .slider {
  box-shadow: 0 0 1px green;
}

input:checked + .slider:before {
  -webkit-transform: translateX(46px);
  -ms-transform: translateX(46px);
  transform: translateX(46px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
