:root {

    --input-color: #666;
    --input-border: #5F8575;
    --input-background: #f4f4f4;
    --input-placeholder: #666;

    --input-border-focus: black;

    --group-color: var(--input-color);
    --group-border: var(--input-border);
    --group-background: white;

    --group-color-focus: #fff;
    --group-border-focus: var(--input-border-focus);
    --group-background-focus: #5F8575;}		
														/* FONTS */
.event{font-family: 'Righteous', cursive;}
.standtekst{font-size:16px; color: #666;}
														/* H1, H2, H3 OVERSKRIFTER */



														/* KNAPPER */
/* Interaktiv knap */
.i_knap{ color: #fff;
    background-color: rgb(95, 133, 117, 0.8);
    border-color: #2e6da4;
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin:20px;
font-family: 'Bebas Neue';
    transition: background 0.5s linear 0.1s , color 0.5s linear 0s; }

.i_knap:active {transform: scale(0.98); box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24);}

.i_knap:hover{background-color: white; color: black;}

/* Dropdowns */
.dropdownindhold {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
    bottom: 50px;
}

.dropdownindhold span {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdownindhold {
  display: block;
}
/* Dropdowns slut */


														/* INPUT */
.form-field {
    display: inline-block;
    font-family: inherit;
    border-radius: 6px;
    -webkit-appearance: none;
    color: var(--input-color);
    border: 1px solid var(--input-border);
    background: var(--input-background);
    transition: border .3s ease;
    &::placeholder {
        color: var(--input-placeholder);
    }
    &:focus {
        outline: none;
        border-color: var(--input-border-focus);
    }
}
														/* DIVs */
.div_et{background-color:#f4f4f4;}
.div_to{padding:20px;}
.div_flex{display: flex; justify-content: space-between;}
.div_flex > div{background-color: whitesmoke; width:200px; margin:10px; line-height:75px;}
/* TIL SMARTPHONE */
@media (max-width: 800px) {
.div_flex {
 flex-direction: column;
  }
}

														/* ANDET */
.linje {
    border-top: 2px solid red;
    width: 80px;
}
/* Read more */
.readmore {
  position: relative;
  max-height: 100px;
  overflow: hidden;
  width:800px;
  border: solid 1px #f4f4f4;
  padding: 10px;
  margin-bottom: 20px;
  transition:max-height 0.15s ease-out; }

.readmore.expand{
  max-height: 5000px !important;
  transition:max-height 0.35s ease-in-out;
}

.readmore-link{
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width:100%;
  height: 60px;
  text-align: center;
  color: black;
  font-weight:bold;
  font-size:16px;
  padding-top:40px;
  background-image: linear-gradient(to bottom, transparent, white);
  cursor: pointer;
}

.readmore-link.expand {
  position: relative;
  background-image: none;
  padding-top:10px;
  height:20px;
}

.readmore-link:after {
  content:"Læs mere";
}
.readmore-link.expand:after{
  content:"Minimer";
}
