
/* ###################### DD UPLOAD ######################### */

.updrop {
  background:transparent;
  height: 20px;
  color: #b8b8b8;
}

.updrop.highlight {
  background: #2c61e0;
}

/* ##################### Hyperlink Site ################### */

.hyperlinkbox_upper_part
{
  background:#ffffff;
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 10px;
  border-top-right-radius:13px;
  border-top-left-radius:13px;
}

.hyperlinkbox_bottom_part
{
  transform: translateZ(0);
  border-style: solid ;
  border-color: #ffffff;
  border-width: 0 5px 5px 5px;
  margin-bottom: 15px;
  border-bottom-right-radius:13px;
  border-bottom-left-radius:13px;
  overflow:hidden;
}

.hyperlinkbox_bottom_part_content
{
  overflow:scroll;
  height: 100%;
}

@media only screen and (max-width: 768px)
{
  .hyperlinkbox_upper_part
  {
    width: 80vw;
  }

  .hyperlinkbox_bottom_part
  {
    width: 80vw;
    height: 40vw;
    padding: 5px;
  }
}

@media only screen and (min-width: 769px)
{
  .hyperlinkbox_upper_part
  {
    width: 20vw;
  }

  .hyperlinkbox_bottom_part
  {
    width: 20vw;
    height: 15vw;
    padding: 10px;
  }
}


/* ##################### SLIDER ########################### */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

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

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  /* hier gehört background image hin */
  /* background-color: #262626; */
  background-image: url("images/moon.svg");
  background-repeat: no-repeat;
  background-position:center;
  background-size: 15px 15x;
  -webkit-transition: .4s;
  transition: .4s;
}


input:checked + .slider {
  background-color: #2c61e0;
}

/*
input:focus + .slider {
  box-shadow: 0 0 1px #2c61e0;
} */

input:checked + .slider:before {
  -webkit-transform: translateX(26px) rotate(180deg);
  -ms-transform: translateX(26px) rotate(180deg);
  transform: translateX(26px) rotate(180deg);

}

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


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

/* ##################### PAGE ########################### */

html
{
  height: 100%;
}

@font-face {
  font-family: "louisgeorgecafe";
  src: url("fonts/Louis George Cafe.ttf");
}

input[type="file"] {
    display: none;
}

.custom_file_upload
{
    display: flex;
    justify-content:flex-start;
    cursor: pointer;
    flex-direction: row;
    flex-wrap:nowrap;
    margin-top: 5px;
    width: 95%;
}

body
{
    background: #ebebeb;
    font-family: "louisgeorgecafe";
    font-size: 11pt;
    /* hyphens */
   -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto;
   height: 100%;
   color: #000000;
   transition: 0.5s;
}

.link_collection
{
  color: #2b2b2b;
}

.link_heading
{
  color: #2c61e0;
  font-size: 20px;
}

a
{
  text-decoration: none;
  color: #000000;
}

a.stop_search_link
{
  margin-left: 7px;
  color: #3ed1a2;
}

a.hashtag_link
{
  font-size: 20px;
  color: #3ed1a2;
}

a.hashtag_link:hover
{
  text-decoration:underline;
}

textarea
{
  font-family: "louisgeorgecafe";
  font-size: 11pt;
}

@media only screen and (max-width: 768px)
{
  .menu_logo
  {
    width: 10vw;
    height: 10vw;
    background-image: url("images/favicon.svg");
    background-size: 10vw 10vw;
  }
}

@media only screen and (min-width: 769px)
{
  .menu_logo
  {
    width: 20vw;
    height: 10vw;
    background-image: url("images/knowly.svg");
    background-size: 20vw 10vw;
  }

  .menu_logo:hover
  {

    background-image: url("images/knowly_animated.svg");

  }
}

.file_link
{
  transition: 0.5s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
}


.undo_rotation:hover
{
  transform: rotate(-0.1turn);
  transition: 0.5s;
}

.undo_button
{
  filter: invert(100%) sepia(30%) saturate(5293%) hue-rotate(79deg) brightness(100%) contrast(64%)}

.file_link:hover
{
  font-weight: bold;
  transition: 0.5s;
}

.hashtag_container
{
  display:flex;
  flex-direction:row;

  margin-left:auto;
  margin-right: auto;
  margin-top: 20px;
  flex-wrap: wrap;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;

  background-color: rgba(255, 255, 255, 0.9);
}

@media only screen and (min-width: 769px)
{
  .hashtag_container
  {
    width: 80%;
  }
}

@media only screen and (max-width: 768px)
{
  .hashtag_container
  {
    width: 95%;
  }
}

.hashtag_container::after {
  content: "";
  background: url(images/plus_box_background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: -1;
}

.message_box
{
  position: fixed;
  top: 0;
  right:0;
  background: #d3e0d3;
  color: #a8a8a8;
  width: 200px;
  padding: 5px;
  display:none;
  margin-top: 5px;
  text-align: center;
  z-index:9999;
}

.icon_link:hover
{
  opacity: 0.5;
  transition: 0.3s;
  cursor:pointer;
}

.knowledge_box_presentation
{
    background: #3ed1a2;
    color: #ffffff;
    border-radius: 5px;
    margin-top: 20px;
    padding:2vw;
    overflow-wrap: anywhere;
}

@media only screen and (min-width: 769px)
{
  .knowledge_box_presentation
  {
    width: 40%;
  }
}

@media only screen and (max-width: 768px)
{
  .knowledge_box_presentation
  {
    width: 85%;
  }
}


.presentation_link
{
  color: #ffffff;
  text-decoration:underline;

  /* These are technically the same, but use both */
 overflow-wrap: break-word;
 word-wrap: break-word;

 -ms-word-break: break-all;
 /* This is the dangerous one in WebKit, as it breaks things wherever */
 word-break: break-all;
 /* Instead use this non-standard one: */
 word-break: break-word;

 /* Adds a hyphen where the word breaks, if supported (No Blink) */
 -ms-hyphens: auto;
 -moz-hyphens: auto;
 -webkit-hyphens: auto;
 hyphens: auto;
}

.presentation_container
{
  display:flex;
  justify-content:center;
  flex-direction:column;
  align-items:center;
  margin: auto;
  width: 90%;
  padding: 3vw;
}


.knowledge_box_presentation .presentation_link:hover
{
  text-decoration:none;
}

.copy_link
{
  color: #000000;

  margin-top: 20px;
}

.copy_link:hover
{
  text-decoration: underline;
}

.search_button
{
  justify-content: center;
  width: 40px;
  display:flex;
  align-items:center;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: #3ed1a2;
  height: 40px;
}

.search_field
{
    padding: 10px;
    height: 40px;
    width: 100% !important;
    font-family: Arial;
    font-size: 14px;
    border: none;
    background: none;
    overflow: auto;
    outline: none;

    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    resize: none; /*remove the resize handle on the bottom right*/
}

  .search_field:hover
  {
    border: none !important;
    background:none;
  }

  .search_field:focus
  {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
  }

  .search_textarea_container
  {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #ffffff;
    transition: 0.3s;
    height: 40px;
    width: 200px;
    display:flex;
    align-items: center;
  }

  .search_textarea_container:hover
  {
    background: #f5f5f5;
  }

  .search_textarea_container:focus-within
  {
    background: #ffffff;
  }

  .search_field:focus
  {
    border:none;
    box-shadow:none;
  }

.delete_x
{
  color: #d4d4d4;
  transition: 0.5s;
}

.delete_x:hover
{
  color: #b51d12;
}

.delete_x_final
{
  color: #df6726;
}

.delete_x_final:hover
{
  color: #b51d12;
}

.menu_link_container
{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

@media only screen and (min-width: 769px)
{
  .menu_link_container
  {
    width: 50%;
  }
}

@media only screen and (max-width: 768px)
{
  .menu_link_container
  {
    width: 80%;
  }
}

.menu_link
{
  text-decoration:none;
  font-size: 18px;
}


a.menu_link
{
  color: #000000;
}

.menu_link::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0%;
    height: 2px;
    background: #000000;
    transition-duration: .8s;
    transition-property: all;
    transition-timing-function: ease;
    transform: scaleY(0.9);
  }

  .menu_link:hover::after {
    width: 100%;
    color:#000000;
  }

  .card_textarea_container
  {
    display:flex;
    overflow: scroll;
    width: 100%;
    height: 100%;
    -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
    padding-bottom: 15px;

  }


  .uploaded_files_container
  {
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    width: 97%;
    margin:auto;
    max-height: 25%;
    flex-shrink:0;
    align-items:space-between;
    -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent);
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }

  .uploaded_files_container::-webkit-scrollbar {
    display: none;
  }

  .page_container
  {
    display:flex;
    margin:auto;
    padding-top: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  @media only screen and (max-width: 768px)
  {
    .page_container
    {
      width: 100%;
    }
  }

  @media only screen and (min-width: 769px)
  {
    .page_container
    {
      width: 90%;
    }
  }

  @media only screen and (max-width: 768px)
  {
    .linkbar
    {
      width: 12vw;
    }
  }

  @media only screen and (min-width: 769px)
  {
    .linkbar
    {
      width: 3vw;
    }
  }

  @media only screen and (max-width: 768px)
  {
    .knowledgebox
    {
      width: 68vw;
      height: 68vw;
      margin-top:1vw;
      margin-bottom: 7vw;
      margin-left:1vw;
    }

    .knowledgebox_corner
    {
      width: 14vw;
      height: 14vw;
    }

    .knowledgebox_corner_orange
    {
      width: 14vw;
      height: 14vw;
    }

    .knowledgebox_corner:hover
    {
      width: 20vw;
      height: 20vw;
    }

    .knowledgebox_corner_orange:hover
    {
      width: 20vw;
      height: 20vw;
    }

    .hyperlinkbox_corner
    {
      width: 14vw;
      height: 14vw;
    }

    .hyperlinkbox_corner_orange
    {
      width: 14vw;
      height: 14vw;
    }

    .hyperlinkboxbox_corner:hover
    {
      width: 20vw;
      height: 20vw;
    }

    .hyperlinkbox_corner_orange:hover
    {
      width: 20vw;
      height: 20vw;
    }
  }

  @media only screen and (min-width: 769px)
  {
    .knowledgebox
    {
      width: 20vw;
      height: 30vh;
      margin-top:1vw;
      margin-bottom: 1vw;
      margin-left:1vw;
    }

    .knowledgebox_corner
    {
      width: 3vw;
      height: 3vw;
    }

    .knowledgebox_corner_orange
    {
      width: 3vw;
      height: 3vw;
    }

    .knowledgebox_corner:hover
    {
      width: 4vw;
      height: 4vw;
    }

    .knowledgebox_corner_orange:hover
    {
      width: 4vw;
      height: 4vw;
    }

    .hyperlinkbox_corner
    {
      width: 3vw;
      height: 3vw;
    }

    .hyperlinkbox_corner_orange
    {
      width: 3vw;
      height: 3vw;
    }

    .hyperlinkbox_corner:hover
    {
      width: 4vw;
      height: 4vw;
    }

    .hyperlinkbox_corner_orange:hover
    {
      width: 4vw;
      height: 4vw;
    }
  }

/* #################### KNOWLEDGEBOX ###################### */

  .knowledgebox_corner
  {
    transition: 0.5s;
    position: absolute;
    right: 0;
    bottom: 0;

    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #eeeeee 50%, #eeeeee 100%);
  }

  .knowledgebox_corner_orange
  {
    transition: 0.5s;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #e88d4d 50%, #e88d4d 100%);
  }

  .knowledgebox_corner_orange:hover
  {
    cursor: pointer;
    transition: 0.5s;
    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #f07b4d 50%, #f07b4d 100%);
  }

  .knowledgebox_corner:hover
  {
    cursor: pointer;
    transition: 0.5s;
    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #dddddd 50%, #dddddd 100%);
  }

  .knowledgebox
  {
    z-index:1;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    transition: 0.5s;
    display:flex;
    flex-direction: column;
    border-bottom-right-radius: 13px;
    border-bottom-left-radius: 13px;
    border-top-left-radius: 13px;
    overflow:hidden;
    /* background: #ebebeb; */
    background: #ffffff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
    /* box-shadow:  7px 7px 14px #e2e2e2,
             -7px -7px 14px #f4f4f4; */
  }

  .knowledgebox:hover
  {
    transform: scale(1.048);
  }

  .knowledgebox:focus-within
  {
    transform: scale(1.048);
  }

/* #################### HYPERLINKBOX ###################### */

  .hyperlinkbox_corner
  {
    transition: 0.5s;
    position: absolute;
    right: 0;
    bottom: 0;

    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #787878 50%, #787878 100%);
  }

  .hyperlinkbox_corner_orange
  {
    transition: 0.5s;
    position: absolute;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #e88d4d 50%, #e88d4d 100%);
  }

  .hyperlinkbox_corner_orange:hover
  {
    cursor: pointer;
    transition: 0.5s;
    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #f07b4d 50%, #f07b4d 100%);
  }

  .hyperlinkbox_corner:hover
  {
    cursor: pointer;
    transition: 0.5s;
    background: linear-gradient(to bottom right, transparent 0%, transparent 50%, #dddddd 50%, #dddddd 100%);
  }

  a.upload_pdf
  {
    color: #3ed1a2;
    text-decoration: underline;
    text-decoration-color: #3ed1a2;
  }

  a.upload_pdf:hover
  {
    text-decoration:none;
  }

  a.upload_other_filetype
  {
    color: #2c61e0;
  }


  @media only screen and (max-width: 768px)
  {
    .knowledgebox_plus
    {
      width: 68vw;
      height: 68vw;
      margin-top:1vw;
      margin-bottom: 7vw;
      margin-left:1vw;
    }
  }

  @media only screen and (min-width: 769px)
  {
    .knowledgebox_plus
    {
      width: 20vw;
      height: 30vh;
      margin-top:1vw;
      margin-bottom: 1vw;
      margin-left:1vw;
    }
  }
    .knowledgebox_plus
    {
      display:flex;
      background: url("images/plus_box_background.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      /* background: #3ed1a2; */
      flex-direction: column;
      justify-content: space-between;
      overflow:hidden;
      border-radius: 13px;
    }

.knowledge_plus_textarea
{
  height: 100%;
  border: 0;
  background:transparent;
  color: #ffffff;
  resize:none;
  transition: 0.5s;
  box-sizing: border-box;
  padding: 10px;
  color: #ffffff;
}

.knowledge_plus_textarea:focus
{
  outline: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #2b2b2b;
}

.knowledge_plus_textarea:hover
{
  outline: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #2b2b2b;
}

.textarea_without_outline
{
  height: 100%;
  margin:auto;
  border: 0;
  resize:none;
  color: #2b2b2b;
  background:transparent;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.textarea_without_outline::-webkit-scrollbar {
  display: none;
}

.textarea_without_outline:focus
{
  outline: 0;
}

.linkbar
{
  align-content:flex-start;
  margin-top: 1vw;
  display:flex;
  overflow-y: auto;
  flex-direction:row;
  flex-wrap:wrap;
  -webkit-mask-image: linear-gradient(180deg, #000 98%, transparent);
  z-index:0;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.linkbar::-webkit-scrollbar {
  display: none;
}


@media only screen and (max-width: 768px)
{
  .linkbar
  {
    width: 14vw;
    height: 65vw;
  }
}

@media only screen and (min-width: 769px)
{
  .linkbar
  {
    width: 4vw;
    height: 14.5vw;
  }
}

.link_bar_item
{
  padding: 6px 2px;
  background: #3ed1a2;
  color: #2b2b2b;
  margin-bottom: 5px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: 0.5s;
  height: 30px;
}

.link_bar_snippet
{
  padding: 3px 1px;
  border-right: 2px solid #3ed1a2;
  border-top: 2px solid #3ed1a2;
  border-bottom: 2px solid #3ed1a2;
  color: #ffffff;
  margin-bottom: 5px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  display:flex;
  justify-content:center;
  align-items:center;
  transition: 0.5s;
  height: 30px;
}

.link_bar_lawitem
{
  height: 30px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  display:flex;
  background: #2c61e0;
  color: #ffffff;
  padding: 3px 6px 3px 7px;
  justify-content: center;
  align-items:center;
  margin-bottom: 5px;
  overflow:hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.5s;
}

@media only screen and (max-width: 768px)
{
  .link_bar_snippet
  {
    width: 14vw;
  }
}

@media only screen and (min-width: 769px)
{
  .link_bar_snippet
  {
    width: 4vw;
  }
}

@media only screen and (max-width: 768px)
{
  .link_bar_lawitem
  {
    width: 14vw;
  }
}

@media only screen and (min-width: 769px)
{
  .link_bar_lawitem
  {
    width: 4vw;
  }
}

@media only screen and (max-width: 768px)
{
  .link_bar_item
  {
    width: 14vw;
  }
}

@media only screen and (min-width: 769px)
{
  .link_bar_item
  {
    width: 4vw;
  }
}


.noscrollbar
{
  overflow: auto;
    -ms-overflow-style: none; /* IE 11 */

  scrollbar-width: none;
}


@media only screen and (max-width: 768px)
{
  .knowledge_plus_button
  {
    height: 17vw;
  }
}

@media only screen and (min-width: 769px)
{
  .knowledge_plus_button
  {
    height: 4vw;
  }
}

.knowledge_plus_button
{
  background: #2c61e0;
  display:flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  transition: 0.4s;
}

.knowledge_plus_button:hover
{
  background: #b8b8b8;
  cursor: pointer;
  color: #383838;
}

.deletebar_final
{
  flex-shrink: 0;
  height: 10px;
  background: #df6726;
  width: 100%;
  transition: 0.5s;
  cursor:pointer;
}

.deletebar_final:hover
{
  height: 25px;
}

.deletebar
{
  flex-shrink: 0;
  height: 10px;
  background: #dedede;
  width: 100%;
  transition: 0.5s;
  margin-bottom: 10px;
  cursor:pointer;
}

.deletebar:hover
{
  height: 25px;
  background: #c72031;
}

.overview_box
{
  flex:0 0 auto;
  box-sizing: border-box;
  float:left;
  margin: 5px;
  width: 110px;
  padding:4px;
  border: 1px solid #FFF;
  border-radius: 5px;
  -moz-border-radius:5px;
  -webkit-border-radius: 5px;
  box-shadow: 1px 2px 4px rgba(0,0,0,.4);
  hyphens: auto;
  overflow: hidden;
}

.menulink
{
  display: flex;

    align-items: center;
    align-content: center;
    padding: 10px;
}

.barlink:after
{
  content: none;
}

.barlink:hover
{
  text-decoration: none;
  filter: opacity(.5);
}

.barlink
{
  margin-left: 20px;
  font-size: 20px;
}

.statusbar
{
  width: 100%;
  height: 35px;
  background: #cccccc;
  display:flex;
  justify-content: space-between;
  align-items: center;
}

.menu {
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  display: flex;
  flex-direction: row;
  color: white;
  text-align: center;
  text-decoration: none;
}


h1 { margin-bottom: 0px; }
p {margin:0px;}


.summary
{
  color: #8f8f8f;
  cursor: pointer;
  transition: all 0.5s ease-out;
}

.summary:focus
{
  outline:none;
}



a.sort:after, a.sort:before
{
	content: none;

}


.myButton:after, .myButton:before
{
	content: none;
}

.myButton {
  display: inline-block;
	padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #a5c9bb;
}
.myButton:hover {
	background-color: #84c2aa;
}

.smallButton
{
  display: inline-block;
  padding: 5px;
  background-color: #fcfcfc;
  border-radius: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.smallButton:hover {
	background-color: #e8e8e8;
}

.smallButton:after, .smallButton:before
{
	content: none;
}

.block
{
  display: block;
}
.apple{
  display:flex;
  align-items: center;
  flex-direction: column;
  background-color: #f2f2f2;
  border: 1px solid #EBE9C5;
  margin-bottom: 10px;
  padding: 10px;
}

.search_result{
  display:flex;
  flex-direction: column;
  padding: 20px;
  background-color: #f2f2f2;
  border: 1px solid #EBE9C5;
  margin-bottom: 10px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  word-break: break-all;
}

.search_result a
{
  font-weight: normal;
}
