/* ------------------------------------------------------------------------------ */
/* ---------------------------- STRUCTURE KNOWLEDGE SITE ------------------------ */
.knowledge {
    width: 100%;
    padding-bottom: 0rem;
}
@media screen and (min-width: 640px) {
    .knowledge {
        /* padding-top: 1rem; */
   }
}
.knowledgeDiv {
    /* padding: 0rem 1rem 0; */
    display: flex;
    flex-direction: column;
    /* padding-top: 1rem; */
    padding-bottom: 1rem;
}
@media screen and (min-width: 640px) {
    .knowledgeDiv {
        /* padding: 1rem 1rem 0; */
        padding-bottom: 1rem;
        padding: 0;
   }
}
@media screen and (min-width: 1280px) {
    .knowledgeDiv {
        /* max-width: 1280px; */
        margin: 0 auto;
        padding: 0;
   }
}
.knowledgeHeading {
    background-image: url(../images/subpage/knowledge_background.svg);
    background-position: center center;
    background-repeat: no-repeat;
    padding-bottom: 1rem;
    box-shadow: 0px -10px 15px 9px rgb(0 0 0);
    /* Alternatively, shadow from tool: */
    /* box-shadow: 0 10px 30px -12px rgb(0 0 0 / 10%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%); */
}
.knowledgeHeading h2 {
    text-align: center;
}
.logoCenter {
    height: 6rem;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}
.logoSubText {
    font-size: 1.3rem;
    padding: 2rem;
    font-style: italic;
    color: #343a40;
    text-align: center;
}
.knowledgeDivContent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
@media screen and (min-width: 640px) {
    .knowledgeDivContent {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
   }
}





/* CENTER COLUMN */
.knowledgeColCenter {
    order: 1;  /* So that center colum goes to first position on small display */
    padding: 1rem;
    padding-top: 3rem;
}
@media screen and (min-width: 640px) {
    .knowledgeColCenter {
        width: 50%;
        order: 2;
   }
}
@media screen and (min-width: 1280px) {
    .knowledgeColCenter {
        width: 50%;
        order: 2;
   }
}
.knowledgeColCenter h1 {
    padding: 2.2rem 1rem 1rem 1rem;
    margin: 0;
    text-align: center;
    font-size: 2.2rem;
    color: #343a40;
}

.knowledgeColCenter h2 {
    padding: 1.6rem 1rem 0.7rem 1rem;
    margin: 0;
    text-align: center;
    font-size: 1.8rem;
    color: #343a40;
}
.knowledgeColCenter h3 {
    padding: 1.6rem 1rem 0.5rem 0rem;
    margin: 0;
    text-align: left;
    font-size: 1.6rem;
    font-style: italic;
    color: #343a40;
}
.knowledgeColCenter p {
    text-align: justify;
    margin-top: 0rem;
    font-size: 1.3rem;
    line-height: 2rem;
}

.summaryText {
    padding: 0 1rem 0 1rem;
}
.summaryText p {
    text-align: justify;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 2rem;
    background-color: #f1f1f1;
    border-radius: 0.5rem;
    /* Background image */
    background-image: url(../images/subpage/summary-notice-icon.svg);
    background-repeat: no-repeat;
    background-position: 85% 95%;
    background-size: 25%;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.knowledgeColCenter li {
    font-size: 1.3rem;
    line-height: 2rem;
}

/* Change bullet points in lists*/
.knowledgeColCenter ul {
    list-style: none;
  }
.knowledgeColCenter ul li::before {
    content: "\275A";
    color: #c00000;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }


/* LEFT COLUMN */
.knowledgeColLeft {
    padding: 1rem;
    text-align: center;
    /* display: table; */
    order: 2;
    margin-top: 1rem;
    background-repeat: no-repeat;
    background-position: right top 25px;  /* so it does not overlay with shadow from top banner */
}
.knowledgeColLeft a {
    color: #343a40;
}
@media screen and (min-width: 640px) {
    .knowledgeColLeft {
        width: 25%;
        text-align: left;
        background-image: url(../images/subpage/background-left.svg);
        order: 1;
   }
}
@media screen and (min-width: 1280px) {
    .knowledgeColLeft {
        width: 25%;
        text-align: left;
        background-image: url(../images/subpage/background-left.svg);
        order: 1;
   }
}
.contentItemMain {
    padding: 0rem 0.5rem 0 0.5rem;
    margin-top: 1rem;
    font-size: 1.25rem;
    border-left: 4px solid transparent;
}
.contentItemMain a {
    padding: 0.25rem;
    color: #343a40;
}
.contentItemMain:hover {
    border-left: 4px solid #c00000;
}
.horizonLineGrad {
    display: block;
    border: none;
    color: white;
    height: 0.5px;
    background: black;
    background:linear-gradient(to right, #343a40 10%, #ffffff00 75%);
}
.horizonLineCenterGrad {
    display: block;
    border: none;
    color: white;
    height: 4px;
    background: #c00000;
}

.contentItemSub {
    border-left: 4px solid transparent;
    padding: 0rem 0.25rem 0 1rem;
    margin-top: 0.35rem;
}
.contentItemSub:last-child {
    padding: 0rem 0.25rem 0 1rem;
    margin-top: 0.35rem;
    margin-bottom: 0.5rem
}
.contentItemSub:hover {
    border-left: 4px solid #c00000;
}
.knowledgeColLeft a {
    padding: 0.25rem;
}
.contentItemSub a {
    color: #c00000;
    font-weight: 500;
    font-size: 1.15rem;
}


/* RIGHT COLUMN */
.knowledgeColRight {
    order: 3;

    background-repeat: no-repeat;
    background-position: right top 25px;  /* so it does not overlay with shadow from top banner */
}
@media screen and (min-width: 640px) {
    .knowledgeColRight {
        width: 25%;
        order: 3;
        background-image: url(../images/subpage/background-right.svg);
   }
}
@media screen and (min-width: 1280px) {
    .knowledgeColRight {
        width: 25%;
        order: 3;
        background-image: url(../images/subpage/background-right.svg);
   }
}
.laptopImage {
    text-align: center;
}
.laptopImage img {
    text-align: center;
    /* height: 8rem; */
    margin: 0.5rem 0 0.5rem 0;
    max-width: 100%;
}
.knowledgeColRight a {
    font-weight: 600;
}
.knowledgeColRight h3 {
    color: #343a40;
    text-align: center;
    font-size: 1.5rem;
    margin: 0;
    padding: 1rem 0 0.25rem 0;
}
.knowledgeColRight p {
    text-align: center;
    font-size: 1.2rem;
    padding: 0 2rem;
    margin: 0;
    line-height: 1.5rem;
}
.rightToolButton {
    padding-top: 0.5rem;
    width: 50%;
    margin: 0 auto;
}
@media screen and (min-width: 640px) {
    .rightToolButton {
        padding: 1rem 1rem;
        width: 50%;
        margin: 0 auto;
   }
}
.rightToolButton a {
    margin: 0 auto;
    font-size: 1rem;
    padding: 0.3rem 1rem;
}
@media screen and (min-width: 640px) {
    .rightToolButton a {
        margin: 0;
        font-size: 1rem;
        padding: 0.3rem 1rem;
   }
}





/* ------------------------------------------------------------------------------ */
/* -------------------------------------- TABLE --------------------------------- */

table {
    border-collapse: collapse;
    border-bottom: 2px solid #343a40;
    width: 100%;
    font-size: 1.2rem;
    /* table-layout: fixed; */
}
th {
    /* text-align: inherit; */
    border-top: 4px solid #c00000;
    border-bottom: 1px solid #343a40;
    background-color: #343a40;
    color: white;
    font-weight: 500;
    /* font-size: 1.2rem; */
    padding: 0.4rem;
}
table tr:nth-child(odd) td{
    background-color: #f3f3f3;
    padding: 0.4rem;
}
table tr:nth-child(even) td{
    background-color: white;
    padding: 0.4rem;
}
.text-align-center {
    text-align: center;
}
.text-align-right {
    text-align: right;
}
.text-align-left {
    text-align: left;
}
.table-div {
    padding: 1.5rem 0;
    text-align: center;
    overflow-x: auto;
}
.table-caption {
    font-size: 1.2rem;
    font-style: italic;
    padding: 1rem;
}

/* ------------------------------------------------------------------------------ */
/* ------------------------------------ NOTICE ---------------------------------- */
.notice-outer {
    padding: 1.5rem 1rem;
    width: 100%;
}
.notice {
    border-left: 7px solid #c00000;
    padding: 1rem;
    border-radius: 0 5px 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14),0 3px 1px -2px rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.2);
    text-align: center;
    width: 100%;

    background-color: #f1f1f1;
    /* Background image */
    background-image: url(../images/subpage/summary-notice-icon.svg);
    background-repeat: no-repeat;
    background-position: 85% 95%;
    background-size: 25%;
}


/* ------------------------------------------------------------------------------ */
/* ------------------------------------ IMAGE ----------------------------------- */

.image-div {
    text-align: center;
    padding: 1.8rem 0;
    width: 100%;
}
.image-div img {
    max-width: 100%
}
/* Limit image size on ultra very wide screens */
@media (min-width: 2000px) {
    .image-div img {
      max-width: 1000px;
    }
  }
.image-caption {
  font-size: 1.2rem;
  font-style: italic;
  padding: 1rem;
}


/* ------------------------------------------------------------------------------ */
/* ------------------------------------ SOURCES --------------------------------- */
.sources {
    font-style: italic;
    text-align: justify;
    padding: 1rem;
}
.sources li {
    font-size: 1.15rem;
    line-height: 1.4rem;
}
ol {
    counter-reset: list;
}
ol > li {
    list-style: none;
    list-style-position: outside;
    padding-bottom: 1rem;
}
ol > li:before {
    content: "[" counter(list) "] ";
    counter-increment: list;
}





/* ------------------------------------------------------------------------------ */
/* ------------------------------- LANGUAGE DROPDOWN ---------------------------- */

.lang-div {
  position: relative;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}
/* @media screen and (max-width: 641px) { */
  .lang-div-abs {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
/* } */
@media screen and (min-width: 640px) {
  .lang-div-abs {
    position: absolute;
    top: 2rem;
    right: 8rem;
    left: unset;
    z-index: 2;
  }
}

/* Dropdown Button */
.dropbtn {
  padding: 0;
  border: none;
  height: 28px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 10rem;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

  /* Links inside the dropdown */
.dropdown-content a {
  color: #343a40;
  padding: 0.5rem 0.8rem;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  display: block;
  float: left;
  width: 100%;
}

.dropdown-content a img {
  height: 1.2rem;
  vertical-align: middle;
  padding: 0 0.5rem 0 0;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #c00000;
    color: white;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
/* .dropdown:hover .dropbtn {background-color: #f1f1f1;} */





/* ------------------------------------------------------------------------------ */
/* ---------------------------------- BREADCRUMB -------------------------------- */

.breadcrumb_costum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  list-style: none;
  background-color: #f1f1f1;
  border-radius: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.breadcrumb_costum a {
  -webkit-transition: .3s all ease;
  -moz-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #c00000;
  font-weight: bold;
  font-size: 1.2rem;
}

.breadcrumb_costum p {
    margin: 0;
}


/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.4rem;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}
.badge-red {
    color: #fff;
    background-color: #c00000;
    font-size: 12px;
    font-weight: normal;
}


/* OLD FAQ STRUCTURE */

/* FAQ collaps divs in help site */
.detailsFaq,
.showFaq,
.hideFaq:target {
  display: none;
}
.hideFaq:target + .showFaq,
.hideFaq:target ~ .detailsFaq {
  display: block;
}
.hideFaq, .showFaq {
    font-size: 1.3rem;
    line-height: 2rem;
    font-weight: 500 !important;
}
.detailsFaq {
    text-align: justify;
    padding: 0.8rem 1.2rem;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin-bottom: 1rem;
}
.detailsFaqLi {
    font-size: 1.1rem !important;
    line-height: 1.5rem !important;
}



/* NEW STRUCTURE FOR FAQ */

.faq {
  /* max-width: 800px; */
  /* margin: 2rem auto; */
  font-family: sans-serif;
  color: #343a40;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5rem;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  padding: 5px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  color: #343a40;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-question.active::after {
  content: "–";
}

.faq-question:hover {
  background: #f8f8f8;
}

.faq-answer {
  display: none;
  padding: 1.5rem 1.5rem 1.5rem;
  line-height: 1.5rem;
  /* color: #444; */
  text-align: justify;
  animation: fadeIn 0.3s ease-in-out;
  color: #343a40;
}

.faq-answer, 
.faq-answer ul,
.faq-answer ul li {
  font-size: 1.1rem;
  line-height: 1.5rem;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

  