﻿:root {
  --default-app-hover-color: #3bc4ff;
  --default-skill-color: #454dff;
  --default-activity-color: #F9F871;
  --default-font-color: #afcdff;
  --default-app-alt-line-color: #374458;
  --default-app-radius: 25px;
  --navbar-height: 50px;
  --default-app-padding: 12px;
  --default-app-sm-padding: 5px;
  --default-modal-color: #313f4fcc;
  --default-overlay-color: #00000020;
  --knolia-blue-1: #2affff;
  --knolia-blue-2: #18eaff;
  --knolia-blue-3: #3bc4ff;
  --knolia-blue-4: #4894ff;
  --knolia-blue-5: #454dff;
  --knolia-grayish-black: #171717; /* talvez eliminar */
  --knolia-dark-blue-1: #10133D;
  --knolia-dark-blue-2: #060714; 
  --knolia-rating-scale: #2c3749; 
  --orange: #e59700;
  /* --knolia-yellow-white: #fdffdf; */
  --knolia-yellow-white: #fcfeef;
  --knolia-gray: #a0a0a0;
}

.knolia-gradient-default,
.knolia-gradient-default-hover:hover {
  background: linear-gradient(145deg, var(--knolia-blue-1), var(--knolia-blue-5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.app-container-bg {
  background: linear-gradient(160deg, #313F4F, #253853);
}

* {
  -webkit-print-color-adjust: exact !important;
  /* Chrome, Safari, Edge */
  color-adjust: exact !important;
}

@page {
  margin: 0;
  size: 215mm 340mm;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  font-family: "Poppins", "Segoe UI";
  color: var(--default-font-color);
  font-size: 0.9em;
  overflow-y: auto;
}

img {
  max-width: 100%;
  display: block;
}

.group-frame {
  border: 1px solid;
  border-radius: 9px;
  padding: 10px;
}

.ddl-alt-padding {
  padding: var(--default-app-sm-padding) 10px !important;
}

.alt-ddl {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  cursor: pointer;
}

.div-modal {
  position: fixed;
  z-index: 1051;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Content */
.div-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--default-modal-color) !important;
  margin: auto;
  padding: 0;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  backdrop-filter: blur(6px);
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }

  to {
    top: 0;
    opacity: 1;
  }
}

.tele-success {
  text-align: center;
  color: var(--light-gray-color);
  background-color: rgb(35, 160, 50);
  border: solid 1px rgb(0, 140, 20);
  font-size: 10pt;
}

.tele-not-allowed {
  text-align: center;
  color: rgb(50, 0, 0);
  background-color: rgb(255, 85, 70);
  border: solid 1px orangered;
  font-size: 10pt;
}

.tele-info {
  text-align: left;
  background-color: #253853;
}

.tele-cancel {
  color: #969696 !important;
  border-color: #969696 !important;
}

.tooltip {
  position: absolute !important;
  padding: 6px 10px !important;
  /* max-width: 220px !important; */
  z-index: 9999 !important;
  font-size: 8pt !important;
  background-color: #2a282c !important;
  color: var(--light-gray-color) !important;
  opacity: 0.9 !important;
  text-align: center !important;
  border-radius: 10px;
  cursor: default;
}

.tooltip-left {
  text-align: left !important;
}


.scrollbar {
  overflow-y: auto;
}

.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.scrollbar::-webkit-scrollbar-track {
  background: transparent;
  box-shadow: none;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--knolia-gray); /* Gray */
  border-radius: 10px;
}

.div-import-help>i {
  margin-left: 5px;
}

.div-import-help>u {
  margin-left: 5px;
}

.top {
  height: 48vh;
  min-width: 10px;
  display: flex;
  overflow-y: hidden;
}

.separator {
  background-color: var(--knolia-gray);
  height: 1px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: row-resize;
  padding: 1px 0;
  border-radius: 5px;
}

.bottom {
  height: 48vh;
  min-width: 10px;
  display: flex;
  /* overflow-y: hidden; */
}

.bg-alt-line {
  background-color: var(--default-app-alt-line-color);
}

.line-clamp {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  word-break: break-all;
}

.line-clamp-1 {
  line-clamp: 1;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  line-clamp: 2;
  -webkit-line-clamp: 2;
}

.input-line-clamp {
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.page-container {
  padding: 1%;
}

.new-message-animate {
  animation: new-message 1000ms ease-in-out infinite;
}

.replied-message {
  animation: new-message 1000ms ease-in-out;
  animation-iteration-count: 3;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.default-radius {
  border-radius: var(--default-app-radius);
  padding-left: 10px;
  padding-right: 10px;
}

.div-default-title {
  font-weight: bold;
  font-size: 1.4em;
  margin-left: 4px;
}

@keyframes new-message {
  0% {
    opacity: 1;
  }

  50% {
    opacity: .1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}


@media screen and (max-width: 765px) {
  .scrollbar::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }

  .group-frame  {
    padding: 5px;
  }
}
