/* @import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Koulen&family=Lato&family=Nunito&family=Playfair+Display:ital@1&family=Prata&family=Raleway:ital,wght@1,100&family=Roboto&family=Roboto+Condensed&family=Teko&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");
/* 
#120F3C   dark blue
#9E6600 #FFDE62  gradient*/
/*old gradient 
  #ffde62 
  #b58225
*/
/*new blue #0098DB 
            #0083bb
  new orange #FF7F38
            #dc6d31
*/
:root {
  --primary: #0066cc;
  --primary-dark: #120f3c;
  --secondary: #7b3ff2;
  --gradient: #0066cc;
  --gradient2: #120f3c;
  --accent: #00a8ff;
}

body,
html {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
a {
  cursor: pointer;
  text-decoration: none;
}

.container {
  width: auto;
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
}
.btn {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  background-color: var(--primary);
  color: #fff;
  padding: 12px 30px;
  border: solid 2px #fff;
  border-radius: 10px;
  /* transition: 300ms; */
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn.secondary {
  background-color: var(--secondary);
  color: var(--primary);
}
.btn.secondary:hover {
  background-color: var(--primary);
  color: white;
}

.btn.dark {
  background-color: #555555;
  color: #fff;
}

.btn.light {
  background-color: #bdbdbd;
  color: #000;
}

.btn.light:hover {
  /* background-color: var(--secondary); */
  background: linear-gradient(var(--gradient), var(--gradient2));
  color: var(--primary);
}

.btn.blue {
  background-color: #164185;
  /* background-color: #1a80b5; */
  color: #fff;
  border: solid 2px #fff;
}

.btn:hover {
  color: #fff;
  /* background-color: var(--secondary); */
  background: linear-gradient(var(--gradient), var(--gradient2));
  border: solid 2px #fff;
}
/*.btn.dark:hover {
  color: #fff;
  background-color: #000;
}
 .btn.blue:hover {
  color: #fff;
  background-color: #000;
} */
.btn:disabled,
.btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  background-color: #cccccc;
  color: #666666;
  border: solid 2px #fff !important;
}
h1 {
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--primary);
}
h2 {
  font-size: 28px;
  margin-bottom: 0.5em;
  color: var(--primary);
}
h3 {
  font-size: 16px;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.bold {
  font-weight: bold;
}
.responsive {
  width: 100%;
  /* max-width: 400px;  */
  height: auto;
}

.image-frame {
  background-color: rgb(210, 210, 210);
  border-radius: 60px;
  max-height: 400px;
  overflow: hidden;
}
input:not([type="radio"]),
.form-container select {
  display: block;
  border: 2px solid #e7e7e7;
  width: 100%;
  padding: 10px;
  /* margin: 10px auto; */
  border-radius: 5px;
  font-family: "Lato", Nunito, sans-serif;
  background: white;
}
textarea {
  width: 100%;
  padding: 10px;
  resize: none;
  font-family: "Lato", Nunito, sans-serif;
  border: 2px solid #e7e7e7;
  border-radius: 5px;
  background: white;
}
input:disabled,
textarea:disabled {
  background: #eee;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.h-75 {
  height: 75%;
}
.h-80 {
  height: 80%;
}

.header {
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid #ccc;
  position: fixed;
  top: 0;
  z-index: 2;
  /* overflow-x: auto; */
}
.header h2 {
  font-size: 24px;
  margin-bottom: 0;
  font-weight: normal;
}

.data-circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 4px;
  min-width: 70px;
}
.data-circle {
  box-sizing: content-box;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  padding: 4px;
  background: #fff;
  border: 3px solid #000;
  color: #000;
  text-align: center;
  font:
    14px Arial,
    sans-serif;
}
.data-circle-number {
  font-size: 12px !important;
}

.logo {
  height: 60px !important;
  padding: 0 10px !important;
}

.wrapper {
  display: flex;
  position: absolute;
  /* position: relative; */
  margin-top: 70px;
  width: 100%;
}
.footer {
  background-color: var(--primary-dark);
}
.sidebar {
  /* height: 100%; */
  width: 200px;
  position: fixed;
  z-index: 11;
  top: 70px;
  bottom: 0;
  left: 0;
  /* background: #002437; */
  background: var(--primary-dark);
  overflow-x: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  border-right: 2px solid white;
  transition: all 0.3s;
}

.sidebar a {
  padding: 12px 14px;
  text-decoration: none;
  font-size: 14px;
  color: #818181;
  display: block;
  margin: 2px 6px;
  border-radius: 20px;
  /* font-weight: bold; */
  /* text-align: center; */
}
.sidebar a.active {
  /* background: var(--secondary); */
  background: linear-gradient(var(--gradient), var(--gradient2));
  font-weight: bold;
  color: #fff;
  /* color: #000; */
}
.sidebar a:hover:not(.active) {
  color: #f1f1f1;
}
.main {
  background-color: #f7f7f7;
  transition: all 0.3s;
  width: 100%;
}

.form-container {
  position: relative;
  border-radius: 20px;
  background-color: white;
}
.form-loader,
.form-error {
  background: white;
  opacity: 0.9;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-error {
  display: none;
}
.form-error h2 {
  color: red;
}
@media screen and (max-width: 575px) {
  .sidebar {
    /* display: none; */
    margin-left: -201px;
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.1);
  }
  .main {
    margin-left: 0;
    width: 100%;
  }
  .open {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .data-circles {
    position: fixed;
    bottom: 0;
    left: 50%;
    background: white;
    padding: 6px 6px 0 6px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    margin: auto;
    transform: translate(-50%, 0);
    box-shadow: 0px -4px 16px 0px rgba(0, 0, 0, 0.1);
  }
}

#showSidebar {
  position: fixed;
  background: #120f36;
  color: white;
  padding: 4px;
  z-index: 11;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.2);
}
#closeSidebar {
  padding: 0;
  margin-bottom: 10px;
  margin-left: 168px;
  margin-top: -10px;
}
.info-icon {
  margin-left: 4px;
}
.info-icon .material-icons {
  font-size: 20px;
}
.info-icon:hover {
  color: var(--secondary);
}

/* The dropdown container */
.dropdown {
  position: relative;
  margin-left: 16px;
  margin-right: 16px;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: white;
  /* background-color: #f9f9f9; */
  min-width: 190px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 10px;
}

/* Links inside the dropdown */
.dropdown-content a {
  display: flex;
  align-items: center;
  /* color: black; */
  color: #818181;
  padding: 12px 16px;
  white-space: nowrap;
  text-decoration: none;
}
/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.avatar {
  vertical-align: middle;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ddd;
}

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: large;
}
.plan-pill {
  display: none;
  margin: 0;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.plan-pill.active {
  display: inline-flex;
  align-items: center;
}
.plan-pill.basic {
  color: #4b5563;
  background-color: #f3f4f6;
  border-color: #d1d5db;
}
.plan-pill.premium {
  color: #1d4ed8;
  background-color: #dbeafe;
  border-color: #93c5fd;
}
.patent-select {
  font-size: 16px;
  text-align: center;
  max-width: 160px;
  min-width: 160px;
  height: 29px;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  background-color: #f1f0f0;
}
.patent-select option {
  /* font-size: 14px; */
  color: #818181;
}
@media only screen and (min-width: 576px) {
  .patent-select {
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) {
  .patent-select {
    max-width: 240px;
  }
}
.center {
  text-align: center;
  justify-content: center;
}
.right {
  text-align: right;
  justify-content: end;
}

.swal2-styled.swal2-confirm {
  background-color: var(--primary) !important;
}

.auth-block {
  height: 100vh;
  display: flex;
  background: linear-gradient(to right, #ffffff, var(--primary));
}
.auth-block .auth-cover {
  position: relative;
  flex: 1.2;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
}
.auth-block .auth-cover:before {
  content: "";
  display: block;
  background: linear-gradient(-90deg, #ffffff, transparent);
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}
.auth-block .auth-form {
  flex: 1;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-block .form-wrapper {
  width: 460px;
  margin: 0 auto;
  padding: 10px 30px;
  background-color: white;
  border: 1px solid #818181;
  border-radius: 16px;
}
.auth-block .form-wrapper #logo {
  /* margin: 1rem 0 3rem; */
}
.form-group {
  margin-bottom: 1rem;
}
.form-group a {
  text-decoration: none !important;
  color: black;
  outline: none;
  transition: color 0.2s;
}
.form-control {
  font-size: 1.1rem;
  font-weight: 400;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}

th {
  font-size: 14px;
  white-space: nowrap;
  padding: 10px 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
td {
  font-size: 14px;
  padding: 16px 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

[data-result] {
  cursor: pointer;
}
[data-result]:hover {
  background: #ccc !important;
}
[data-result].active {
  /* background: var(--secondary) !important; */
  background: linear-gradient(
    /* to bottom right, 175deg,*/ var(--gradient) 40%,
    var(--gradient2)
  ) !important;
}
[data-result] td:nth-child(1) {
  font-weight: bold;
}
[data-result] td:nth-child(3) {
  text-align: center;
}
[data-result] td:last-child {
  text-align: end;
}
[data-result] .btn.small {
  min-width: 94px;
}

.result-box {
  border: 2px solid rgb(194, 194, 194);
  overflow: scroll;
  text-align: center;
  min-height: 500px;
  position: relative;
}
.btn.small {
  padding: 10px;
  font-size: 12px;
  /* min-width: 94px; */
}
.result-box .btn.small {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.navbar {
  overflow: hidden;
  background-color: #b51a34;
  position: fixed;
  top: 0;
  width: 100%;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: auto;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #b51a34;
  border-color: #b51a34 transparent #b51a34 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
  margin: auto;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Styles for datatable */

.form-control {
  font-size: 14px;
}
table.dataTable tbody th,
table.dataTable tbody td {
  padding: 1rem 0.75rem !important;
  /* vertical-align: top; */
  border-bottom: none !important;
}
#users tbody td:has(img),
#clients tbody td:has(img),
table.dataTable tbody td:has(img) {
  padding: 0 !important;
  vertical-align: middle !important;
}
#users tbody td img,
#clients tbody td img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #120f36;
}
.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
  border: 2px solid #e7e7e7;
  border-radius: 5px;
}
.pagination {
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--secondary);
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background: linear-gradient(var(--gradient), var(--gradient2));
  /* background-color: var(--secondary); */
  border-color: var(--secondary);
}
.paginate_button {
  padding: 0 !important;
  border: none !important;
}

.tag-style {
  --tag-border-radius: 5px !important;
  --tag-inset-shadow-size: 3em !important;
  /* --tag-bg: var(--secondary);
   --tag-hover: #CE0078;
  --tag-text-color: #FFF; */
}

.figure-tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 140px;
  /* height: 100%; */
  padding: 0;
  max-height: 700px;
  overflow: auto;
}
/* Style the buttons inside the tab */
.figure-tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 12px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}
/* Change background color of buttons on hover */
.figure-tab button:hover {
  background-color: #ddd;
}
/* Create an active/current "tab button" class */
.figure-tab button.active {
  background-color: var(--primary);
  color: white;
}
/* Style the tab content */
.figure-description {
  float: left;
  padding: 10px 20px;
  border: 1px solid #ccc;
  border-left: none;
  /* height: 300px; */
  min-height: 500px;
  max-height: 700px;
  overflow: auto;
}

#save.btn.small {
  background-color: red;
}

.tagify--focus {
  border-color: #0464cc !important;
}

/* Wizard Bar*/
.wizard-bar {
  display: flex;
  background: #dcf3d3;
  min-height: 70px;
  width: 100%;
  margin: 10px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 2px 2px 10px #e7e7e7;
  max-width: 800px;
}

.wizard-icon {
  min-height: 70px;
  width: 70px;
  background: #83b656;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.wizard-texts {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wizard-icon span {
  width: 40px;
  height: 40px;
  border: 4px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
}

.wizard-icon .material-symbols-outlined {
  font-size: 48px;
}

.wizard-bar .button-container {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.wizard-bar .btn {
  border-color: #76a44e;
  background: linear-gradient(#76a44e, #567b36);
  padding: 10px 20px;
  display: flex;
  align-items: center;
}

.wizard-bar .btn:hover {
  background: #83b656;
  color: black;
  border-color: transparent;
}

.wizard-bar .button-container .material-symbols-outlined {
  font-size: 18px;
}

#wizard-container.sticky {
  position: fixed;
  top: 70px;
  left: 200px;
  right: 0;
  z-index: 10;
}

@media screen and (max-width: 576px) {
  #wizard-container.sticky {
    left: 0;
  }
}

.sidebar a.disabled {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.4;
}

.sidebar a:not(.active).disabled {
  opacity: 0.4;
}
