:root {
    --main-bg-color: #336664;
    --main-text-color: whitesmoke;
    --secondary-bg-color: #34CC98;
    --product_blue: #227093;
}

* {
  font-family: "Klee One";
  /*user-select: none;*/
  box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--body_color);
    background-size: var(--background_size);
    background-repeat: var(--background_repeat);
}

h3 {
  color: black;
}

input {
    padding-left: 5px;
    outline: 0;
}

text {
  pointer-events: none;
  z-index: 3;
}

pre {
  position: relative;
  padding: 10px;
  border-radius: 5px;
  overflow-x: auto;
  color: var(--main-text-color) !important;
  background: #2d2d2d !important;
}

code {
  font-family: monospace;
  font-size: 17px;
  padding: 0px;
  color: var(--main-text-color) !important;
  background: #2d2d2d !important;
}


/* JavaScript Styling for code highlighting */
.hljs-comment {
  color: limegreen !important;
}

.hljs-keyword, .hljs-selector-tag, .hljs-title {
  color: deeppink !important;
}

.hljs-string {
  color: orange !important;
}

.hljs-keyword {
  color: deeppink !important;
}

.hljs-built_in {
  color: cyan !important;
}

.hljs-literal {
  color: cyan !important;
}

.hljs-title {
  color: cyan !important;
}

.hljs-variable {
  color: #00ffff !important; 
}

.hljs-tag {
  color: deeppink !important;
}

.hljs-name {
  color: limegreen !important;
}

.hljs-attr {
  color: cyan !important;
}

.hljs-string {
  color: orange !important;
}

.hljs-selector-class {
  color: limegreen !important; 
}

.hljs-number {
  color: orange !important;
}



.copy-btn {
  background: #34ace0;
    border: none;
    border-radius: 3px;
    height: 30px;
    font-size: 17px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}



.indented-text {
  padding-left: 20px;
}

input::placeholder {
  color: rgb(35, 30, 31);
}


iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

audio {
  position: absolute;
}

textarea {
  width: 320px;
  height: 100%;
  border: none;
  resize: none;
  outline: 0;
  padding: 10px;
  font-size: 17px;
  background: #f7f1e3;
}

strong {
  color: gold;
}

.sign_in_modal, .sign_up_modal {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 2px 2px 10px black;
  background: var(--stripe_modal_background);
  color: white;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
}



#top_banner_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 0px 80px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    max-height: 80px;
    box-shadow: 2px 2px 20px black;
    z-index: 3;
    background: var(--top_banner_color);
}

[id^=top_banner_item_] {
    border: 0px solid black;
    padding: 10px;
    background: var(--top_banner_color);
    display: flex;
    align-items: center;
    justify-content: center;
}

#top_banner_item_4 {
  justify-content: start;
  padding: 0px !important;
}

#top_banner_item_5 {
  color: #f7f1e3;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
}

#top_banner_item_6 {
  justify-content: space-between;
}

#item_content_wrapper {
  display: grid;
  grid-template-rows: auto;
  top: 0;
  bottom: 0;
  gap: 10px;
  height:  auto;
  width: auto;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none !important;
}

#item_content_wrapper::-webkit-scrollbar {
  display: none !important;
}

[id^=item_content_item_] {
    position: relative;
    width: 355px;
    height: 120px;
    border: 0px solid black;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: var(--item_color);
}

#item_content_item_1 {
  margin-top: 130px;
}

[id^=inner_item_content_wrapper_] {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: 120px;
  grid-template-columns: auto 3fr;
  pointer-events: none;
}

[id^=inner_item_content_item_] {
  display: flex;
  align-items: center;
  justify-content: start;
  border: 0px solid white;
  padding: 12px;
  text-align: left;
}

#video_wrapper {
  display: grid;
  grid-template-rows: 1fr 50px;
  grid-template-columns: 1fr;
  width: 100%;
  height: 100%;
}


.progress-container {
  width: 207px;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 3px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 10px;
}

.progress-bar {
  height: 100%; 
  background-color: var(--progress_bar_color);
  transition: width 0.3s ease;
}

.progress-label {
  margin-left: 10px; 
  font-size: 10px;
  margin-top: -1px;
  color: var(--progress_label_color);
  font-weight: bold;
}


#older_videos_showcase {
  position: relative;
  width: 80%;
  height: 70%;
  z-index: 99999999;
  background: transparent;
  border: none;
  box-shadow: 2px 2px 30px black;
  padding: 30px;
}

#close_showcase {
  color: white;
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 0; 
  right: 0;
  margin: 10px;
  z-index: 99999999;
}


#close_hold_slides, #close_hold_trees {
  background: #218c74;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
    box-shadow: 2px 2px 10px black;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 10px;
    color: white;
}

#bottom_banner_wrapper {
    visibility: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: 80px 0px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    box-shadow: 2px 2px 20px black;
    z-index: 4;
}

[id^=bottom_banner_item_] {
    border: 0px solid black;
    background: var(--bottom_banner_color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
  }

  /*
#bottom_banner_item_2, #bottom_banner_item_3, #bottom_banner_item_4 {
  background: purple;
}
  */

.bottom_banner_icons {
  filter: invert(1);
  pointer-events: none;
  width: 30px;
  margin-top: 15px;
}

.main_banner_names {
    color: white;
    margin-top: 0px;
    pointer-events: none;
    text-align: center;
}

#drag_back_a_folder {
  visibility: hidden;
  width: 40px;
  filter: invert(1);
}

[id^=bottom_banner_item_]:hover {
  background: #3e5353;
}

.spacing_item {
  height: 100px;
  border: none;
  background: transparent;
}

.small_logo {
  width: auto; 
  height: 100%;
  object-fit: contain;
  max-width: 300px;
  padding: var(--logo_padding);
}

#add_item_button, #remove_item_button, #add_page_button, #submit_to_forum_button, #submit_to_reply_button, #submit_new_comment_button, #cancel_submit_to_forum_button, #cancel_submit_to_reply_button, #cancel_new_comment_button, #avatar_button, #add_to_forum_button, #clear_content_button, #dark_back_button {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 3px;
  outline: 0;
  cursor: pointer;
  font-size: 15px;
  color: white;
  background: var(--secondary-bg-color);
}

#color_input_title {
  color: #f7f1e3;
  margin-bottom: -6px;
}

#change_text_color_input {
  width: 100%;
}

#add_to_forum_button {
  position: absolute;
  width: auto;
  padding: 20px;
  font-size: 17px;
}

#post_to_forum_icon, #close_video_forum_icon, #deep_dive_icon {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 20px;
    margin-bottom: 100px;
    filter: invert(1);
    cursor: pointer;
    width: 50px;
    background: var(--stripe_modal_background);
  padding: 10px;
    border-radius: 30%;
    box-shadow: 2px 2px 10px white;
    z-index: 9;
}

#post_to_forum_icon {
  width: 53px;
}



#close_video_forum_icon {
  left: 0;
  filter: invert(0);
  box-shadow: 2px 2px 10px black;
}

.hold_forum_buttons, .hold_reply_buttons, .hold_edit_comment_buttons {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-evenly;
  width: 100%;
  margin: 10px;
  margin-bottom: 0px;
}

#submit_to_forum_button, #cancel_submit_to_forum_button, #submit_to_reply_button, #cancel_submit_to_reply_button, #submit_new_comment_button, #cancel_new_comment_button {
  width: 100%;
  color: black;
  border-radius: 0px;
}

#submit_to_forum_button, #submit_to_reply_button, #submit_new_comment_button {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background: var(--stripe_modal_background);
  color: white;
  font-weight: bold;
}

#cancel_submit_to_forum_button, #cancel_submit_to_reply_button, #cancel_new_comment_button {
  background: #d1ccc0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.forum_title_wrapper {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
}

.delete_comment_icon, .edit_comment_icon {
    position: absolute;
    right: 0;
    font-size: 22px;
    font-weight: bold;
    color: red;
    margin-top: -8px;
    text-shadow: 1px 1px 2px black;
    pointer-events: auto !important;
    cursor: pointer;
}

.delete_comment_icon {
  margin-top: -2px !important;
}

.edit_comment_icon {
  right: 25px;
  color: greenyellow;
  margin-top: 2px;
  cursor: pointer;
}

#change_audio_input, #change_video_input, #change_deep_dive_video_input, #add_tags_input, #add_forest_branch_input, #paper_url_input, #notes_url_input {
  width: 90%;
  height: 40px;
  border: none;
  border-radius: 3px;
  font-size: 17px;
}

.share_modal, .description_modal {
  position: absolute;
  width: 300px;
  height: auto;
  padding: 30px;
  background: #303131;
  color: #f7f1e3;
  font-size: 18px;
  text-align: center;
  border-radius: 4px;
  box-shadow: 2px 2px 10px black;
  cursor: pointer;
  border: 1px solid #f7f1e3;
}

.cancel_subscription_modal {
  position: absolute;
  width: 300px;
  height: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid white;
  border-radius: 4px;
  box-shadow: 2px 2px 100px black;
  z-index: 4;
}

#cancel_modal_title {
  color: #f7f1e3;
  font-size: 22px;
  margin-bottom: 20px;
}

#close_cancel_subscription_modal, #close_description_modal, #close_share_modal {
  font-size: 20px;
  cursor: pointer;
  color: #f7f1e3;
  position: absolute;
  top: 0;
  right: 0;
  margin: 3px;
  margin-right: 8px;
  z-index: inherit;
}

#cancel_sub_wrapper {
  display: grid;
  gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  width: auto;
  height: auto;
}

[id^=cancel_sub_item_] {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid white;
}

#period_end_cancel, #immediate_cancel {
    height: auto;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 18px;
    color: #f7f1e3;
    background: #b33939;
    cursor: pointer;
}

#cancel_notice_text {
  color: wheat;
  margin-top: 15px;
  text-align: center;
}

[id^=spread_word_button] {
  display: inline-block;
  padding: 10px 20px;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #4CAF50;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 5px 0px #2E8B57;
  margin-bottom: 10px;
}

[id^=spread_word_button]:active {
  transform: translateY(3px);
  box-shadow: 0px 2px 0px #2E8B57; /* Pushed shadow */
}

.open_link {
  color: pink;
}

#close_add_content_div {
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  font-size: 20px;
  cursor: pointer;
}

/**** toggle */
.toggle-container {
  position: absolute;
  display: inline-block;
  margin-top: 6px;
}

.toggle-input {
  display: none;
}

.toggle-slider {
  visibility: hidden;
  width: 50px;
  height: 20px;
  background-color: #ccc;
  position: relative;
  cursor: pointer;
  border-radius: 34px;
  display: inline-block;
}

.toggle-slider:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.4s;
}

.toggle-input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.toggle-input:checked + .toggle-slider {
  background-color: #33d9b2;
  transition: 0.5s;
}

[id^=reply_wrapper_] {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto auto;
  gap: 20px;
}

.add_reply, .show_replies {
  width: 20px;
  margin-top: 4px;
}

.show_replies {
  font-size: 15px;
  text-shadow: 2px 2px 10px black;
}

.like_comment {
  width: 16px;
  cursor: pointer;
  margin-top: 8px;
  filter: invert(1);
}

.likes_count {
  font-size: 15px;
  margin-top: 4px;
  margin-left: -14px;
}


/********** premium content toggle ***********/
#toggle_premium_content {
  display: none;
}

.prem_content_toggle-container {
  display: inline-block;
  margin-top: 20px;
  color: wheat;
}

.prem_content_toggle-slider {
  width: 50px;
  height: 20px;
  background-color: #ccc;
  position: relative;
  cursor: pointer;
  border-radius: 34px;
  display: inline-block;
  margin-bottom: 10px;
}

.prem_content_toggle-slider:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: 0.4s;
}

.prem_content_toggle-input:checked + .prem_content_toggle-slider:before {
  transform: translateX(30px);
}

.prem_content_toggle-input:checked + .prem_content_toggle-slider {
  background-color: #33d9b2;
  transition: 0.5s;
}

/******** dropdown ***********/


.custom-dropdown {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  width: 80%;
  margin-bottom: 20px;
}

.custom-dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  outline: none;
}

.arrow-down {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  color: darkslategrey;
}

#payment_link_box {
  position: absolute;
  top: 10%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  background: rgba(220, 221, 225, 0.8);
  border: 0px solid white;
  box-shadow: 2px 2px 10px black;
  padding: 0px;
  padding-left: 10px;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  z-index: 999999;
}


/******** classes to add *****************/
.name {
  position: absolute;
  margin: 4px;
  color: white !important;
}

.image {
  width: 100px;
  height: 100px;
  object-fit: cover;
  pointer-events: none;
  border-radius: 4px;
}

.add_content_div, .forum_div, .side_panel, .settings, .search, .reply_div, .edit_comment_div, .notes_modal {
  position: absolute;
  width: 90%;
  height: 350px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid white;
  border-radius: 4px;
  box-shadow: 2px 2px 100px black;
  z-index: 4;
}

.search {
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 6px;
  background: var(--search_background);
  box-shadow: 2px 2px 10px black;
}

#search_input {
  width: 300px;
  height: 40px;
  border: none;
  outline: 0;
  border-radius: 4px;
  padding-left: 5px;
  font-size: 18px;
}

#search_input::placeholder {
  color: #888888;
  opacity: 1;
}

.notes_modal {
  width: 350px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: white;
  box-shadow: 2px 2px 10px black;
}

#close_notes_modal, #close_show_notes {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  cursor: pointer;
  color: white;
  font-size: 20px;
  margin-top: 8px;
}

#close_show_notes {
  margin: 5px;
}

#notes_textarea {
  margin-top: 15px;
  border-radius: 4px;
  margin-bottom: 6px;
  font-size: 19px;
  color: black;
}

#save_notes_button {
  width: auto;
  height: auto;
  padding: 4px;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: 5px;
  font-size: 16px;
  color: white;
  background: #69989b;
  border: 1px solid white;
  border-radius: 4px;
  margin-bottom: 3px;
  cursor: pointer;
}

#see_my_notes_title {
  margin-top: 10px;
  cursor: pointer;
}

#show_notes {
  width: 350px;
  height: 400px;
  background: #008E9C;
  border: 2px solid #8a4d0f;
  padding: 10px;
  padding-top: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  box-shadow: 2px 2px 10px black;
  z-index: 999999999;
  overflow-x: hidden;
  overflow-y: auto;
}

.hold_note {
  width: 94%;
  height: auto;
  padding: 10px;
  background: #f7f1e3;
  color: black;
  font-family: "Klee One", cursive;
  border-radius: 6px;
  margin-bottom: 10px;
  font-size: 20px;
  box-shadow: 2px 3px 20px black, 0 0 60px #8a4d0f inset;
  background: #fffef0;
}

.hold_note_titles {
  color: #b41818;
  font-weight: bold;
}

.scroll_container {
  position: absolute;
  bottom: 10px;
  border: 0px solid black;
  width: 230px;
  height: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: -15px;
}

#scroll-text {
  white-space: nowrap;
  color: gold;
  font-size: 14px;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -moz-animation: scroll 15s linear infinite;
  -webkit-animation: scroll 15s linear infinite;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.video_link_highlight {
  color: blue;
  font-weight: bold;
}

#go_back_icon, #go_back_forum_arrow {
  width: 30px;
  cursor: pointer;
  order: -1;
  margin-right: 20px;
}

#go_back_forum_arrow {
  position: absolute;
  top: 100px;
  right: 0;
  margin: 10px;
  filter: invert(0);
  background: white;
  z-index: 999999999999;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 2px 2px 10px black;
  width: 50px;
}

.line_break {
  max-width: 20ch !important;
  word-wrap: break-word !important;
  white-space: normal !important;
  text-align: center !important;
  font-size: 16px !important;
  line-height: 17px !important;
}

#add_content_div {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 80%;
  height: auto;
}

#add_content_div p {
  color: white;
  margin-bottom: 0px;
}

.side_panel {
  position: absolute;
  left: 0;
  width: 200px;
  height: auto;
  top: 80px;
  bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  color: white;
  border: none;
  background: var(--side_panel_background);
}

.side_panel_items {
  width : 100%;
  height : 100%;
  background : #303131;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid grey;
  font-size: 1em;
}

.side_panel_items:hover {
  background: #008E9C;
  cursor: pointer;
}

#settings_title {
  font-size: 20px;
  color: #9cdbd6;
}

#close_settings {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  margin-top: 0px;
  font-size: 25px;
  cursor: pointer;
}

.settings {
  width: 390px;
  height: 335px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
  border-radius: 14px;
}

#settings_name_input {
  width: 90%;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  border: none;
  border-radius: 3px;
  outline: 0;
  font-size: 17px;
  padding-left: 5px;margin-bottom: 20px;
}

#hold_profile_image_label {
  margin-bottom: 20px;
  margin-top: -3px;
}

#show_profile_image {
  border-radius: 50%;
  width: 120px;
  height: 120px;
  max-width: 120px;
  max-height: 120px;
  min-width: 120px;
  min-height: 120px;
  object-fit: cover; 
  object-position: center;
  border: 2px solid #fff;
  margin-bottom: 20px;
  cursor: pointer;
}

.article_title {
  text-align: center;
}

#article_date {
  color: #227093;
  font-weight: bold;
  font-size: 20px;
}

.item_date {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 10px;
  font-size: 14px;
  color: gold;
}

.forum_div, .reply_div, .edit_comment_div {
  width: 340px;
  height: 250px;
  border-radius: 8px;
}

#add_content_wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
}

[id^=add_content_item_] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border: 0px solid white;
}

#add_content_item_2 {
  justify-content: center;
}

#add_content_item_2 button {
  margin: 10px;
}

#change_text_input, #video_comment_input {
    padding-left: 5px;
    outline: 0;
    width: 90%;
    height: 40px;
    border-radius: 4px;
    border: none;
    font-size: 17px;
}

#change_text_input {
  margin-bottom: 20px;
}

#video_comment_input {
  width: 100%;
}

.dark_background_div {
     position: absolute;
     width: 100%;
     height: auto;
     padding: 6px;
     background: rgba(0,0,0,0.7);
     pointer-events: none;
}



#stripe_modal {
  position: absolute;
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  z-index: 10;
  background: var(--light_blue_backing);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999999;
}

#close_stripe_modal {
  position: fixed;
  top: 0;
  right: 0;
  margin: 15px;
  cursor: pointer;
  font-weight: bold;
  text-shadow: none;
  font-size: 30px;
}

.diamond {
  text-shadow: 0 0 2px black, 0 0 3px gold;
  font-size: 20px;
}

#payment_link_a_tag {
  color: white;
}

#close_stripe_modal {
  position: absolute;
  top: 0;
  right: 0;
  margin: 15px;
  cursor: pointer;
  font-weight: bold;
  color: black;
  text-shadow: none;
  font-size: 30px;
}

#stripe_frame {
  border: none;
  width: 50%;
}

#summary_screen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  font-size: 18px;
  z-index: 99999999999999;
  overflow-x: hidden;
  overflow-y: auto;
}


#hold_summary {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#summary_textarea {
  white-space: nowrap;
  width: 90%;
  margin-top: 20px;
  border-radius: 6px;
  padding: 10px;
}

#hold_summary ul li {
  margin-bottom: 20px;
}


#hold_summary ul li:last-child {
  color: gold;
}

#hold_summary ul {
  max-width: 600px;
  list-style-position: outside;
}

.moving-border {
  position: relative;
  padding: 2rem;
  background-color: black;
  color: white;
  z-index: 0;
  overflow: hidden;
  box-shadow: 2px 2px 10px black;
}

.moving-border::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    red,
    orange,
    yellow,
    green,
    blue,
    indigo,
    violet,
    red
  );
  background-size: 300% 300%;
  animation: move-border 4s linear infinite;
  z-index: -1;
  filter: blur(4px);
}

.moving-border:active {
  top: 2px;
  box-shadow: 0 0 1px black;
}

#message_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--product_blue);
  color: white;
  box-shadow: 2px 2px 10px black;
  padding: 10px;
  border-radius: 5px;
  z-index: 99999999;
}


@keyframes move-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* blocks */

#area {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none; 
}


.blocks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.blocks li {
  position: absolute;
  display: block;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 142, 156, 0.5);
  color: #f7f1e3;
  animation: animate 25s linear infinite;
  bottom: -150px;
}

.blocks li:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.blocks li:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.blocks li:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.blocks li:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.blocks li:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.blocks li:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.blocks li:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.blocks li:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.blocks li:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.blocks li:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }


.prem_link_for_message {
  color: yellow;
}

.prem_vid_message {
  color: #b1ffa9;
  text-shadow: 2px 2px 10px black;
}

@keyframes animate {
  0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

/***** spinner ***********/

.lds-circle {
    position : fixed;
    transform: translateZ(1px);
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 999999;
  }
  
  .lds-circle > div {
    width: 50px;
    height: 50px;
    margin: 0px;
    padding: 0px;
    border-radius: 20%;
    background: #fff;
    animation: lds-circle 4.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center;
  }

  @keyframes lds-circle {
    0%, 100% {
      animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
    }
    0% {
      transform: rotateY(0deg);
    }
    50% {
      transform: rotateY(1800deg);
      animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
    }
    100% {
      transform: rotateY(3600deg);
    }
  }




/***** image uploader *****/
.upload_icon {
  position: absolute;
  margin-left: -4px;
  margin-top: 6px;
  filter: invert(1);
  width: 16px;
 }
 
 #upload_span {
   margin-left: 20px;
 }
 
 input[type="file"] {
     display: none;
 }
 .custom-file-upload {
     border: none;
     display: inline-block;
     padding: 7px 12px;
     cursor: pointer;
     border-radius: 4px;
     color: white;
 }


 #are_you_sure_check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 10px;
  background: var(--stripe_modal_background);
  box-shadow: 2px 2px 10px black;
  border-radius: 4px;
  z-index: 999999;
 }

 #button_yes, #button_no {
  width: auto;
  height: auto;
  border-radius: 4px;
  outline: 0;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
 }

 #button_yes {
  background: #b33939;
  margin-right: 10px;
  color: white;
 }

 #button_no {
  background: #d1ccc0;
  color: black;
 }

 #charCount {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
#charCount.safe {
  color: white;
}
#charCount.warning {
  color: yellow;
}
#charCount.danger {
  color: red;
}



#hold_item_content {
  width: 100%;
  height: calc(100% - 130px); /* was 150px */
  overflow-x: hidden;
  overflow-y: auto;
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}



#forest_branch_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  width: 80%;
  height: 80%;
  box-shadow: 2px 2px 10px black;
  z-index: 9;
  overflow: hidden;
  border-radius: 8px;
  background: #353B48;
}

#close_hold_forest_branch, #close_video_page {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  font-size: 22px;
  color: white;
  cursor: pointer;
}

#forest_branch_modal_title {
  position: absolute;
  top: 0;
  text-align: left;
  white-space: nowrap;
  font-size: 20px;
  color: white;
  margin-left: 20px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 5px;
}

#close_video_page {
  position: fixed;
}

#close_custom_page {
  width: auto;
  height: 40px;
  color: black;
  position: fixed;
  top: 105px;
  right: 20px;
  background: white;
  padding: 5px;
  box-shadow: 2px 2px 10px black;
  border-radius: 4px;
  font-size: 18px;
  color: black;
  cursor: pointer;
  z-index: 9999999999999;
}

.js-plotly-plot .plotly .modebar {
    top: 63px !important;
    right: 86px !important;
}


.twitter-timeline {
  width: 100%;
  height: 400px;
  overflow-y: auto;
  z-index: 99999;
  border: 2px solid white;
  box-shadow: 2px 2px 10px black;
  border-radius: 14px;
}

#not_yet_signed_in_alert {
  width: 50%;
  height: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999999;
  border-radius: 5px;
  background: var(--stripe_modal_background);
  color: white;
  border-radius: 5px;
  padding: 10px;
  font-size: 18px;
  box-shadow: 2px 2px 10px black;
  border: 2px solid white;
}

/************** forum *******************/

#hold_forum {
  width: 100%;
  height: calc(100% - 100px);
  overflow-x: hidden;
  overflow-y: auto;
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  bottom: 100px;
}



[id^=forum_wrapper_] {
  display: grid;
  gap: 0px;
  height: auto;
  width: 90%;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  margin-top: 20px;
  cursor: pointer;
  margin-left: 20px;
}

[id^=forum_item_] {
  position: relative;
  background: transparent;
  border : 0px solid black;
  color: white;
  padding-left: 6px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  text-align: left;
  pointer-events: none;
}

[id^=forum_item_] p {
  margin: 0px 0;
}

.avatar {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  min-width: 40px;
  min-height: 40px;
  object-fit: cover; 
  object-position: center;
  border: 2px solid #fff;
  margin-right: 10px;
  pointer-events: auto;
}

.author {
  color: white;
}

.forum_text {
  width: 100%;
  color: var(--forum_text_color);
  font-size: 18px;
  font-weight: bold;
  pointer-events: auto !important;
  word-wrap: break-word;
  white-space: pre-wrap;
}

.center_screen {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}


.show_date {
  color: #ffdc89;
  font-size: 12px;
}

.votes {
  width: 15px;
  position: absolute;
  right: 0;
  pointer-events: auto;
}

.show_votes {
  font-size: 15px;
  position: absolute;
  right: 0;
  margin-top: -4px;
  margin-right: -30px;
}


#add_to_forum {
  width: 50px;
}

#add_to_forum_button {
  width: auto;
  height: auto;
  margin-bottom: 20px;
  background: purple;
  color: white;
  border-radius: 4px;
  border: none;
  padding: 10px;
}

#forum_textarea, #text_textarea, #edit_comment_textarea, #reply_textarea {
  border-radius: 6px;
}

#upload_image_to_forum_icon {
  filter : invert(1);
  width : 24px;
  cursor : pointer;
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  /* for now */
  pointer-events: none;
  opacity: 0.5;
}

#hold_custom_page {
  position: fixed;
  top: 100px;
  width: 80%;
  height: 80%;
  color: #f7f1e3;
  font-size: 19px;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0,0,0,0.8);
  border-radius: 6px;
  border: 2px solid #f7f1e3;
  padding: 10px;
  padding-left: 6px;
  z-index: 9;
}

.center_image {
  width: 100%; 
  display: block;
  margin: 0 auto;
  border: 1px solid black;
}

.welcome_listing {
  list-style-type: none; 
            padding: 0; 
}

.welcome_listing > li {
  margin-bottom: 10px;
}

.gold {
  color: gold;
}

.center_title {
  text-align: center;
}

#socials_wrapper {
  display: grid;
  width: auto;
  height: 80%;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
}

[id^=socials_item_] {
  background: transparent;
  border: 0px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.social_icons {
  width: 100px;
  cursor: pointer;
}

#generic_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  border-radius: 5px;
  box-shadow: 2px 2px 10px black;
  color: white;
  font-size: 18px;
  padding: 15px;
  text-align: center;
}

#close_general_modal {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  cursor: pointer;
  font-size: 20px;
}


/********* mobile menu icon ******************/
.menu-icon {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  margin: 23px;
  position: absolute;
  right: 0;
  top: 0;
}

.bar {
  width: 30px;
  height: 3px;
  background-color: black;
  margin: 5px 0;
  transition: transform 0.4s, opacity 0.4s;
}

/* Transform the bars into a cross when the menu is open */
.menu-icon.open .bar:nth-child(1) {
  transform: rotate(-45deg) translate(1px, -3px);
}

.menu-icon.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-icon.open .bar:nth-child(3) {
  transform: rotate(45deg) translate(-20px, -20px);
}

#mobile_menu_icon.open {
  top: 14px;
}

#hold_second_bottom_banner_icons {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  position: absolute;
  bottom: 80px;
  width: 100%;
  height: 70px;
  background: #f7f1e3; 
  z-index: 1;
}

[id^=hold_second_bottom_banner_icons_item_] {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

[id^=hold_second_bottom_banner_icons_item_]:hover {
  background-color: rgba(255, 0, 0, 0.5);
}

[id^=hold_second_bottom_banner_icons_item_] {
  display: flex;
  flex-direction: column;
}

.second_bottom_banner_icons {
  margin-top: 4px;
  pointer-events: none;
}

.second_banner_names {
  font-size: 16px;
  margin-top: 0px;
  text-align: center;
  line-height: 12px;
  pointer-events: none;
}

#sec_bottom_banner_icon_1 {
  width: 25px;
  filter: invert(1);
}

#sec_bottom_banner_icon_2 {
  width: 25px;
  filter: invert(1);
}

#sec_bottom_banner_icon_3 {
  width: 25px;
  filter: invert(1);
}

#sec_bottom_banner_icon_4 {
  width: 28px;
  filter: invert(0);
}

#sec_bottom_banner_icon_5 {
  width: 21px;
  filter: invert(0);
}

.center_div {
  grid-template-columns: auto auto auto;
  width: 80%;
  height: 80%;
}

.lock, .premium_content_icon {
  position: absolute;
  width: 20px;
  filter: invert(70%) sepia(50%) saturate(457%) hue-rotate(12deg) brightness(110%) contrast(104%) drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  bottom: 0;
  right: 0;
  margin: 5px;
  pointer-events: none;
}

.premium_content_icon {
  filter: invert(30%) sepia(50%) saturate(457%) hue-rotate(12deg) brightness(110%) contrast(104%) drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7)) !important;
  width: 30px !important;
}

#add_download_audio_button {
  position: absolute;
  top: 130px;
  right: 10px;
  z-index: 9999999;
  padding: 10px;
  border-radius: 3px;
  border: none;
  background: #cd6133;
  color: white;
  cursor: pointer;
}

#floating_banner_text {
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: 10px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 100;
  white-space: nowrap;
  color: black;
  font-size: 20px;
  text-align: center;
  line-height: 20px;
  white-space: pre-line;
}


.title_topics {
  color: black;
  font-size: 16px;
}


.waves {
  position: absolute;
  top: 0;
  width: 100vw;
  max-width: 100%;
  height: 80px;
  min-height: 80px;
  max-height: 80px;
}

.parallax {
  max-width: 100%;
}

.parallax > use {
  animation: waves 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes waves {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}



  /********** animations *******************/
  .bounce-in-right_speed_1 {
    animation: bounce-in-right 0.4s ease-out 1;
}

.bounce-in-right_speed_2 {
    animation: bounce-in-right 0.6s ease-out 1;
}

.bounce-in-right_speed_3 {
    animation: bounce-in-right 0.8s ease-out 1;
}

.bounce-in-left_speed_1 {
    animation: bounce-in-left 0.4s ease-in 1;
}

.bounce-in-left_speed_2 {
    animation: bounce-in-left 0.6s ease-in 1;
}

.bounce-in-left_speed_3 {
    animation: bounce-in-left 0.8s ease-in 1;
}

.rubberband {
  animation : rubberband 0.1s alternate ease-out;
}

#welcome_modal {
  width: 80%;
  height: 80%;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--main-bg-color);
  box-shadow: 2px 2px 10px black;
}

.bold_purple {
  color: #c8c7ff;
  font-weight: bold;
}

#dendrogram_icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 10px;
  width: 30px;
  cursor: pointer;
}

.spray-btn {
    position: relative;
    padding: 14px 26px;
    font-size: 18px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(45deg, #2563eb, #10b981);
    box-shadow: 0 8px 20px rgba(16,185,129,.25);
    text-shadow: 2px 2px 10px rgba(0,0,0,.6);
    transition: transform .15s ease, filter .15s ease;
    overflow: visible; /* allow ring to expand */
  }

/*************** keyframes ****************************/

@keyframes rubberband {
  0%{
      transform: scaleX(1);
  }
  40%{
      transform: scaleX(1.12) scaleY(0.75);
  }
  55%{
      transform: scaleX(0.85) scaleY(1);
  }
  65%{
      transform: scaleX(1.09) scaleY(0.85);
  }
  75%{
      transform: scaleX(0.9)  scaleY(1);
  }
  90%{
      transform: scaleX(1.05) scaleY(0.95);
  }
  100%{
      transform: scaleX(1) scaleY(1);
  }
}

@keyframes bounce-in-right {
  0% {
      opacity: 0;
      transform: translateX(-2000px);
  }

  60% {
      opacity: 1;
      transform: translateX(-30px);
  }

  80% {
      transform: translateX(10px);
  }

  100% {
      transform: translateX(0);
  }
}

@keyframes bounce-in-left {
  0% {
      opacity: 0;
      transform: translateX(2000px);
  }

  60% {
      opacity: 1;
      transform: translateX(-30px);
  }

  80% {
      transform: translateX(10px);
  }

  100% {
      transform: translateX(0);
  }
}

.video-wrapper {
  width: 560px;
  height: 315px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#admin_mode {
  visibility: hidden;
}

@media only screen and (max-width: 600px) {
  .video-wrapper {
    width: 350px;
    height: 196.88px;
  }

  [id^=forum_item_] {
    max-width: 290px;
  }

}


@media only screen and (max-width: 900px) {

  #floating_banner_text {
    font-size: 12px;
    line-height: 14px;
  }
 
  .bottom_banner_icons {
    width: 30px;
  }

  #close_custom_page {
    width: auto;
    height: 30px;
    padding: 0px;
    padding-left: 10px;
    padding-right: 10px;
    top: 90px;
    right: 15px;
    text-align: center;
    white-space: nowrap;
  }

  #payment_title {
    font-size: 16px !important;
  }

  #open_stripe_link {
    text-align: center !important;
    font-size: 16px !important;
  }

  #admin_mode {
    display: none;
  }

  #top_banner_wrapper {
    grid-template-columns: 2fr 1fr 1fr;
  }
    [id^=item_content_item_] {
      width: 100% !important;
    }
    #top_banner_item_5 {
      width: 0px;
      justify-content: end;
      font-size: 14px;
    }
    .settings {
      width: 300px;
      height: 340px;
    }

    [id^=add_content_item_] {
      padding: 12px;
    }

    #change_text_input, #change_audio_input, #change_video_input, #change_deep_dive_video_input, #add_forest_branch_input, #add_tags_input {
      font-size: 12px;
    }

    #upload_span {
      font-size: 10px;
    }

    #add_content_item_2 > button {
      font-size: 10px;
    }

    #color_input_title {
      font-size: 10px;
    }

    #drag_back_a_folder {
      width: 28px;
    }

    #stripe_frame {
      width: 100%;
    }
    
    #close_comment_video {
      top: 50%;
    }

    #hold_summary {
      width: 80%;
    }

    .summary_list {
      width: 320px !important;
    }

    #hold_second_bottom_banner_icons {
      height: 80px;
    }

    .main_banner_names {
      font-size: 10px;
    }

    .second_banner_names {
      font-size: 12px;
      margin-top: 10px;
      width: 60px;
    }

    /* adding to see if fixes galaxy shifting */

    img {
      max-width: 300px !important;
    }
    
    body {
        margin: 0 auto;
        position: relative;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    #forest_branch_modal_title {
      font-size: 10px;
      margin-top: 20px;
    }

    .js-plotly-plot .modebar {
    transform: scale(1.5); /* Increase scale (1.0 is default) */
    transform-origin: top right;
    right: 10px; /* adjust as needed */
    background: black;
    opacity: 1;
    z-index: 999999999999999;
}

.js-plotly-plot .modebar-btn {
    height: 36px !important;
    width: 36px !important;
    font-size: 20px !important;
}

.about_page_iframe {
    width: 265px !important;
    margin-left: -10px !important;
    height: auto !important;
}

.spray-btn {
  font-size: 8px !important;
}

#not_yet_signed_in_alert {
  width: 90%;
}
      
}

