*
{
    margin:0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}

body
{
    margin-top: 80px;
}

/*--------------PRISER-SIDEN--------------*/

/*----undermenuen paa siden----*/

/*----whitespace----*/
.prisMenu
{
    padding-top: 4%;
}

/*----flexbox-af-undermenuen----*/
.prisMenu div{
    display: flex;
}

/*----layout-af-undermenuen----*/
.prisMenu div a{
    margin: auto;
    font-family: freight-neo-pro, sans-serif;  
    text-transform: uppercase;
    font-size: 15px;
    color: #707070;
    letter-spacing: 1px;
    font-weight: 400;
}

/*----stregerne-mellem-menupunkterne----*/
.vertical4
{
    border-left: 1px solid #707070;
    height: 38px;
    margin-left: -35%;
    margin-right: -35%;
}

/*----layout-på-brødteksten----*/
.prisTekst p
{
    font-family: Georgia, serif;  
    font-size: 18px;
    color: #707070;
    text-align: center;
    margin: 40px 50px 80px 40px;
    line-height: 1.8;
}


/*----Pakkerne paa siden----*/

/*----flexboxen-af-pakkerne----*/
.prisPakker
{
    display: flex;
    padding-top: 20px;
    padding-bottom: 100px;
    text-align: center;
}

/*----placeringen-af-pakkerne----*/
.prisContainer_venstre
{padding-left: 100px;}
.prisContainer_hojre
{
    padding-right: 100px;
}
/*----pakkerne-størrelse----*/
.prisPakker img {
    width: 80%;
}

/*----hovereffekt-på-pakkerne----*/
#prisLink img:hover {
    transform: scale(1.03);
    filter: brightness(95%);
}



/*----------- PRISBEREGNER SEKTION -----------*/

.prisBeregner
{
    background-color: #EEE8E1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 4vh 0 2vh 0;
}


/*----------- Inholdet i sektionen -----------*/

.calculator
{
    width: 40%;
}

.calculator h1
{
    text-transform: uppercase;
    font-family: freight-neo-pro, sans-serif;
    letter-spacing: 1.5px;
    font-size: 27px;
}

#topH, #topP
{
    text-align: center;
}

#topP
{
    color: #707070;
    margin: 2vh 0 2vh 0;
}

.calculator p, .prisBeregner .tjekListe .tilvalg, .tjekListe td, .kilometerAdresse p
{
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 2;
    font-weight: 100;
}

.dropdown label 
{
    text-transform: uppercase;
    font-family: freight-neo-pro, sans-serif;
    line-height: 2;
    letter-spacing: 1px;
}

#pakkeVaelger 
{
    background-color: #EEE8E1;
    border: solid #899DBB 1px;
    width: 50%;
    border-radius: 25px;
    font-family: Georgia, serif;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 10px;
}


/*----------- Checkbox-tabel -----------*/

table
{
    border-collapse: collapse;
}

td:nth-child(2)
{
    padding-left: 8vw;
    padding-right: 1vw;
    text-align: right;
}

td
{
    border-bottom: solid #707070 1px;
    padding: 2% 0 2% 0; 
}

tr:nth-child(5) td
{
    border-bottom: none;
}

/* Checkbox tabel end */
.kilometerAdresse p:nth-child(2)
{
    margin-bottom: 2px;
}

.kilometerAdresse p
{
    margin: 1vh 0 1vh 0;
}


/*----------- "Skriv kilometer"-felt -----------*/
.kilometer
{
    display: flex;
    width: 50%;
}

.kilometer div 
{
    position: relative;
    width: 100%;
}

.kilometer input
{
    border-radius: 25px;
    background-color: #F8F5F2;
    border: solid #899DBB 1px; 
    width: 100%;
    font-family: Georgia, serif;
    font-size: 14px;
    padding: 10px;
}


.kilometerLabel  /* "KM" der sidder i input */
{
    position: absolute;
    top: 50%;
    left: 16vw;
    transform: translateY(-50%);
    font-family: Georgia, serif;
    font-size: 14px;
    color: black;
}

hr
{
    border: solid #B5B0AB 0.5px; 
    border-radius: 25px;
    margin: 3vh 0 3vh 0;
}

.prisBox h2, .prisBox #livePris
{
    text-transform: uppercase;
    font-family: Georgia, serif;
    letter-spacing: 1.5px;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 3vh;
}

.prisBox #livePris
{
    padding-left: 8vw;
    border-bottom: solid #707070 1px;
}


@media screen and (min-width: 651px) and (max-width: 1023px){
    .calculator{
        width: 60%;
    }

    .kilometerLabel{
        left: 24vw;
    }

    
}

@media screen and (max-width: 650px){
    .calculator{
        width: 70%;
    }

    #pakkeVaelger{
        width: 100%;
    }

    .kilometer{
        width: 100%;
    }

    .kilometerLabel{
        left: 58vw;
    }
}

/*---RESPONSIVE AF PRIS-SIDEN layout til telefon----*/
@media screen and (min-width: 800px) {
    .slideshow-container{
        display: none;
    }
}


/*---RESPONSIVE AF PRIS-SIDEN layout til telefon----*/
@media screen and (max-width: 800px) {
    
    /*---whitespace mellem undermenupunkterne---*/
    .prisMenu div{
      flex-wrap: wrap;
      margin: 2px;
      
    }
    /*--linjen mellem undermenupunkterne skal være kortere på telefon----*/
    .vertical2{
      height: 30px;
    }

    /*----billederne skal ikke alle sammen vises på samme tid på telefon----*/
    .prisPakker{
        display: none;
    }

    /*---hovereffekten skal forsvinde på telefon----*/
    #prisLink img:hover {
        transform: none;
        filter: brightness(100%);
    }

    /* Slideshow container */
    .slideshow-container {
        max-width: 1000px;
        position: relative;
    }

    /*---billedernes placering---*/
    .slideshow-container img {
        display: flex;
        justify-content: center;
        margin: auto;
        width: 75%;
        padding-bottom: 100px;
    }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  /*---prikkerne viser hvilken side du er indenpå----*/
  .active, .dot:hover {
    background-color: #717171;
  }
  
    /* Fading animation */
    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
   /* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: black;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.3);
  } 
  
  }