﻿/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* ----------- Show the tooltip text when you mouse over the tooltip container --------------- */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ----------- Collapsible Artikel --------------- */
.NOcollapsible {
  background-color: #337AB7;
  color: white;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
}

.collapsible {
  background-color: #EF7F1A;
  color: black;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
}

.collapsible:after {
  content: '\02193'; /* Unicode character for "plus" sign (arrow down se https://css-tricks.com/snippets/html/glyphs/) */
  font-size: 20px;
  color: white;
  float: right;
  margin-right:15px;
}

.active:after {
  content: '\02191'; /* Unicode character for "minus" sign (arrow up se https://css-tricks.com/snippets/html/glyphs/) */
}

.active, .collapsible:hover {
  background-color: #337AB7;
  color: white;
}

.content {
  padding: 0px 28px;
  display: none;
  overflow: hidden;
  background-color: #fff;
  font-size: 15px;
  width: 100%;
}
/* -------------------------------------------------------------------------------*/

/* ----------- Collapsible Artikel--------------- */

/* ----------- Collapsible Entrebrenaor --------------- */
.NOcollapsible_Entreprenor {
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
}

.collapsible_Entreprenor {
  background-color:#DCDDC;
  cursor: pointer;
  padding: 8px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  border-radius: 5px;
}

.collapsible_Entreprenor:after {
  content: '\02193'; /* Unicode character for "plus" sign (arrow down se https://css-tricks.com/snippets/html/glyphs/) */
  font-size: 20px;
  color: black;
  float: right;
  margin-right:15px;
}

.active:after {
  content: '\02191'; /* Unicode character for "minus" sign (arrow up se https://css-tricks.com/snippets/html/glyphs/) */
}

.active, .collapsible_Entreprenor:hover {
  background-color: #337AB7;
  color: white;
}

.content {
  padding: 0px 28px;
  display: none;
  overflow: hidden;
  background-color: #fff;
  font-size: 15px;
  width: 100%;
}

/* ----------- Collapsible Entreprenor --------------- */

.content {
  padding: 0px 28px;
  display: none;
  overflow: hidden;
  background-color: #fff;
  font-size: 15px;
  width: 100%;
}
/* -------------------------------------------------------------------------------*/

/* ----------- Collapsible --------------- */

#myBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  font-size: 16px;
  font-weight:bold;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 5px 10px 30px 10px;
  border-radius: 5px;
  height:20px;
}

#myBtn:hover {
  background-color: red;
}
/* -------------------------------------------------------------------------------*/

/* ----------- Read more read less --------------- */
#more {display: none;}
/* -------------------------------------------------------------------------------*/


