:root {
  --primary-color: #1d7873;
  --secondary-color: #ffffff;
  --header-title: #444;
  --header-subtitle: #8a96a6;
  --text-color: #dddee1;
  --text-color-2: #333333;
  --text-color-3: #9d9d9d;
  --text-color-4: #3f3f3f;
  --background-main-color: #f6f7fb;
  --background-secoundary-color: #ffffff;
  --background-trith-color: #f9f9f9;
  --border-color: #eee;
  --border-color-2: #c0ccdc;
  --border-details: #e0e0e0;
  --login-background-color: rgba(255, 255, 255, 0.4);
  --slider-color: #e5e9ed;
  --slider-color-2: #1d7873;

  --input-border: #c0ccdc;
  --input-border-focus: #8a96a6;
  --input-background: #f6f7fb;
  --border-color-3: #6e7885;
  --table-hover-background: #ebfffe;

  --pagination-text: #181818;
  --pagination-text-disabled: #c1ccdc;
  --pagination-background: #ffffff;
  --pagination-background-selected: #e5e9ed;
  --pagination-border: #e5e9ed;
  --pagination-opacity-hover: 0.8;

  --pandora-green-color: #82b92e;

  --gradient-color: #82b92e;
  --gradient-color-2: #1d7873;

  --button-background-color: #bcfd49;
  --button-text-color: #121212;
  --button-border-color: #ade745;
  --button-background-color-secondary: #6e7885;
  --button-text-color-secondary: #fff;

  --button-text-color-secondary: #fff;
  --button-background-color-secondary: #6e7885;
  --button-border-color-secondary: #6e7885;

  --color-background-package: #d6edff;

  --titlebar-background: #1e3c47;

  --box-shadow-color: rgba(0, 0, 0, 0.1);
  --box-enabled: #82b92e;
  --box-disabled: #e63c52;
  --box-pending: #4f69ff;

  --hover-copy-button: #3a3f46;
  --title-primary-color: #14524f;
  --title-secondary-color: #161628;
}

@font-face {
  font-family: "Pandora-Regular";
  src: url("fonts/Pandora-Regular.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Pandora-Light";
  src: url("fonts/Pandora-Light.woff") format("woff");
  font-weight: 400;
}

@font-face {
  font-family: "Pandora-Bold";
  src: url("fonts/Pandora-Bold.woff") format("woff");
  font-weight: 400;
}

* {
  font-family: "Pandora-Regular";
  line-height: 16pt;
}

body {
  background-color: var(--background-main-color);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: #333;
  -webkit-font-smoothing: initial;
  text-rendering: optimizeLegibility;
  font-size: 14px;
}

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

/* HEADER */

header.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 1px 1px 5px #dbdbdb;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  flex-direction: column;
  align-items: center;
}

div.warning-header {
  background-color: #fefc99;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10pt;
}

div.header {
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 1030px;
  height: 83px;
}

img.main_logo {
  width: 234px;
  height: 44px;
}

div.menu-bar {
  margin-left: 70px;
  margin-right: 30px;
  display: flex;
  justify-content: flex-end;
}

ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

ul.menu > li {
  display: inline-block;
  padding-left: 30px;
}

img.user_icon {
  width: 14px;
  height: 14px;
  padding-bottom: 2px;
}

img.config_icon {
  width: 14px;
  height: 14px;
  padding-top: 4px;
}

img.help_icon {
  width: 20px;
  height: auto;
  padding-top: 4px;
}

div.header_upload {
  display: flex;
  flex-direction: row;
  align-items: center;
}

div.header_upload > a {
  cursor: pointer;
  color: var(--text-color-4);
  transition: color 0.3s ease;
  font-family: "Pandora-Bold";
  margin-right: 20px;
}

div.header_server {
  margin-right: 10px;
  padding-top: 2px;
}

div.header_config > a {
  cursor: pointer;
  color: var(--text-color-4);
  transition: color 0.3s ease;
  font-family: "Pandora-Bold";
  margin-right: 10px;
}

div.header_register > a {
  cursor: pointer;
  color: var(--text-color-4);
  transition: color 0.3s ease;
  font-family: "Pandora-Bold";
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 5px;
  margin-right: 20px;
}

div.header_login > a {
  padding: 8px 20px;
  background-color: #1d7874;
  max-height: 15px;
  border-radius: 100px;
  cursor: pointer;
  color: #ffffff;
  transition: color 0.3s ease;
  font-family: "Pandora-Bold";
}

div.header_language > form > select {
  font-family: "Pandora-Bold";
  border: 0px;
  cursor: pointer;
  margin-left: 15px;
}

/* LOGIN */

div#login {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
}

.form_login {
  height: 100%;
  width: 40vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 300px;
}

.container_login_out {
  height: 100%;
  min-width: 300px;
  margin: 0;
  background: var(--login-background-color);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.container_login_in {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.login_image_container {
  width: 300px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.input_login {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  width: 300px;
  margin-bottom: 20px;
  border-radius: 3px;
}

.login_div_input {
  width: 100%;
  background: var(--background-secoundary-color);
  border-radius: 5px;
}

input.login {
  background-color: var(----background-main-color);
  border: 0px;
  color: #343434;
  border-radius: 3px;
  width: 100%;
  height: 40px;
  font-size: 10pt;
  padding: 0px 0px 0px 8%;
  background-repeat: no-repeat;
  background-size: 27px;
  background-position: right 10px bottom 50%;
  box-sizing: border-box;
}

input.login:-webkit-autofill,
input.login:-webkit-autofill:hover,
input.login:-webkit-autofill:focus {
  -webkit-text-fill-color: #333;
  caret-color: #333;
  -webkit-box-shadow: 0 0 0px 1000px var(--background-secoundary-color) inset;
  transition: background-color 5000s ease-in-out 0s;
}

div.login-div-pass {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.login_div_button {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 300px;
  border-radius: 3px;
  flex-wrap: nowrap;
  align-items: center;
}

input.login_button {
  flex-direction: row;
  min-width: 300px;
  max-width: 300px;
  width: 300px;
  height: 50px;
  font-family: Arial, Helvetica, sans-serif;
  align-items: center;
  line-height: 24px;
  color: #fff;
  border: 0px;
  border-radius: 15px;
  padding: 0 10px;
  cursor: pointer;
  background: linear-gradient(
    90deg,
    var(--gradient-color) 0%,
    var(--gradient-color-2) 100%
  );
  border: 0px;
  margin-bottom: 20px;
  font-weight: bold;
}

a.login_link:hover {
  color: var(--pandora-green-color);
}

/* FOOTER */

.page_footer {
  position: relative;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ccc;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0px;
  margin-bottom: 0px;
  background-color: #ffffff;
  background-position: 50%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
}

.footer_content {
  width: 90%;
  max-width: 1170px;
}

.footerfms {
  max-width: 1170px;
  margin: auto;
  margin-bottom: 40px;
}

.footerfila {
  display: flex;
  justify-content: space-between;
}

.footertitle {
  font-family: Pandora-Bold;
  color: #333333;
  font-size: 17px;
  margin-bottom: 0px;
}

.footerbloquelinks {
  display: flex;
  border-top: 1px solid #eaeaea;
  padding-top: 10px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  min-width: 160px;
}

.footerlinks {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}

.footerlinks > a {
  color: #697380;
}

.footerlowerrow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
}

.footeritsm {
  max-width: 33%;
  margin-bottom: 40px;
}

.footerrc {
  max-width: 33%;
  margin-bottom: 40px;
}

.footerbanner {
  background-image: url(https://pandorafms.com/manual/!current/lib/tpl/pandora02/assets/images/free-trial.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  padding: 20px;
  max-height: 230px;
  max-width: 33%;
  height: 190px;
}

.footerbannertitle {
  font-family: Pandora-Bold;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
  margin-bottom: 40px;
  margin-top: 0px;
}

.footerbannercta {
  font-family: Pandora-Bold;
  font-size: 16px;
  line-height: 1em;
  color: #ffffff;
  padding: 10px 15px;
  background-color: #82b92f;
  border-radius: 5px;
  text-decoration: none;
}

/* PAGE */

.page_classic {
  padding-top: 125px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  background-image: linear-gradient(
    180deg,
    rgba(201, 253, 116, 0.15) 0%,
    #ffffff00 250px
  );
  padding-bottom: 50px;
}

#main {
    margin: 0 auto;
}

.flex {
    display: flex;
}

.column {
    flex-direction: column;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.min-h-420px {
    min-height: 420px;
}
input,
textarea,
select {
  background-color: #ffffff;
  border: 2px solid #c0ccdc;
  border-radius: 6px;
  height: 38px;
  /*font-family: "lato";*/
  font-size: 12px;
  color: #333333;
  padding-left: 12px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* manage */
div#main {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  min-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  div#main {
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    max-width: calc(100vw - 35%);
    min-width: 1200px;
    margin: 0 auto;
  }
}

div#footer {
  min-width: 1200px;
}

#menu_tab_frame_view {
  top: 120px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  box-sizing: border-box;
  padding-bottom: 10px;
  padding-top: 5px;
}

.menu_tab_left_bc {
  flex-direction: column;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  min-width: fit-content;
}

.breadcrumbs_container {
  padding-left: 0;
  text-indent: 0;
  color: #848484;
  font-size: 10pt;
  font-weight: 500;
}

#menu_tab_left .mn,
#menu_tab_left ul,
#menu_tab ul {
  color: #343434;
  padding: 0px 0px 0px 0px;
  list-style: none;
  margin: 0px 0px 0px 0px;
}

#menu_tab_left li.view {
  margin-left: 0;
  padding-bottom: 2px;
  white-space: nowrap;
}

#menu_tab {
  display: flex;
}

#menu_tab > ul.mn {
  display: inline-flex;
  flex-direction: row-reverse;
  list-style: none;
}

#menu_tab li.nomn,
#menu_tab li.nomn_high {
  padding-right: 8px;
  padding-left: 8px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  margin-top: 0;
  min-width: 30px;
  min-height: 50px;
  max-height: 53px;
  text-align: center;
}

#menu_tab_left li a,
#menu_tab_left li span {
  color: #161628;
  font-size: 15px;
}

#menu_tab .mn li {
  float: right;
  position: relative;
  margin: 0px 0px 0px 0px;
}

#menu_tab .mn li a {
  display: block;
  text-decoration: none;
  padding: 0px;
  margin: 0px;
  padding-top: 6px;
}

#menu_tab li.nomn.tab_operation img,
#menu_tab li.nomn.tab_godmode img,
#menu_tab li.nomn_high.tab_operation img,
#menu_tab li.nomn_high.tab_godmode img {
  margin: 10px auto;
}

button.buttonButton.secondary,
button.submitButton.secondary {
  background-color: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

button.buttonButton,
button.submitButton {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  height: 45px;
  font-size: 14px;
  align-items: center;
  line-height: 24px;
  box-shadow: 0px 3px 6px #c7c7c7;
  color: #fff;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 0 10px;
  cursor: pointer;
}

button.buttonButton.mini, button.submitButton.mini {
    height: 32px;
    border: 2px solid var(--primary-color);
}
button.buttonButton > div.mini:not(.unset),
button.submitButton > div.mini {
    width: 1.5rem;
    height: 1.5rem;
}

button.buttonButton:not(.secondary):not(.link):not(.onlyIcon),
button.submitButton:not(.secondary):not(.link):not(.onlyIcon) {
    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        var(--primary-color) 49%,
        #1d7873 50%,
        #1d7873 100%
    );
    background-size: 202% 1px;
    transition: ease-in 0.3s;
}

button.buttonButton:hover,
button.submitButton:hover {
    background-position: -100% 0 !important;
}

button.buttonButton:active,
button.submitButton:active {
    transition: ease-in 50ms;
    border: 2px solid #57ea82;
}

button.buttonButton > div:not(.unset),
button.submitButton > div {
    background-color: #fff;
    width: 2rem;
    height: 2rem;
    margin-left: 1rem;
}

.mt-17px {
    margin-top: 17px;
}

input#submit-srcbutton {
    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        var(--primary-color) 49%,
        #1d7873 50%,
        #1d7873 100%
    );
    background-size: 202% 1px;
    transition: ease-in 0.3s;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    height: 45px;
    font-size: 14px;
    align-items: center;
    line-height: 24px;
    box-shadow: 0px 3px 6px #c7c7c7;
    color: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0 10px;
    cursor: pointer;
}

.flex-gap-15 {
    gap: 15px;
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.font_11 {
    font-size: 11pt;
}

button span {
  pointer-events: none;
}

div.ui-dialog-buttonset > button.ui-button.ui-corner-all.ui-widget {
    background-color: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    font-size: 11pt;
}
  
div.ui-dialog-buttonset > button.ui-button.ui-corner-all.ui-widget:hover {
background-color: #1d7873;
border-color: #1d7873;
}
  
div.ui-dialog-buttonset > button.ui-button.ui-corner-all.ui-widget:active {
background-color: #0d312f;
border-color: #0d312f;
}

.invisible {
  display: none ;
}

.invisible_important {
display: none !important;
}

.action-buttons {
    display: flex;
    align-items: center;
}

#principal_action_buttons {
    z-index: 6;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    background: #ffffff;
}

#principal_action_buttons.small_box_action_buttons {
  padding:15px 10px;
}

.action-buttons-right-forced {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    float: right;
}

/* Notifications */
div.notifications {
    width: 500px;
    position: fixed;
    z-index: 10;
    top: 150px;
    right: 10px;
    max-height: calc(100% - 130px);
    overflow: auto;
    opacity: 1;
}

div.login_error_div {
    width: 600px;
    position: fixed;
    z-index: 10;
    top: 25px;
    right: 25px;
    max-height: calc(100% - 130px);
    overflow: auto;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #f85858;
}

div.login_error_div,
div.login_error_div * {
    text-align: left;
    color: #f85858;
    background-color: #ffe8e8;
}

div.notifications::-webkit-scrollbar {
    -webkit-appearance: none;
}

div.notifications::-webkit-scrollbar:vertical {
    width: 5px;
}

div.notifications::-webkit-scrollbar-button:increment,
div.notifications::-webkit-scrollbar-button {
    display: none;
}

div.notifications:hover::-webkit-scrollbar-thumb {
    background-color: #6c7587;
    border-radius: 2.5px;
    opacity: 0.5;
    height: 50px;
}

div.notifications::-webkit-scrollbar-track {
    border-radius: 10px;
}

div.notifications > *,
div.widget-notification > * {
    display: grid;
    font-weight: normal;
    font-size: 12px;
    margin: 0px;
    box-shadow: 0 3px 6px 0 rgb(0 0 0 / 13%);
    margin-bottom: 15px;
    margin-right: 15px;
}

.dark-theme .notifications > *,
.dark-theme .widget-notification > * {
    filter: brightness(0.8);
}

div.notifications > *,
div.widget-notification > * {
    font-size: 15px !important;
    font-weight: 500;
}

div.notifications > * > span.notification-title-msg,
div.widget-notification > * > span.notification-title-msg {
    font-size: 14pt;
    margin-bottom: 2px;
}

div.notifications .suc *,
div.widget-notification .suc * {
    color: #5a8629;
}

div.notifications .suc,
div.widget-notification .suc {
    color: #5a8629;
    background: #d9efee;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #5a8629;
}

div.notifications .info_message *,
div.widget-notification .info_message * {
    color: #006f9d;
}

div.notifications .info_message,
div.widget-notification .info_message {
    color: #006f9d;
    background: #d6edff;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #006f9d;
    font-size: 15px;
    font-weight: 500;
}

div.notifications .error *,
div.widget-notification .error * {
    color: #f85858;
}

div.notifications .error,
div.widget-notification .error {
    color: #f85858;
    background: #ffe8e8;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #f85858;
}
.standard-icon {
    width: 20px;
    height: 20px;
}

.fade-out-6s {
    animation: fadeOut 0.5s forwards 6s;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; display: none; }
}

@-webkit-keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; display: none; }
}

.spinner-fixed {
  position: absolute;
  left: 45%;
  top: 40%;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: linear-gradient(#82b92e, #c1ccdc);
  animation: animate 1.2s linear infinite;
  margin: auto;
  margin-bottom: 40px;
  text-align: initial;
}

#principal_action_buttons {
  z-index: 6;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.action-buttons {
  display: flex;
  align-items: center;
}

.action_buttons_background_mask {
  width: -webkit-fill-available;
  width: -moz-available;
  position: absolute;
  left: 0;
  top: 0;
  height: auto;
  background-color: #fff;
  border-top: 1px solid #e5e9ed;
}

.action_buttons_right_content {
  flex: 1;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#principal_action_buttons > form:first-child, .action_buttons_right_content > div {
  height: 62px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  margin-left: 1em;
}

.dataTables_length > label {
  color: #000;
}

select {
  vertical-align: middle;
  border: 1px solid #ddd;
}

button div.pending, button div.next {
  mask: url(images/validate.svg) no-repeat center / contain;
  -webkit-mask: url(images/validate.svg) no-repeat center / contain;
}

#principal_action_buttons.action-buttons {
  gap: 15px;
}
#principal_action_buttons.action-buttons > button {
  flex: none;
}

button.buttonButton > div:not(.unset), button.submitButton > div {
  background-color: #fff;
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}

div.main_menu_icon, img.main_menu_icon[src$=".svg"] {
  width: 20px;
  height: 20px;
}

#menu_tab li.nomn_high::before, #menu_tab li:hover:not(.menu-dots-li)::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  width: 40px;
  height: 5px;
  margin-left: -5px;
  background-color: var(--primary-color);
  border-radius: 5px;
}

h3.info {
  background-color: #80bee6;
}

button div.search {
  mask: url(images/details3.svg) no-repeat center / contain;
  -webkit-mask: url(images/details3.svg) no-repeat center / contain;
}

button div.eye {
  mask: url(images/eye.svg) no-repeat center / contain;
  -webkit-mask: url(images/eye.svg) no-repeat center / contain;
}

button div.close {
  mask: url(images/close.svg) no-repeat center / contain;
  -webkit-mask: url(images/close.svg) no-repeat center / contain;
}

button div.update {
  mask: url(images/update.svg) no-repeat center / contain;
  -webkit-mask: url(images/update.svg) no-repeat center / contain;
  width: 20px;
}

button div.upload {
  mask: url(images/upload.svg) no-repeat center / contain;
  -webkit-mask: url(images/upload.svg) no-repeat center / contain;
}

button div.download {
  mask: url(images/download.svg) no-repeat center / contain;
  -webkit-mask: url(images/download.svg) no-repeat center / contain;
}

button div.edit {
  mask: url(images/edit.svg) no-repeat center / contain;
  -webkit-mask: url(images/edit.svg) no-repeat center / contain;
}

button div.add {
  mask: url(images/add.svg) no-repeat center / contain;
  -webkit-mask: url(images/add.svg) no-repeat center / contain;
  width: 25px;
}

#menu_tab li img.tab_operation {
  margin: 10px auto;
}

.floating_form .p-switch {
  margin-top: -8px;
}

.pdd_0px {
  padding: 0px !important;
}

.p-switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
  margin-right: 1em;
}

.floating_form .field_half_width textarea, .floating_form .field_half_width input, .floating_form
  .field_half_width
  span.select2.select2-container.select2-container--default, .floating_form .field_quarter_width textarea, .floating_form .field_quarter_width input, .floating_form
  .field_quarter_width
  span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

td input[type="checkbox"] {
  padding: 10px;
  margin-top: 2px;
  display: table-cell;
  height: 15px;
}

.p-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

input:checked + .p-slider {
  background-color: #1d7873;
}

.p-slider {
  position: absolute;
  cursor: pointer;
  top: 5px;
  left: 5px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
  height: 14px;
  width: 33px;
  padding: 0 !important;
}

input:checked + .p-slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

.p-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: -1px;
  bottom: -4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 3px 6px #e5e9ed;
  border: 1px solid #e5e9ed;
}

.white_table_flex {
  background-color: var(--secondary-color);
  padding: 25px;
}

.white_table_flex.white_box td {
  font-weight: bold;
  color: #161628;
  text-align: left;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 16px;
}

.margin-tb-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.label-input{
  font-size: 14px;
  margin-bottom: 5px;
}

#profile_form,
#blacklist_form {
  border-radius: 10px;
}
#user_form,
#general_settings, {
  border-radius: 10px;
}
.div-datatable-action-buttons {
  padding: 5px;
  border-radius: 10px;
}
.dataTables_wrapper.no-footer {
  padding: 5px;
}

select#profile {
  width: -moz-available;
  width: -webkit-fill-available;
}

tr:has(td .blocked-user) {
  font-style: italic;
  color: #aaaaaa;
}

button div.back {
  mask: url(images/go-back@svg.svg) no-repeat center / contain;
  -webkit-mask: url(images/go-back@svg.svg) no-repeat center / contain;
  background-color: var(--primary-color) !important;
  width: 25px;
}

a.table_action_buttons {
  margin-right: 5px;
  display: inline-block;
}

div[role="dialog"] {
  z-index: 1115;
}

select[multiple] {
  min-height: 10em;
}

input[type="text"][readonly] {
background-color: var(--border-details);
}

#double_auth {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#code_input_message {
  margin-top: 9px;
  margin-left: 6px;
  color: var(--box-disabled);
}

fieldset {
  background-color: var(--secondary-color);
  border: 1px solid #e5e9ed;
  padding: 0.5em;
  margin-bottom: 20px;
  position: relative;
  border-radius: 5px;
}

fieldset legend {
  color: #333;
  text-align: left;
  line-height: 16pt;
  font-size: 1.1em;
  font-weight: bold;
  padding: 0px 10px 0px 10px;
}

select[multiple] option {
  padding: 6px 12px;
  margin: 0px -10px;
}
.dataTables_wrapper.no-footer,#user_form {
  min-height: 500px;
}

.image-upload-container {
  position: relative;
  display: inline-block;
}

.edit-overlay {
  position: absolute;
  bottom: 0px;
  right: 0px;
  opacity: 0.5;
  background-color: rgba(255, 255, 255);
  border-radius: 10px;
  padding: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: opacity 0.3s;
}

.edit-overlay:hover {
  opacity: 1;
  background-color: rgba(250, 250, 250);
}

.remove-overlay {
  position: absolute;
  bottom: 45px;
  right: 0px;
  opacity: 0.5;
  background-color: rgba(255, 255, 255);
  border-radius: 10px;
  padding: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid #ccc;
  transition: opacity 0.3s;
}

.remove-overlay:hover {
  opacity: 1;
  background-color: rgba(250, 250, 250);
}

.edit-icon {
  color: #555;
}

.hidden-file-input {
  display: none;
}

.image-preview-container {
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-preview {
  width: 100%;
}

.inputFile {
  background-color: #f6f7fb;
  height: 16px;
  font-size: 12px !important;
  padding: 5.5pt 20pt;
  cursor: pointer;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color);
  box-shadow: none;
  border-radius: 50px;
  align-self: baseline;
}

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

.inputFileSpan {
  padding-left: 1em;
  font-family: monospace;
}

.file-input-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-display-preview {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.file-display-field {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.file-display-remove {
  cursor: pointer;
  width: 25px;
  height: 25px;
}

.file-button {
  align-self: center;
  width: auto;
  min-width: 110px;
  height: 35px;
  border-radius: 20px;
  background-color: #f6f7fb;
  color: #1d7874 !important;
  border: 2px solid #1d7874;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2px;
}

/* SELECT2 */
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 5px 10px 10px !important;
  min-height: 100px;
  max-height: 250px;
  overflow: auto !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4 !important;
  padding: 0.3em 0.6em !important;
  color: var(--text-color-2);
  font-size: 1em;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 1.2em;
  margin-right: 5px !important;
  margin-top: 1px;
}

.select2-results>.select2-results__options>.select2-results__option.select2-results__option--highlighted {
  background-color: #d9efee;
  color: #2b3332;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
  text-align: left;
  min-width: 150px !important;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
  background-color: #f6f7fb !important;
  border: 2px solid #c0ccdc !important;
  border-radius: 6px !important;
  color: #2b3332 !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  cursor: pointer;
  /*font-family: "lato" !important;*/
  font-size: 12px !important;
}

.select2-container .select2-selection--single {
  height: 38px !important;
  padding-left: 4px !important;
  display: block;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple {
  height: 100% !important;
  padding-left: 0px !important;
}

.sg_source>.select2-container .select2-selection--multiple {
  width: 540px !important;
  height: 90px !important;
  overflow: overlay;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-selection__arrow b {
  top: 0 !important;
  left: 0 !important;
  border: 0 !important;
  height: 20px !important;
  margin-left: -8px !important;
  margin-top: 8px !important;
  position: absolute !important;
  width: 20px !important;
  background: url(../../images/dropdown-down.svg) no-repeat content-box !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
  line-height: 36px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #444 !important;
  line-height: 36px !important;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default.select2-container--focus>.selection>.select2-selection--single {
  border-color: #8a96a6 !important;
}

.select2-container--default>.selection {
  font-size: 14px;
}

/* FINISH SELECT2 */


/* Dropzone */
.form-upload-file-download,
.form-upload-file-download * {
  cursor: pointer !important;
}

.form-upload-file-download.dropzone {
  border: 2px dashed var(--border-color-3);
  background-color: var(--secondary-color);
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
}

.form-upload-file-download.dropzone,
.form-upload-file-download.dropzone * {
  font-size: 15px;
}

.form-upload-file-download.dropzone span {
  color: var(--primary-color);
  font-weight: 900;
}

.dz-upload {
  width: 0px;
  height: 8px;
  border-radius: 5px;
  background-color: var(--primary-color) !important;
}


.form-dropzone-buttons.flex-row-end.new-dropzone-class {
  width: 100%;
  justify-content: space-between;
}

.dropzone-container-previews.new-dropzone-class {
  margin-bottom: 20px;
}

.dropzone-container-previews.new-dropzone-class
  .dz-preview.dz-file-preview.preview-default-dropzone {
  background-color: var(--secondary-color);
  border: 2px solid var(--border-color-4);
  box-shadow: none;
  padding: 10px;
  min-width: unset;
}

.dropzone-container-previews.new-dropzone-class
  .dz-preview.dz-file-preview.preview-default-dropzone
  span.hide {
  display: initial;
  font-size: 13px;
  font-weight: 900;
  width: 100%;
}

.dropzone-container-previews.new-dropzone-class .close_dropzone {
  content: url("../styles/images/closeb.svg");
  width: 15px;
  height: 15px;
  top: 7px;
  right: 7px;
  background-color: unset;
  border: unset;
}

.dropzone-container-previews.new-dropzone-class
  .dropzone-template-preview
  .fi-content {
  font-size: 17px;
  line-height: 45px;
  text-align: end;
}

.dropzone-container-previews.new-dropzone-class
  .dropzone-template-preview
  .fi-content::before {
  content: ".";
}

.dropzone-container-previews.new-dropzone-class
  .dropzone-template-preview
  .fi:hover {
  transform: unset;
  cursor: unset;
}

.dropzone-container-previews.new-dropzone-class .preview-info-dropzone {
  margin-top: 5px;
}

.dropzone-container-previews.new-dropzone-class #label-preview_file,
.dropzone-container-previews.new-dropzone-class #label-textarea-description {
  display: none;
}

.dropzone-container-previews.new-dropzone-class .preview-description-dropzone {
  margin-left: 10px;
}

.dropzone-container-previews.new-dropzone-class .textarea-description {
  height: calc(100% - 4px);
  max-width: unset;
}

.dropzone-container-previews.new-dropzone-class .preview-button-dropzone {
  flex-direction: row-reverse;
  margin: 0;
}

.dropzone-container-previews.new-dropzone-class .preview-progressbar-dropzone {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.dropzone-container-previews.new-dropzone-class
  .preview-progressbar-dropzone
  .dz-text-size-file
  span:first-child {
  display: none;
}

.dropzone-container-previews.new-dropzone-class
  .preview-progressbar-dropzone
  .dz-text-size-file {
  margin-bottom: 0;
}

.dropzone-container-previews.new-dropzone-class
  .preview-progressbar-dropzone
  > div:last-child {
  /* width: calc(100% - 50px); */
  width: calc(100% - 50px);
}

.dropzone-container-previews.new-dropzone-class .dz-text-size-file .size {
  white-space: nowrap;
}

.dropzone-container-previews.new-dropzone-class .dropzone-button-start input {
  color: var(--primary-color) !important;
  font-weight: 900;
  font-size: 13px;
  line-height: 20px;
  height: 20px;
  background-color: unset !important;
  background-image: unset !important;
  border: 0 !important;
}



.form-dropzone-buttons {
  width: 90%;
  margin: 0 auto;
}

.dropzone.form-upload-file-download div.dz-message {
  margin: 0px;
}

.dropzone.form-upload-file-download .dz-preview.dz-image-preview {
  background-color: #3f3f3f;
}

.dropzone.form-upload-file-download .thumbnail-file {
  text-transform: uppercase;
  position: absolute;
  width: 100%;
  top: 100px;
  color: #000000;
  font-weight: bold;
  text-align: center;
}

.dropzone.form-upload-file-download .dz-preview .dz-remove {
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fff;
  font-weight: bolder;
  border: 2px solid #fff;
  width: 25px;
  height: 25px;
  border-radius: 25px;
  padding-top: 2px;
  padding-left: 1px;
}

.dropzone.form-upload-file-download .dz-preview .dz-details .dz-size {
  margin-bottom: 2em;
}

form.dropzone img.img_delete {
  cursor: pointer;
}

.dropzone-display-buttons-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.dropzone-container-previews {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.dropzone-upload-conf > div {
  float: inline-start;
  padding-left: 20px;
  padding-right: 15px;
}

.preview-default-dropzone {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 10px;
  margin: 10px;
  padding: 10px 0px;
  min-width: 270px;
  min-height: 165px;
  border: 1px solid #dadada;
  box-shadow: 3px 3px 5px -5px #3f3f3f;
}

.preview-default-dropzone img.close_dropzone {
  width: 30px;
  height: 30px;
  position: absolute;
  top: -10px;
  right: -10px;
  cursor: pointer;
  border: 2px solid #fff;
  background-color: #fff;
  border-radius: 50%;
}

.preview-default-dropzone .dropzone-template-preview img {
  border-radius: 5px;
}

.preview-default-dropzone .dz-text-size-file {
  margin-bottom: 8px;
}

.preview-default-dropzone .dz-progress {
  width: 100%;
  background-color: var(--background-main-color);
  height: 8px;
  border-radius: 5px;
  padding: 0px;
}

.preview-default-dropzone .preview-button-dropzone {
  margin-top: 15px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 90%;
}

.preview-default-dropzone form .preview-button-dropzone {
  width: 100%;
}

.preview-default-dropzone .preview-description-dropzone {
  margin-left: 30px;
}

.preview-default-dropzone .preview-description-dropzone textarea {
  max-width: 92%;
  min-height: 70px;
}

.preview-default-dropzone form .preview-description-dropzone textarea {
  max-width: 100%;
}

.preview-default-dropzone .preview-info-dropzone {
  display: flex;
  flex-direction: row;
}

.preview-default-dropzone .preview-button-dropzone input.upd,
.preview-default-dropzone .preview-button-dropzone input.btn {
  margin-top: 0px;
  margin-bottom: 0px;
  height: 30px;
  width: 100px !important;
}

.preview-default-dropzone .dropzone-template-preview img {
  width: auto;
  height: 88px;
}

.preview-default-dropzone .dz-error-message,
.preview-default-dropzone .dz-success-message {
  width: 100%;
  max-width: 400px;
  max-height: 80px;
  overflow: auto;
}

.preview-default-dropzone .dz-error-message {
  color: #ff3333;
}

.preview-default-dropzone .dz-success-message {
  color: #93c12c;
}

.preview-default-dropzone .dz-error-message span {
  white-space: pre-wrap;
}

.preview-default-dropzone .form-browser-downloads {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.preview-default-dropzone .form-browser-downloads select {
  width: 160px !important;
}

.dropzone-template {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.dropzone-template form {
  width: 100%;
}

.dropzone-template-actions .sub {
  width: 120px !important;
}

.dropzone-template-preview img {
  width: 100px;
}

.form-dropzone-buttons.flex-row-end.new-dropzone-class {
  width: 100%;
  justify-content: end;
}

.form-dropzone-buttons {
  width: 90%;
  margin: 15px auto;
}

.flex-row-end,
div.flex-row-end {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.form-dropzone-buttons div:nth-last-child(1) {
  display: flex;
}

#button-dropzone-cancel-all-btn {
  margin-right: 10px;
}

.w100p {
  width: 100%;
}

.w100px {
  width: 100px;
}

.w50px {
  width: 50px;
}

.w90p {
  width: 90%;
}

.mr-10px {
  margin-right: 10px;
}
.m-tb-5px {
  margin-top: 5px;
  margin-bottom: 5px;
}
.m-tb-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}
.w43p {
  width: 43%;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.icon_entries {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  object-fit: contain;
}
.space-between {
  justify-content: space-between;
}

.modal-entries {

}
.action_buttons_datepicker {
  position: initial !important;
}
#token_response {
  background-color: #ffffff;
  padding: 20px;
}
#token_response p {
  display: inline-block;
  word-break: break-all;
  width: 100%;
  margin-left: 5px;
}

/* Global Loader */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 35%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.global-loader.active {
    display: flex;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #1d7873;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.upload-form-label {
  font-weight: bold;
  font-size: 16px;
}

.upload-form-label-small {
  font-weight: bold;
  font-size: 13px;
}

.edit_entry_scope_box {
  width: 125px;
  margin-left: 15px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  padding: 8px 7px 7px 16px;
  border-radius: 5px;
  font-size: 12px;
}

img.close {
  cursor: pointer;
  width: 25px;
  height: 25px;
}

#filesDropzone {
  min-height: 50px;
}

.action-entry-buttons {
  position: sticky;
  bottom: -10px;
  z-index: 10;
  padding: 10px 10px 5px;
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 15px;
  border-top: 1px solid #e5e9ed;
}

.modal-label {
  font-weight: bold;
  padding: 15px 0px 10px;
}

.datatable-link:hover {
  color: var(--pandora-green-color);
}

.center {
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-container {
    background-color: #ffffff;
    padding: 15px 50px 40px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.register-container > form {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    width: 100%;
}

.register-container > form > div {
  width: 100%;
}

.register-container > form > div > label {
  font-weight: bold;
}

.register-captcha {
  display: flex;
  justify-content: center;
}

.register-captcha > div {
  width: auto;
}

.success-message {
    background-color: #ffffff;
    padding: 15px 50px 30px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.success-message a {
  color: var(--pandora-green-color);
}

.upload-form {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  border-radius: 15px;
  flex-direction: column;
  padding-top: 5px;
}

.reset-password-container {
    background-color: #ffffff;
    padding: 15px 50px 30px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.notfound {
    position: absolute;
    top: 125px;
    height: 650px;
    background-color: #ffffff;
}

.no-data-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.no-data-img {
    height: 200px;
    padding-top: 100px;
}

.dropdown-arrow {
    rotate: 270deg;
    width: 15px;
    padding-right: 6px;
}

fieldset {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

div.edit-my-user {
    margin-top: 55px;
    display: flex;
    justify-content: center;
}

.config-fieldset {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0px 15px 15px;
}

.configuration-label {
  font-weight: bold;
}

.action-buttons-configuration {
    padding: 5px 10px !important;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 1px, solid #e5e9ed;
}

.center {
  margin:auto;
}

.status_dot {
  width:20px;
  height:20px;
  border-radius: 50px;
}
.green_dot {
  background-color: var(--pandora-green-color);
}
.grey_dot {
  background-color: #999;
}

#languageForm {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

#languageForm > img {
  width: 20px;
}

code {
  background-color: #e4eeff;
  padding: 10px;
  border-radius: 5px;
}

.ent-download-msg {
  font-style: italic;
  margin-right: 20px;
  color: #f36201;
}

#token_response {
    background-color: var(--background-secoundary-color);
    border-radius: 4px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.13);
    border: 1px solid var(--border-color);
}

#token_response h1 {
    color: var(--text-color-4);
    font-family: "Pandora-Bold", sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
}

#token_response p {
    background-color: var(--background-main-color);
    padding: 15px;
    border-radius: 4px;
    color: var(--text-color-4);
    font-family: "Pandora-Regular", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-all;
    border: 1px solid var(--border-color-2);
    position: relative;
    max-width: 90%;
}

#token_response p:hover {
    background-color: var(--table-hover-background);
    transition: background-color 0.2s ease;
}

#token_response p::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-color-3);
    opacity: 0;
    transition: opacity 0.2s ease;
}

#token_response p:hover::after {
    opacity: 1;
}

div.header_search > a {
  cursor: pointer;
  color: var(--text-color-4);
  transition: color 0.3s ease;
  font-family: "Pandora-Bold";
  margin-right: 20px;
}
