@import url("https://fonts.googleapis.com/css?family=Dosis&display=swap");
:root {
  --jdqd-blue: #23a7f2;
  /* rgb(35, 167, 242) */
  --jdqd-orange: #f86901;
  /* --jdqd-orange: rgb(248, 105, 1) */
  --jdqd-gray: #6a6a6a;
  /* rgb(106, 106, 106)*/
  --jdqd-light-gray: #c2c2c2;

  --jdqd-light-medium-gray: #e5e5e5;

  /* Background use on modals */
  --jdqd-translucent_background: rgba(106, 106, 106, 0.8);
  --jdqd-Ini_letter_size: 4em;
  --jdqd-shadow: 5px 5px 5px 1px var(--jdqd-gray);
  --jdqd-card-shadow: 0px 5px 5px -3px #d2d2d2;
}
/* HTML Standard Tags Styles */
html {
  font-size: 16px;
  font-family: "Dosis", sans-serif;
}

p {
  margin: 0px;
}

body {
  background-color: #f3f3f3;
}

/* This class formats the code block on the page. I think I'm going to be using this on the Salesforce, and CSS samples */
code {
  background-color: #eee;
  border: 1px solid #999;
  display: block;
  padding: 30px;
  margin: 0px;
  height: 30%;
  overflow: auto;
  font-size: 0.9em;
  position: relative;
}

pre {
  margin: 0;
  padding: 0;
  position: relative;
}
/* END - HTML Standard Tags Styles */

.jdqd__header {
  display: flex;
  align-content: center;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
}

.jdqd__transparent_background {
  background-color: var(--jdqd-translucent_background);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  backdrop-filter: blur(1.5px);
}

.jdqd__modal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.jdqd__modal--container {
  border-radius: 5px;
  border: 5px solid;
  border-color: var(--jdqd-blue);
  background-color: #fff;
  padding: 0.8em;
  width: 70%;
  box-shadow: var(--jdqd-shadow);
}

.jdqd__modal_card {
  top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #d2d2d2;
  width: 85%;
  box-shadow: var(--jdqd-card-shadow);
  margin-top: 0.6em;
  margin-right: 0.6em;
  margin-bottom: 0.6em;
  margin-left: 0.6em;
  padding: 1em;
  border-radius: 5px;
  background-color: #fff;
  max-height: 300px;
  overflow: hidden;
  height: auto;
  /*transition: all 0.3s;*/
  z-index: 11;
  padding-bottom: 10px;
  overflow-x: hidden;
}

.jdqd__modal_card_content {
  font-size: 0.85em;
  color: var(--jdqd-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  overflow: hidden;
  height: 380px;
  padding-right: 10px;
  padding-left: 10px;
}

/* .jdqd__title {
  z-index: 10;
} */

.jdqd__paragraph {
  text-align: justify;
  color: var(--jdqd-gray);
}

.jdqd__paragraph::first-letter {
  color: var(--jdqd-orange);
  initial-letter: 1;
  font-size: var(--jdqd-Ini_letter_size);
  font-weight: bold;
  float: left;
  top: 0px;
  line-height: 35px;
  padding-top: 10px;
  padding-right: 5px;
}

.jdqd__title-blue {
  color: var(--jdqd-blue);
  font-size: 2em;
}

.jdqd__title-orange {
  color: var(--jdqd-orange);
  font-size: 3em;
  font-weight: bold;
}

.jdqd__title::first-letter {
  float: left;
  initial-letter: 1;
  width: 2ch;
  color: var(--jdqd-orange);
}

.jdqd__container_centered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.jdqd__container_centered_row {
  flex-direction: row;
  transition: 0.3s all;
}

.jdqd__container_centered_column {
  flex-direction: column;
  transition: 0.3s all;
}

.jdqd__title--medium {
  font-size: 1em;
  color: var(--jdqd-orange);
  font-weight: bold;
}

.jdqd__card {
  top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #d2d2d2;
  box-shadow: var(--jdqd-card-shadow);
  margin-top: 0.6em;
  margin-right: 0.6em;
  margin-bottom: 0.6em;
  margin-left: 0.6em;
  padding: 1em;
  border-radius: 5px;
  background-color: #fff;
  max-height: 300px;
  overflow: hidden;
  height: auto;
  z-index: 11;
  padding-bottom: 10px;
  overflow-x: hidden;
  transition: max-height 0.3s;
}

.jdqd__card_width_medium {
  width: 35%;
}

.jdqd__card_width_large {
  width: 80%;
}

/* Hide scrollbar for Chrome, Safari and Opera */
/*.jdqd__card::-webkit-scrollbar {*/
/*    display: none;*/
/*}*/

/* width */
::-webkit-scrollbar {
  width: 0.5em;
  height: 0.5em;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #e7e7e7; /*  var(--jdqd-gray); */
  border-radius: 5px;
  opacity: 0.9;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--jdqd-orange);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--jdqd-blue);
  width: 0.8em;
  height: 0.8em;
}

.jdqd__card_title {
  margin-bottom: 0.8em;
  padding-bottom: 0.3em;
  /*border-bottom: 2px solid var(--jdqd-light-gray);*/
  font-size: 1.3em;
  color: var(--jdqd-orange);
  font-weight: bold;
  margin-left: 1em;
}

.jdqd__Expand_Collapse_chevron_container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 5px;
  top: 15px;
  width: 2em;
  height: 2em;
  cursor: pointer;
}

.jdqd__Expand_Collapse_chevron {
  height: 0.6em;
  width: 0.6em;
  border-bottom: 3px solid var(--jdqd-blue);
  border-right: 3px solid var(--jdqd-blue);
  border-radius: 2px;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

.jdqd__Expand_Collapse_chevron_collapse {
  transform: rotate(-45deg);
  transition: all 0.6s ease-out;
}

.jdqd__Expand_Collapse {
  max-height: 35px;
  transition: all 0.3s ease-out;
  overflow: hidden;
}

.jdqd__card_content {
  font-size: 0.85em;
  color: var(--jdqd-gray);
  margin-top: 10px;
  margin-bottom: 10px;
  letter-spacing: 1.5px;
  overflow: hidden;
  height: 380px;
  padding-right: 10px;
  padding-left: 10px;
  transition: 0.3s all;
}

.jdqd__card_content::first-letter {
  color: var(--jdqd-blue);
  initial-letter: 1;
  font-size: 2.5em;
  font-weight: bold;
  float: left;
  top: 0px;
  line-height: 30px;
  /* padding-top: 10px; */
  padding-right: 1px;
  margin: 0px;
}

.jdqd__card_expanded {
  max-height: 700px;
  overflow: auto;
}

.jdqd__modal_card_content_expanded {
  height: auto;
  overflow: auto;
}

.jdqd__main_menu_container {
  background-color: #f3f3f3;
  color: #ffffff;
  font-size: 1em;
  width: 98%;
  display: block;
  position: sticky;
  padding: 0.5em;
  z-index: 120;
  left: 0;
  top: 0;
}

.jdqd__menu_container {
  background-color: #f3f3f3;
  color: #ffffff;
  font-size: 1em;
  width: 98%;
  display: block;
  position: sticky;
  padding: 0.5em;
  z-index: 120;
  left: 0;
  top: 0;
}

.jdqd__menu_container_blur {
  filter: blur(8px);
  height: 40px;
  position: absolute;
  top: 60px;
  width: 100%;
  background-color: #f3f3f3;
}

.jdqd_menu {
  display: flex;
  flex-direction: column;
  /* background-color: #e5e5e5; */
  width: 3em;
  height: 3em;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  /* position: fixed; */
  top: 1em;
  left: 1em;
  z-index: 130;
}

.jdqd__menu_bar {
  width: 1.4em;
  height: 0.2em;
  background-color: var(--jdqd-blue);
  margin: 0.1em;
  transition: all 0.3s;
}

.jdqd_menu:hover {
  transition: all 0.3s;
  /*background-color: var(--jdqd-gray);*/
  opacity: 0.9;
  cursor: pointer;
}

.jdqd__menu_bar_top_rotate {
  -webkit-transform: rotate(-45deg) translate(0px, 0px);
  transform: rotate(-45deg) translate(-4px, 5px);
  background-color: var(--jdqd-orange);
  transition: all 0.3s;
}

.jdqd__menu_bar_middle_hide {
  opacity: 0;
}

.jdqd__menu_bar_bottom_rotate {
  -webkit-transform: rotate(45deg) translate(0px, 0px);
  transform: rotate(45deg) translate(-4px, -5px);
  background-color: var(--jdqd-orange);
}

.jdqd_menu_active {
  background-color: var(--jdqd-blue);
  transition: all 0.3s;
}

.jdqd__menu_holder {
  position: relative;
}

/*  */
.jdqd__menu_stripe_item {
  float: left;
  margin-left: 0em;
  list-style-type: none;
}

.jdqd__menu_stripe_container {
  position: fixed;
  left: 0.4em;
  top: 0.8em;
}

.jdqd__menu_options_panel {
  /*padding: 0.7em;*/
  background-color: var(--jdqd-blue);
  width: 0em;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  border-radius: 2px;
  z-index: 0;
  transition: 0.5s all ease-in-out;
}

.jdqd__menu_options_panel_slide {
  width: 20em;
  transition: 0.5s all ease-in-out;
}

.jdqd__menu_options_panel:before {
  border: 5px solid var(--jdqd-blue);
  left: 15px;
  top: -5px;
  content: " ";
  position: absolute;
  background-color: var(--jdqd-blue);
  height: 20px;
  width: 20px;
  transform: rotate(45deg);
  border-radius: 2px;
  display: none;
}

.jdqd__menu_option_header {
  color: #fff;
  font-weight: 300;
  z-index: 120;
  padding: 1em;
  transition: all 0.3s;
}

.jdqd__menu_option {
  color: #fff;
  font-weight: 300;
  z-index: 120;
  padding: 1em;
  transition: all 0.3s;
}

.jdqd__menu_option:hover {
  background-color: var(--jdqd-orange);
  opacity: 0.8;
  transition: all 0.3s;
  z-index: 120;
}

.jdqd__card_maximizer_minimizer_container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 10px;
  top: 10px;
  width: 2em;
  height: 2em;
  cursor: pointer;
}

.jdqd__main_menu_item {
  /* position: fixed; */
  left: 3.9vw;
  top: 1em;
  /* background-color: var(--jdqd-light-medium-gray); */
  border-radius: 50px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jdqd__main_menu_item:hover {
  opacity: 0.7;
  transition: 0.3s all;
  cursor: pointer;
}

.jdqd__card_arranger {
  /* position: fixed; */
  /*right: 1vw;*/
  left: 7vw;
  top: 1em;
  /* background-color: var(--jdqd-light-medium-gray); */
  border-radius: 50px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jdqd__card_arranger:hover {
  /*background-color: var(--jdqd-gray);*/
  opacity: 0.7;
  transition: 0.3s all;
  cursor: pointer;
}

.jdqd__card_arranger_size {
  height: 30px;
  width: 30px;
  transition: 0.5s all;
}

.jdqd__card_smooth_effect_off {
  opacity: 0.1;
  transition: 0.5s all;
}
.jdqd__card_smooth_effect_on {
  opacity: 1;
  transition: 0.5s all;
}

.jdqd__card_arranger_size:hover {
  fill: #fff;
}

.jdqd__card_maximizer {
  width: 15px;
  height: 15px;
  border-top: 2px solid var(--jdqd-blue);
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid var(--jdqd-blue);
  cursor: pointer;
}

.jdqd__card_minimizer {
  width: 15px;
  height: 15px;
  border-top: 2px solid transparent;
  border-bottom: 2px solid var(--jdqd-blue);
  border-left: 2px solid var(--jdqd-blue);
  border-right: 2px solid transparent;
  transition: all 0.2s;
}

/* Card Footer */
.jdqd__card_footer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  height: 40px;
  width: 100%;
  left: 0;
  background-color: #ffffff;
  filter: blur(10px);
}
/* END - Card Footer*/

.jdqd__options_header {
  background-color: var(--jdqd-gray);
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
}

.jdqd__options {
  font-weight: bold;
  opacity: 1;
}
.hide {
  opacity: 0;
  transition: all 0.3s;
  z-index: 0;
  visibility: hidden;
}

.show {
  opacity: 1;
  transition: all 0.3s;
  z-index: 1300;
}

.jdqd__display_off {
  opacity: 0;
  visibility: hidden;
  height: 0.1em;
  transition: 0.3s all;
}

.jdqd__display_on {
  display: block;
}

.jdqd__disabled {
  opacity: 0.3;
  color: var(--jdqd-gray);
}

@media only screen and (max-width: 700px) {
  [class*="jdqd__menu_options_panel_slide"] {
    width: 100%;
  }

  #cardArrangerContainer {
    display: none;
  }
  #expandCollapseAllContainer {
    display: none;
  }
}
