/* ----------------------- VARIABLES ----------------------- */
:root {
  /* Font Size */
  --text-sm: 1.2rem;
  --text-base: 1.6rem;
  --text-paragraph: 2rem;
  --text-h5: 2rem; /*2.4rem;*/
  --text-h4: 2.5rem;
  --text-h3: 3rem;
  --text-h2: 3.5rem; /*4.8rem;*/
  --text-h1: 4rem; /*6.2rem;

  /* Font Weight */
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;

  /* Letter Spacing */
  --letter-spacing-tight: 10px;

  /* Font Family */
  --font-family: "Arial", sans-serif;

  /* Colors */
  /* --primary-base: #339af0; */
  --primary-base: #0ec9c0;

  --primary-tint: #d0ebff;
  --primary-shade: #1c7ed6;
  --secondary-base: #9775fa;
  --secondary-tint: #e5dbff;
  --secondary-shade: #7048e8;
  --tertiary-base: #ff922b;
  --tertiary-tint: #ffe8cc;
  --tertiary-shade: #f76707;
  --grey-base: #495057;
  --grey-tint: #f1f3f5;
  --grey-shade: #212529;
  --white: #ffffff;
  --black: #000000;

  /* Back Shadow */
  --back-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

/* ----------------------- STYLES ----------------------- */

/*------------General-----------*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%; /* 10px / 16px = 62.5% */
}

body {
  font-family: var(--font-family);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--grey-base);
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  /* letter-spacing: var(--letter-spacing-tight); */
  font-family: var(--font-family);
  color: var(--grey-shade);
}

h1 {
  font-size: var(--text-h1);
}

h2 {
  font-size: var(--text-h2);
}

h3 {
  font-size: var(--text-h3);
}

h4 {
  font-size: var(--text-h4);
}

h5 {
  font-size: var(--text-h5);
}

p {
  font-size: var(--text-paragraph);
  word-break: normal !important;
  overflow-wrap: normal !important;
}

a,
p,
th,
td {
  text-decoration: none !important;
  font-size: var(--text-base);
  display: inline-block;
}

a:link,
a:visited,
a:hover,
a:active {
  color: var(--grey-base);
}
small {
  margin-top: 7px;
}
ul,
li {
  list-style: none;
}

strong {
  font-size: var(--text-base);
}

small {
  font-size: var(--text-sm);
}
span {
  display: inline-block;
  font-size: var(--text-base);
}

em {
  font-size: var(--text-base);
}
form {
  box-shadow: var(--back-shadow);
  padding: 20px;
  border-radius: 10px;
}

input,
select,
textarea {
  font-size: var(--text-base);
  padding: 10px;
  cursor: text;

  border: var(--primary-base) 0.5pt solid;
}

input[type="file"] {
  outline: var(--primary-base) 0.5pt solid;
  border: none;
}

input:focus {
  outline: none;
}
textarea {
  padding: 5px 10px;
}

select {
  font-size: var(--text-base);
  padding: 10px;
}

input,
select,
option {
  width: 100% !important;
  margin-bottom: 5px;
  margin-top: 5px;
  height: 50px;
}

textarea {
  font-size: var(--text-base) !important;
}

label {
  font-size: var(--text-sm);
  background-color: var(--white);
  margin-top: 20px;
}

button {
  font-size: var(--text-base);
  width: 100%;
  height: 37px;
  padding: 5px;
  background-color: var(--primary-base);
  border: none;
  color: var(--white);
  box-shadow: var(--back-shadow);
  cursor: pointer;
  margin-top: 10px;
}

button:focus {
  outline: none !important;
}

thead tr,
tbody tr {
  display: flex;
  padding: 10px 10px !important;
}
th {
  border-bottom: #000000 solid 1pt;
}

th,
td,
td a,
td p {
  padding: 5px 10px 5px 0px;
  width: 130px;
  font-size: var(--text-sm);
  text-align: left;
  vertical-align: top;
}

img {
  width: 100%;
}
hr {
  border-color: var(--primary-base);
}

/*------------DOCUMENT READY-----------*/

.workspace-page-search-form,
.edit-icon {
  visibility: hidden;
  background-color: var(--white);
  z-index: 1000;
}
.loading-section {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 100px;
  gap: 20px;
  padding-top: 150px;
  /* height: 100vh; */
  /* visibility: hidden; */
}

.active {
  background-color: var(--tertiary-base) !important;
}

.small-text-offline {
  color: black !important;
}

#subscription-message {
  display: none;
  margin-bottom: -5px;
}

#create-account-message {
  display: none;
}

#login-message {
  display: none;
}
/*------------Forms-----------*/

#login-form {
  width: 300px;
  height: fit-content;
  box-shadow: var(--back-shadow);
  padding: 10px;
  border-radius: 10px;
}

#get-link-form {
  width: 300px;
  height: fit-content;
  box-shadow: var(--back-shadow);
  padding: 10px;
  border-radius: 10px;
}

#change-password-form {
  width: 300px;
  height: fit-content;
  box-shadow: var(--back-shadow);
  padding: 10px;
  border-radius: 10px;
}

#create-account-form {
  display: inline-block;
  height: fit-content;
  box-shadow: var(--back-shadow);
  padding: 10px;
  border-radius: 10px;
}

.inputs-group {
  width: 100%;
  display: none;
}

.inputs-group-personal {
  gap: 10px;
}

/* .attachments {
  outline: black solid 1pt;
} */
#create-account-form input,
#create-account-form select,
#create-account-form option {
  width: 100% !important;
}

#school-name-container {
  width: 500px;
  display: flex;
  gap: 10px;
}

#school-name {
  width: 500px;
}

#profile-details {
  box-shadow: none;
  display: block;
  justify-content: space-between;
  padding: 0px;
  margin-top: 50px;
}

#logout-form {
  box-shadow: none;
  margin-right: -20px;
  margin-left: -20px;
  margin-top: -5px;
}

#search-form {
  display: flex;
  flex-direction: row;
  gap: 10px;
  box-shadow: none;
  width: 300px;
  height: 50px;
}

#ad-search-form {
  box-shadow: none;
  width: 100%;
  margin-bottom: -20px;
}
/*------------Header-----------*/

.logout-button {
  display: none;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  height: 50px;
  background-color: var(--primary-base);
  align-items: center;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000000;
}
.logo-container {
  width: fit-content;
  display: flex;
  justify-content: left;
}

.logo {
  width: 80px;
  height: auto;
}

.page-navigation-container div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.page-navigation-container-mobile-tablet {
  background-color: var(--primary-base);
  margin-top: 50px;
  display: none;
  padding-bottom: 5px;
  z-index: 1000000;
}

.hide-mobile-navigation {
  display: none;
}
.header-link {
  color: white !important;
}

.header-search-input {
  height: 40px;
  outline: var(--white);
  border: var(--white) solid;
  height: 40px;
}

.header-icon {
  width: 20px;
}

.header-search-icon {
  margin-top: -10px;
}

#account-not-loggedin,
#account-loggedin {
  display: flex;
  justify-content: right;
  gap: 10px;
  align-items: center;
}

.header-profile-image {
  border-radius: 50%;
  box-shadow: var(--back-shadow);
  margin: auto;
}

.show-workspace-button {
  cursor: pointer;
}

.logout-button {
  box-shadow: none;
}

.alert {
  font-size: var(--text-sm) !important;
}

/*------------Sidebars-----------*/

#home-sidebar {
  padding: 2rem;
}

.workspace-sidebar {
  width: 30%;
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
  margin-top: 60px;
  bottom: 0;
  overflow: scroll;
  word-wrap: break-word;
}

.workspace-sidebar-content-list-container {
  display: flex;
  flex-direction: column;
  gap: 5px !important;
}

.workspace-sidebar p {
  word-break: break-all;
  margin-bottom: -3px;
}

#website-sidebar {
  position: fixed;
  right: 0;
  top: 0;

  margin-top: 50px;
  margin-bottom: 50px;

  box-shadow: var(--back-shadow);
  width: 20%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  gap: 20px;

  z-index: 200;
  padding: 10px;
  overflow: hidden;
  word-wrap: break-word;
  padding-bottom: 50px !important;
}

.sidebar-display-image {
  width: 100%;
  height: auto;
}

.account-notes {
  padding: 15px;
  display: inline-block;
}

.account-notes small,
.account-notes a {
  margin-top: 10px;
}

.sidebar-link {
  margin-bottom: 10px;
}

.hide-mobile-sidebar,
.show-mobile-sidebar {
  display: none;
  background-color: var(--primary-base);
  height: fit-content;
  position: fixed;
  z-index: 1000000;
}

.hide-mobile-sidebar {
  right: 0;
}

.show-mobile-sidebar {
  right: 0;
  bottom: 0;
}

/*--------------------Native Ad---------------------*/

#native-ad-container {
  margin-top: 50px;
}
/*------------Modal-----------*/

.website-modal {
  z-index: 1000000;
  margin: auto !important;
  display: none;
}

.note-modal {
  z-index: 500000;
  margin: auto !important;
}

.website-modal-wrapper {
  position: fixed;
  z-index: 400000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  align-content: center;
}

/* Modal Content Box */
.website-modal-content {
  background-color: #fefefe;
  margin: auto; /*  centered */
  margin-top: 50px;
  padding: 20px 20px 20px 20px;
  border-radius: 8px;
  width: fit-content; /* Could be more or less, depends on screen size */
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Close button */
.close-modal {
  cursor: pointer;
  font-size: var(--text-sm) !important;
}

.close-button-container {
  display: flex;
  justify-content: right;
}

.modal-delete-form,
.modal-image-update-form {
  box-shadow: none;
}

.modal-image-update-form {
  width: 100%;
}

.modal-replace-image-warning {
  margin: 10px 0px 0px 0px;
  width: 100%;
}

.modal-description {
  width: 50vw;
  margin-bottom: 10px;
  padding: 50px;
}

.modal-subscription-form {
  box-shadow: none;
  width: 400px;
}

#modal-promotion-inputs-container {
  display: flex;
  gap: 10px;
}

#promotion-days-amount {
  display: flex;
  gap: 10px;
}

#promotion-description {
  width: 100%;
  height: 120px;
  resize: none;
}

/* #promotion-attachments {
  display: flex;
  gap: 10px;
  width: 100%;
} */

#modal-upload-image-message {
  display: none;
  margin-bottom: -20px;
}
#subscriptions-updates small {
  background-color: var(--tertiary-base);
  padding: 10px;
  color: var(--white);
}
.modal-subscription-head {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
  margin-left: 5px;
}

.subscription-inputs-container {
  display: flex;
  gap: 10px;
}

#subscription-summary {
  display: none;
  margin-top: 15px;
}
/* #subscription-proof-of-payment,
#agreement,
#license-certification,
#sample,
#payment-proof,
#promotion-agreement,
#promotion-image {
  outline: solid 1pt black;
} */

.modal-other-registration-form {
  box-shadow: none;
  width: 400px;
}

#modal-other-registration-navigation {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 0px;
  margin-bottom: 20px;
  vertical-align: bottom;
}

.license-certification-sample {
  display: none;
}

#modal-other-registration-download-section {
  display: none;
}

#modal-other-registration-message {
  display: none;
  margin-bottom: -20px;
}

.modal-note-message {
  display: none;
  margin-bottom: -20px;
}

#modal-other-registration-inputs-container {
  display: none;
  flex-direction: column;
  padding-bottom: 20px;
  gap: 50px !important;
  width: 320px !important;
}

#modal-other-registration-status {
  display: none;
  margin-top: -25px;
}
#modal-other-registration-submitted-documents-container {
  display: none;
}

#other-registration-buttons {
  display: none;
}

.workspace-list {
  display: inline;
}

.workspace-list a {
  margin-bottom: 10px;
}

.website-modal-content-for-readmore {
  width: 50%;
}

.read-more-button {
  color: var(--primary-base);
}

#modal-show-image div {
  width: 350px;
  height: auto !important;
}

/*------------Summary-----------*/

.summary-navigation-container {
  margin-bottom: 50px;
  display: flex;
  gap: 20px;
}

.summary-buttons-containers {
  display: inline;
  width: 100%;
  justify-content: left;
}

.summary-navigation-container a,
.summary-navigation-container small {
  margin-bottom: 10px;
}

.summary-table {
  width: 100%;
}

.timestamp-column {
  width: 180px;
}

.userid-column {
  width: 20px;
}
.account-name-column {
  width: 150px;
}
.username-column {
  width: 100px;
}
.email-column {
  width: 190px;
}

.mobile-column {
  width: 150px;
}

.account-types-column {
  width: 200px;
}

.resume-column,
.agreement-column,
.status-column,
.sample-column {
  width: 120px;
}

.action-column-head {
  width: 250px;
}
.action-column-data {
  width: 250px;
}

.action-other-registration {
  width: 380px !important;
}

.action-subscription {
  width: 250px !important;
}

.type-column,
.duration-column,
.status-column {
  width: 80px;
}

.remaining-days-column {
  width: 150px;
}
.date-column,
.expiry-column {
  width: 150px;
}

.other-details {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.other-details,
.other-details p {
  width: 100%;
  padding-bottom: 10px;
}

.notes-container {
  width: 100%;
  margin-bottom: 20px;
  display: none;
  justify-content: space-between;
  box-shadow: none;
  padding: 0px;
  flex-direction: column;
}

.note-inputs-container {
  width: 50%;
}

.note-inputs {
  width: 100%;
  height: 100px;
  resize: none;
  font-family: var(--text-sm);
  padding-top: 0px;
  word-wrap: break-word !important;
  word-break: break-all !important;
}

.note-buttons-container {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.name-company-column,
.title-column,
.description-column {
  width: 190px;
}

.omitted {
  display: none;
}

/*---------------- Profile -----------------------*/
#profile {
  display: block;
  width: 100%;
  margin-top: -20px;
}

#profile-top {
  display: block;
  margin-bottom: -70px;
}

#cover-photo-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border: var(--primary-base) solid 1px;
}

#cover-photo {
  background-color: var(--white);
  border: var(--primary-base) solid 1px;
  width: 100%;
}
#cover-photo-camera-container {
  display: flex;
  justify-content: right;
  padding-right: 10px;
  z-index: 4000;
  background-color: transparent !important;
  margin-top: -30px;
}
#cover-photo-camera-icon {
  width: 20px;
  cursor: pointer;
  z-index: 4000;
}

#profile-picture-summary {
  width: 100%;
  padding: 0px 10px 20px 10px;
  display: flex;
  justify-content: flex-start;
  margin-top: -60px;
}

#profile-picture-container {
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 2000;
}

#profile-picture {
  padding: 0px;
  background-color: var(--white);
  border: var(--primary-base) solid 1px;
  width: 150px;
  height: 150px;
  margin: 20px 0px 0px 0px;
}

#profile-camera-icon {
  width: 20px;
  cursor: pointer;
  margin: -50px 5px 5px 0px;
}

.profile-details-icon {
  background-color: var(--primary-base);
  border-radius: 25%;
}
#profile-summary {
  width: 100%;
  padding: 80px 10px 10px;
}

#profile-update-message {
  display: none;
}
#profile-details {
  margin-top: 60px;
}

.profile-description {
  resize: none;
  width: 100%;
  height: 100px;
}
.profile-details-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

#profile-details-top,
#profile-details-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#profile-details {
  margin-top: 100px;
}
#profile-details-bottom {
  justify-content: left !important;
  gap: 20px;
  align-items: start;
}

.profile-details-edit {
  display: none;
}
.account-access-details-container {
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
}
.account-access-message-container {
  text-align: center;
  margin-bottom: -50px;
}
.account-access-message {
  width: fit-content;
  padding: 10px;
  border-radius: 5px;
}

#account-contents-filter {
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  gap: 10px;
}

.account-contents-indicator {
  padding-top: 10px;
}

/*------------General Sections/Components-----------*/

.form-section {
  width: 50%;
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.sub-category {
  display: none;
}

#sm-record-category,
#sm-record-category option {
  width: 250px !important;
}
#record-status {
  display: none;
}

#record-date {
  display: none;
}

#record-search {
  display: none;
}

.record-input {
  width: auto;
}

.record-input option {
  width: auto;
}

.form-links,
.form-links a {
  font-size: var(--text-sm);
}

.icon,
.icons {
  width: 20px;
  height: auto !important;
}

.search-icon {
  height: 40px;
  margin-bottom: 20px;
}

.list-icon,
.edit-icon {
  position: fixed;
  display: none;
}

.list-icon {
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.edit-icon {
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

.search-button {
  box-shadow: none;
  width: fit-content;
}

.page-search-form {
  display: flex;
  gap: 10px;
  box-shadow: none;
}

.non-header-search-button {
  box-shadow: none;
  background-color: transparent;
  width: fit-content;
}
.non-header-search-icon {
  width: 25px;
}

.pop-up-icon-link {
  background-color: var(--primary-base);
  width: 100% !important;
}

.pop-up-icon {
  background-color: var(--primary-base);
}

.buttons-container {
  display: flex;
  justify-content: space-between;
  width: 200px;
  gap: 20px;
  align-items: center;
}

.button {
  font-size: var(--text-base);
  width: fit-content;
  height: 37px;
  padding: 5px;
  background-color: var(--primary-base);
  border: none;
  color: var(--white) !important;
  box-shadow: var(--back-shadow);
  cursor: pointer;
}

.button:hover {
  color: var(--white);
}

.link-tag-button,
.link-tag-button-main {
  box-shadow: var(--back-shadow);
  padding: 6px;
  margin-left: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: var(--text-sm);
  width: fit-content;
  height: fit-content;
  /* background-color: var(--primary-base); */
  background-color: var(--primary-base);
  color: var(--white) !important;
  border-radius: 5px;
}

.contents-list-label {
  background-color: var(--primary-tint) !important;
  color: var(--black) !important;
}

.more-label {
  background-color: var(--primary-base) !important;
  color: var(--white);
  width: fit-content;
  margin-bottom: -10px;
  padding: 10px 5px 5px 10px;
  border-radius: 10px 10px 0px 0px;
}

.cancel-submit-buttons-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-top: 20px;
}

.cancel-submit-buttons-container button {
  width: fit-content;
}

.cancel-button {
  width: fit-content;
  box-shadow: var(--back-shadow);
  padding: 6px;
  text-align: center;
  height: fit-content;
  margin-top: 10px;
}

.link-tag-button-main {
  background-color: var(--primary-base);
  color: var(--white) !important;
}

.action-buttons-container {
  display: inline-flex;
  justify-content: left;
}

.action-button {
  width: fit-content;
}

.row-aligner {
  padding: 5px 5px;
}

.modal-header button {
  width: 50px;
}

.small-text,
.actual-workspace-small-text {
  font-size: var(--text-sm);
  color: var(--tertiary-base);
  font-weight: bold;
}

.actual-workspace-small-text {
  padding: 7px;
  color: var(--tertiary-base);
  border-radius: 5px;
  margin-top: -2px;
  height: fit-content;
}

.workspace-search-container-mobile-tablet {
  visibility: hidden;
  display: none;
}

.search-page-search-container {
  padding-top: 20px;
}

.actual-workspace {
  width: 70%;
  margin-left: 400px;
  margin-top: 20px;
  box-shadow: none;
}

.workspace-actions-container {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 170;
  border-radius: 5px;
  background-color: var(--white);
  padding: 10px 20px 10px 10px;

  display: flex;
  justify-content: space-between;
  width: 70%;
  border-top: var(--primary-base) solid;
  align-items: center;
}

.workspace-action-versions {
  display: flex;
  justify-content: left;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.workspace-action-versions strong {
  margin-top: 7px;
}

.workspace-action-notes {
  display: flex;
  justify-content: center;
  width: fit-content;
}

.workspace-action-buttons {
  display: flex;
  justify-content: right;
  width: fit-content;
}

.workspace-info-and-buttons {
  width: 70%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: fixed;
  right: 0;
  top: 0;
  margin-top: 50px;
  z-index: 400;
  box-shadow: var(--back-shadow);
  padding: 5px;
  background-color: var(--white);
  border-bottom: var(--primary-base) solid;
  text-align: center;
}

.workspace-buttons {
  display: flex;
  flex-direction: row;
  gap: 5px;
  justify-content: baseline;
  align-items: baseline;
  width: fit-content;
  padding-bottom: 10px;
  vertical-align: middle;
}

.workspace-buttons button {
  width: fit-content;
}

.featured-image-mobile-tablet {
  display: none;
}

.to-update {
  background-color: var(--tertiary-base) !important;
}

.workspace-buttons img {
  width: 25px;
}

.workspace-info {
  width: 100%;
  display: flex;
  justify-content: space-between !important;
  gap: 5px;
}

.page-details {
  width: max-content;
  display: flex;
  flex-direction: column;
  margin-left: 170px;
  padding: 0px 50px;
  width: 100%;
}

.page-details-single-sidebar {
  margin-left: 0px !important;
  padding: 0px 0px !important;
  width: 80%;
}

.page-details-no-sidebar {
  margin-left: 0px !important;
  padding: 0px 0px !important;
  width: 100%;
}

.page-links-container {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  justify-content: left;
}

.list {
  display: flex;
  gap: 10px;
  width: 100%;
  margin: 20px 0px;
}

.search-list {
  display: block;
  width: 100%;
}

.list-buttons-container {
  margin: 5px 0px;
}

.list-image {
  width: 250px;
  height: auto;
}

.list-info {
  display: flex;
  flex-direction: column;
  width: 70%;
}

.search-container form {
  display: flex;
  align-items: center;
}
.search-container button {
  width: fit-content;
}

.pop-up-message {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0px !important;
  margin-bottom: 0px;
}

.list-table {
  width: 100%;
}

.list-table th,
.list-table td {
  width: 100%;
  display: flex;
}

th {
  margin-top: 20px;
  margin-bottom: 20px;
}
tr {
  margin-top: -20px;
}

.navigation {
  margin-bottom: 20px;
}

.attachment {
  width: 250px !important;
  outline: 1pt solid black;
}

.read-more {
  color: var(--primary-base) !important;
}

.research-content-container {
  margin-top: -50px;
}

.file-content-container {
  margin-top: -50px;
}

.file-content-container div {
  display: flex;
  gap: 10px;
}

.research-content-container div {
  display: flex;
  gap: 10px;
}

.tool-content-container {
  /* z-index: 2000; */
  margin-top: 0px;
}

.content-notice {
  padding-top: 100px;
}
.footer-page-links-container {
  display: flex;
  gap: 50px;
  justify-content: center;
  bottom: 0;
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  vertical-align: middle;
}

.pdf-reader {
  width: 100%;
  height: 100vh;
}

.pagination a {
  padding: 6px 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  margin: 2px;
}

.pagination a.active {
  background: var(--primary-base);
  color: #fff;
}

/*------------Pages-----------*/
.page {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0.5rem 5rem;
  width: 100%;
  background-color: var(white);
}

#message-page {
  padding: 0px !important;
  height: fit-content;
  margin-bottom: 0px;
}

#message-page-first-column {
  border-right: 2px solid var(--primary-base);
}
.message-page-column {
  height: 93vh;
  padding: 10px;
}

.form-page {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 50px;
}

.form-page-content-container {
  display: flex;
  justify-content: space-between;
}

#home-page {
  display: block;
}

#workspace-page-site-manager,
#workspace-page-writer {
  flex-direction: column;
  padding: 0rem 10rem 10rem;
}

.with-sidebars-page {
  display: flex;
  flex-direction: row !important;
  margin-top: 45px;
}

.with-single-sidebar-page {
  margin-left: 0px !important;
  margin-top: 50px;
}

/* #workspace-page-writer,
#workspace-page-editor,
#workspace-page-teacher {
  margin-top: 120px;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
} */

#file-purchase-page {
  padding-top: 70px;
}

#error-page {
  text-align: center;
  padding-top: 200px;
}

/*------------Account Page-----------*/

.account-details,
#searched-account-details {
  margin-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.account-menus {
  display: flex;
  justify-content: center;
}

/*Workspace-Site Manager*/
#workspace-page-site-manager {
  padding: 0px 20px 0px 20px;
}

/*-----------Workspace------*/

/*Workspace-Writer and Editors*/
#article-info {
  display: flex;
}

.article-info-and-buttons {
  width: inherit;
  z-index: 500000;
}

.article-category-topic-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.article-info input,
.article-info select,
.article-info option {
  width: 100%;
}

#article-content-container {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 100%;
}

.note-font :nth-child(3) {
  display: none;
}
.note-fontname,
.note-view {
  display: none;
}

.comment-section {
  display: flex;
  flex-direction: column;
}
#comment {
  background-color: var(--primary-tint);
  padding: 10px;
  border-radius: 5px;
  /* margin-top: -10px; */
  margin-bottom: 20px;
  width: 100%;
  word-wrap: break-word;
}

#featured-image {
  width: 500px !important;
  display: none;
}

.panel-heading {
  display: inline-block;
  position: fixed;
  top: 0;
  right: 0;
  margin-top: 130px !important;
  width: inherit;
  z-index: 500;
  margin-left: auto;
  margin-right: auto;
}

#article-show-elements-buttons-container {
  display: none;
  align-items: center;
}

#hide-article-details-button {
  display: none;
}
#summernote {
  margin-top: 500px !important;
  width: 100% !important;
  z-index: 100;
}

#article-title {
  width: 100% !important;
}

#article-category-topic-container {
  width: 30%;
}
#article-category,
#article-category option {
  width: 50% !important;
}

#article-topic {
  width: 50% !important;
}

#comment-input {
  width: 100% !important;
  height: 50px;
  resize: none;
}

.modal-dialog {
  padding: 20px !important;
  background-color: none;
  margin-top: 80px !important;
  box-shadow: none !important;
}

.note-dropzone {
  display: none !important;
}

.btn-fullscreen {
  display: none !important;
}

.note-btn {
  width: fit-content;
}

/* #summernote {
  display: none;
} */

.dropdown-style h1 {
  display: none;
}

.article-notes-mobile-tablet {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 10px;
}

.article-notes-mobile-tablet small {
  margin-bottom: -15px;
}

/*Workspace-Teacher/Developer*/

#workspace-inputs-message {
  display: none;
}

#tool-file-upload-message {
  display: none;
}

#update-bank-details-button {
  cursor: pointer;
  margin-top: 5px;
  margin-bottom: 10px;
}

#bank-details,
#review-schedules {
  display: none;
  margin-top: 10px;
}

#file-purchases {
  margin-top: 20px;
}

#purchase-item {
  display: flex;
  flex-direction: column;
  box-shadow: var(--back-shadow);
  padding: 10px;
  border-radius: 10px;
}

#payment-pop-up {
  margin-top: 10px;
}

#file-title {
  width: auto;
}
#teacher-file {
  outline: solid 1pt black;
}
#file-category,
#file-category option,
#file-access-type,
#file-access-type option {
  width: 100% !important;
}

#file-description {
  width: 100%;
  min-height: 250px;
  resize: none;
}

#file-shared-with {
  width: 100% !important;
}

#file-amount {
  width: 100px !important;
}

#file-icon {
  width: 500px !important;
  display: none;
}

#file-upload-dev {
  border-radius: 10px;
  box-shadow: var(--back-shadow);
}

#file-upload-teacher {
  width: 100%;
  height: 100px;
  padding: 100px;
  margin-top: 50px;
}

#tool-file-upload-container,
#content-upload-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: -20px;
}

#tool-file-upload {
  box-shadow: var(--back-shadow);
  border-radius: 5px;
  cursor: pointer;
}

#tool-file-upload-submit-button {
  width: 150px !important;
  padding: 15px;
  margin-bottom: 7px;
}

/* #file-upload-dev {
  width: auto;
  height: auto;
  margin-bottom: 50px;
} */

.pop-up-message {
  margin-bottom: 100px;
}

#tool-title {
  margin-bottom: -10px;
}
#description {
  width: 100%;
  min-height: 250px;
}

.purchase-details {
  display: flex;
  flex-direction: row;
  gap: 100px;
}

.purchase-notes {
  width: 400px;
}

#purchase-form {
  width: 350px;
}
.purchase-update {
  padding-top: 50px;
}

/*Workspace-School*/
#research-title {
  width: 100% !important;
}

.title-attachment-buttons-container {
  display: flex;
  gap: 10px;
  width: 100%;
}

#research-date,
#research-category,
#research-category option {
  width: 100% !important;
}

#research-proponents {
  width: 100% !important;
}

.date-category-proponents-container {
  display: flex;
  gap: 10px;
  width: 100%;
}

.date-category-proponents-container div {
  width: 100%;
}

#research-abstract {
  width: 100%;
  min-height: 250px;
  resize: none;
}

/*Home Page*/

/*Articles Page*/
#live-article-details-container {
  display: inline-block;
  margin-top: 10px;
  border-bottom: var(--primary-base) solid 1px;
  margin-bottom: 5px;
  width: 100%;
}

#live-article-details-container div {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  gap: 10px;
}

.live-article-details {
  background-color: var(--primary-base);
  color: white;
  border-radius: 5px;
  padding: 2px 5px;
}

.category-articles-container {
  display: block;
  margin-top: 80px;
}

.category-article {
  cursor: pointer;
  display: flex;
  width: 100%;
  gap: 20px;
}

.category-article a {
  width: 33%;
}

.article-content,
.article-content p,
.article-content span,
.article-content a {
  font-size: var(--text-base) !important;
}

/*Researches or Teacher Files Page*/

.live-content-details-container {
  display: flex-box;
  /* display: none; */
  margin-bottom: 20px;
}

.show-details {
  display: none;
}

.details-container {
  display: flex;
  gap: 20px;
}

.live-content-title {
  margin-top: -5px;
}

/*Search Page*/

.search-page-search-container {
  padding-top: 20px;
}

.search-page-navigation-container {
  display: inline;
}

.search-page-navigation-container a {
  margin-bottom: 10px;
}

.indicator {
  display: none;
}

#tags-container,
#shared-with-container {
  box-shadow: var(--back-shadow);
  padding: 20px;
  border-radius: 10px;
}

#searched-user,
#searched-tag,
#new-tag {
  outline: var(--primary-base) !important;
}

.sm-list-record-details {
  width: 350px !important;
  box-shadow: var(--back-shadow);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 10px;
}

.thread-message-recipient {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}

.thread-message-content-recipient {
  background-color: rgb(236, 236, 241);
  padding: 5px;
  border-radius: 10px;
  color: rgb(0, 0, 0);
  max-width: 50%;
  overflow-wrap: break-word;
}

.thread-message-sender {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.thread-message-content-sender {
  background-color: var(--primary-base);
  padding: 5px;
  border-radius: 10px;
  color: white;
  max-width: 50%;
  overflow-wrap: break-word;
}

.comment-sender {
  margin-right: 25px;
  margin-bottom: -25px;
}

.comment-recipient {
  margin-left: 25px;
  margin-bottom: -25px;
}
.sm-list-record-details {
  height: fit-content;
}

.counter {
  color: var(--tertiary-base);
  margin-left: -5px;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  padding: auto;
}
