@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #4E4E4E;
  font-weight: 500;
  font-size: 0.85rem;
}

.app-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  min-height: 100vh;
  min-width: 1024px;
  background: #e7e7e7;
}

a {
  -webkit-transition: all 0.08s ease-in-out !important;
  transition: all 0.08s ease-in-out !important;
  text-decoration: none;
  color: #4E4E4E;
}

a:hover {
  color: #6f778c;
  opacity: 0.6;
}

label {
  color: #686868;
  font-size: 0.8rem;
  margin: 0;
}

#scrollTop {
  display: none;
  position: fixed;
  z-index: 99;
  bottom: 32px;
  right: 46px;
  color: #999fae;
  font-size: 2rem;
  cursor: pointer;
}

#scrollTop:hover {
  color: #6f778c;
}

hr {
  background-color: inherit;
}

@media only screen and (max-width: 992px) {
  #scrollTop {
    bottom: 16px;
    right: 16px;
  }
}

.dropdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  position: relative;
}

.dropdown .dropdownMenu {
  border-radius: 6px;
  overflow: hidden;
  display: none;
  position: absolute;
  width: auto;
  top: 110%;
  right: 0;
  background: white;
  border: 1px solid #dadada;
  -webkit-box-shadow: 0 0 10px 0 rgba(78, 78, 78, 0.1);
          box-shadow: 0 0 10px 0 rgba(78, 78, 78, 0.1);
  z-index: 1024;
}

.dropdown .dropdownMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown .dropdownMenu ul li button {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 18px;
  margin-right: 32px;
}

.dropdown .dropdownMenu ul li button i {
  color: #9b9b9b;
  font-size: 1.4rem;
}

.dropdown .dropdownMenu ul li button {
  width: 100%;
  border: 0;
  background: white;
  padding: 12px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dropdown .dropdownMenu ul li button:hover {
  background: #e0e2e6;
  color: #4E4E4E;
}

.dropdown .dropdownMenu ul li button.active {
  cursor: default;
  background: #4E4E4E;
  color: white;
}

.dropdown .dropdownMenu ul li button i {
  color: #9b9b9b;
  font-size: 1.4rem;
}

.dropdown .dropdownMenu ul li button:disabled {
  color: #b4b4b4;
}

.dropdown .dropdownMenu ul li button:disabled:hover {
  color: #b4b4b4;
}

.tab,
.modal-tab {
  position: relative;
  background: #f2f2f2;
  border: none !important;
  text-decoration: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4E4E4E;
  height: 36px;
  padding: 0 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  letter-spacing: -0.2px;
}

.tab:hover,
.modal-tab:hover {
  -webkit-transition: all 0.08s ease-in-out;
  transition: all 0.08s ease-in-out;
  background: #eeeff2;
}

.tab.active,
.modal-tab.active {
  color: white;
  background: #646b7d;
}

.tab:first-of-type,
.modal-tab:first-of-type {
  border-radius: 6px 0 0 6px;
}

.tab:last-of-type,
.modal-tab:last-of-type {
  border-radius: 0 6px 6px 0;
}

.tab {
  background: white;
}

.btn {
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 28px !important;
  height: 34px;
}

.btn.small {
  font-size: 0.7rem;
}

.btn:focus {
  -webkit-box-shadow: 0 0 0 0 transparent !important;
          box-shadow: 0 0 0 0 transparent !important;
}

.btn:active {
  background-color: #aedadb !important;
  -webkit-box-shadow: 0 0 4px 1px #aedadb !important;
          box-shadow: 0 0 4px 1px #aedadb !important;
}

.btn.btn-primary {
  background: #585f6f !important;
  border: 1px solid #4d5361 !important;
}

.btn.btn-primary:hover {
  background: #4d5361 !important;
  border: 1px solid #4d5361 !important;
}

.btn.btn-primary:active {
  background-color: #aedadb !important;
  border: 1px solid #aedadb !important;
}

.btn.btn-primary:disabled {
  color: #d2d5db !important;
}

.btn.btn-secondary {
  background: #d2d5db !important;
  border: 1px solid #d2d5db !important;
  color: #4E4E4E !important;
}

.btn.btn-secondary:hover {
  background: #999fae !important;
  border: 1px solid #999fae !important;
  color: black !important;
}

.btn.btn-secondary:active {
  background-color: #aedadb !important;
  border: 1px solid #aedadb !important;
}

.btn.btn-secondary:disabled {
  background: #e0e2e6 !important;
  border: 1px solid #e0e2e6 !important;
  color: #8e8e8e !important;
}

.btn.btn-success {
  background: #9aaf42 !important;
  border: 1px solid #9aaf42 !important;
  color: white !important;
}

.btn.btn-success:hover {
  background: #7a8a34 !important;
  border: 1px solid #c3d186 !important;
  color: white !important;
}

.btn.btn-success:active {
  background-color: #aedadb !important;
  border: 1px solid #aedadb !important;
}

.btn.btn-success:disabled {
  background: #e8edd0 !important;
  border: 1px solid #e8edd0 !important;
  color: #818181 !important;
}

.btn.btn-danger {
  background: #af5244 !important;
  border: 1px solid #af5244 !important;
  color: white !important;
}

.btn.btn-danger:hover {
  background: #8a4136 !important;
  border: 1px solid #aedadb !important;
  color: white !important;
}

.btn.btn-danger:active {
  background-color: #aedadb !important;
  border: 1px solid #aedadb !important;
}

.btn.btn-danger:disabled {
  background: #edd5d2 !important;
  border: 1px solid #edd5d2 !important;
  color: #818181 !important;
}

.btn.btn-blue {
  background: #999fae !important;
  border: 1px solid #999fae !important;
  color: white;
}

.btn.btn-blue:hover {
  background: #585f6f !important;
  border: 1px solid #585f6f !important;
  color: white;
}

.btn.btn-blue:active {
  background-color: #aedadb !important;
  border: 1px solid #aedadb !important;
}

.btn.btn-blue:disabled {
  color: white !important;
}

.btn.btn-black {
  background: #4E4E4E !important;
  border: 1px solid #4E4E4E !important;
  color: white;
}

.btn.btn-black:hover {
  background: #0e0e0e !important;
  border: 1px solid #0e0e0e !important;
  color: white;
}

.btn.btn-black:active {
  background-color: #aedadb !important;
  border: 1px solid #aedadb !important;
}

.btn.btn-black:disabled {
  color: #b4b4b4 !important;
}

.badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 20px;
  border-radius: 4px !important;
  padding: 3px 8px;
  min-width: 80px;
  text-transform: uppercase !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.badge.bg-answer {
  background: #7d8497;
  font-size: .8rem;
  font-weight: 600;
  text-transform: none !important;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2px;
  height: auto;
}

.badge.bg-answer .remove-badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 50%;
  border: none;
  margin: 2px 0;
  font-size: 1rem;
  color: white;
  margin-left: 6px;
}

.badge.bg-answer .remove-badge:hover {
  background: rgba(153, 159, 174, 0.8);
  color: rgba(255, 255, 255, 0.5);
}

.badge.bg-created {
  background: #ead453 !important;
  color: #4E4E4E;
}

.badge.bg-active {
  background: #9dde51 !important;
  color: #4E4E4E;
}

.badge.bg-called {
  background: #629608 !important;
}

.badge.bg-stopped {
  background: #c25e60 !important;
}

.badge.bg-archived {
  background: #707070 !important;
}

.badge.bg-p-registered {
  background: #ead453 !important;
  color: #4E4E4E;
}

.badge.bg-p-confirmed {
  background: #ffff00 !important;
  color: #4E4E4E;
}

.badge.bg-p-basic {
  background: #629608 !important;
}

.badge.bg-p-initial {
  background: #00e700 !important;
  color: #4E4E4E;
}

.badge.bg-p-inactive {
  background: #ff9130 !important;
  color: #4E4E4E;
}

.badge.bg-p-suspended {
  background: #c25e60 !important;
}

.badge.bg-p-deleted {
  background: #707070 !important;
}

.badge.bg-success {
  background: #9aaf42 !important;
}

.badge.bg-filter {
  background: #585f6f !important;
}

.badge.bg-filter span {
  font-weight: 400;
  letter-spacing: 0.25px;
}

.badge.bg-warning {
  background: #c37063 !important;
}

.badge.bg-secondary {
  background: gray !important;
}

.badge.bg-light {
  background: #cecece !important;
  color: #686868 !important;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 600;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e7e7e7;
}

.profile:hover {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: #6f778c;
  color: white;
}

.profile .action {
  position: absolute;
}

.profile img {
  width: 36px;
  height: auto;
}

.profile.modal {
  position: relative;
  width: 92px;
  height: 92px;
  font-size: 1.3rem;
}

.profile.modal:hover {
  background: #e7e7e7;
  color: #4E4E4E;
}

.profile.modal:hover .action {
  position: absolute;
  visibility: visible;
}

.profile.modal img {
  width: 100%;
  height: auto;
}

.main-nav {
  top: 0px;
  position: -webkit-sticky;
  position: sticky;
  display: block;
  height: 100vh;
  width: auto;
  background: #585f6f;
}

.main-nav .logo, .main-nav ul li button i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 64px;
  height: 64px;
}

.main-nav .logo img, .main-nav ul li button i img {
  width: 40px;
}

.main-nav ul {
  overflow-x: scroll;
  height: calc(100% - 72px);
  display: block;
  list-style: none;
  padding: 0%;
  width: 100%;
  margin-top: 8px;
}

.main-nav ul li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: white;
  height: 56px;
  opacity: 1;
  padding: 0;
  border: 0;
  background: transparent;
}

.main-nav ul li button i {
  opacity: 0.6;
  font-size: 1.3rem;
}

.main-nav ul li button span {
  font-size: 0.7rem;
  text-transform: uppercase;
  width: auto;
  font-weight: 600;
  margin-right: 64px;
  letter-spacing: 2px;
}

@media only screen and (max-width: 1200px) {
  .main-nav ul li button span {
    display: none;
  }
}

.main-nav ul li button.active {
  opacity: 0.35;
}

.main-nav ul li button.active:hover {
  opacity: 0.35;
}

.main-nav ul li button:hover {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.5;
}

.content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #f4f4f4;
  max-width: 2280px;
  min-width: 100px;
  min-height: 100vh;
}

.top-nav {
  padding: 6px 16px 6px 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 48px;
  background: white;
  -webkit-box-shadow: 0 0 10px 0 rgba(78, 78, 78, 0.2);
          box-shadow: 0 0 10px 0 rgba(78, 78, 78, 0.2);
}

.top-nav .nav-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-size: 1.5rem;
}

.spinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  z-index: 2000;
  position: absolute;
  top: 0;
  left: 0;
}

.spinner .cube-grid {
  margin-top: 35vh;
  width: 52px;
  height: 52px;
  background: transparent;
}

.spinner .cube-grid .cube {
  width: 33%;
  height: 33%;
  border: 2px solid #f4f4f4;
  background-color: #aedadb;
  float: left;
  -webkit-animation: cubeGridScaleDelay 1.3s infinite ease-in-out;
          animation: cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.spinner .cube-grid .cube1 {
  background: #c3d186;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.spinner .cube-grid .cube2 {
  background: #aedadb;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.spinner .cube-grid .cube3 {
  background: #ccc6d0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.spinner .cube-grid .cube4 {
  background: #a8dbdb;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.spinner .cube-grid .cube5 {
  background: #7c7481;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.spinner .cube-grid .cube6 {
  background: #a8dbdb;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.spinner .cube-grid .cube7 {
  background: #999fae;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.spinner .cube-grid .cube8 {
  background: #c3d186;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.spinner .cube-grid .cube9 {
  background: #aedadb;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes cubeGridScaleDelay {
  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

.main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: calc(100vh - 48px);
}

.main-content .container-fluid {
  padding: 1.5rem 2rem;
}

.main-content .filter-wrapper {
  background: white;
  border-radius: 10px;
  padding: 2rem;
}

.main-content.overlay {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.2;
}

.advanced-filters.show {
  display: block;
}

.advanced-filters.hide {
  display: none;
}

.action {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  color: #4d5361;
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  visibility: hidden;
  border: 0 !important;
}

.action:disabled {
  background: #b5bac5;
  color: rgba(255, 255, 255, 0.5);
}

.action:disabled:hover {
  background: #b5bac5;
  color: rgba(255, 255, 255, 0.5);
}

.action:hover {
  background: #e0e2e6;
  opacity: 1;
  color: #646b7d;
}

.action:active {
  background: transparent;
}

.action.visible {
  visibility: visible;
}

.action.visible.not {
  background: red;
}

.action.visible.yes {
  background: green;
}

.action.visible:disabled.not {
  background: #ff9999;
}

.action.visible:disabled.yes {
  background: green;
}

.frame {
  display: -ms-grid;
  display: grid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1rem 2rem;
  border-radius: 10px;
  background: white;
  overflow-x: auto;
}

.frame.modal-height {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  overflow-y: auto;
  max-height: 50vh;
  border-radius: 0 !important;
}

.table-wrapper {
  overflow-x: auto;
}

table {
  width: 100%;
}

table thead tr {
  background: #7d8497;
  color: white;
  cursor: pointer;
}

table thead tr th {
  border: 1px solid #818181;
  font-size: 0.65rem;
  line-height: 1rem;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 12px;
  overflow: hidden;
}

table thead tr th label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
}

table thead tr th:hover {
  background: #4E4E4E;
}

table thead tr th:last-of-type {
  min-width: 64px !important;
  width: 106px;
}

table tbody tr {
  background: white;
}

table tbody tr:hover {
  -webkit-transition: all 0.08s ease-in-out;
  transition: all 0.08s ease-in-out;
  background: #dddfe4;
}

table tbody tr:hover .action {
  visibility: visible;
}

table tbody tr td {
  border: 1px solid #e7e7e7;
  font-size: 0.85rem;
  padding: 8px 12px;
}

table tbody tr td label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 24px;
}

table tbody tr td .call-list {
  color: #9aaf42;
}

table tbody tr td .call-list.hidden {
  display: none;
}

table tbody tr td .male {
  font-size: 1.2rem;
  color: #999fae;
}

table tbody tr td .female {
  font-size: 1.2rem;
  color: #aedadb;
}

table.overview tr {
  border-bottom: 1px solid white;
}

table.overview tr:hover th,
table.overview tr:hover td {
  border: 0;
  -webkit-transition: all 0.08s ease-in-out;
  transition: all 0.08s ease-in-out;
  background: #9b9b9b;
  color: white;
}

table.overview tr th {
  width: 25%;
  font-weight: 400;
  border: none;
  border: 0;
  line-height: 2rem;
  padding: 6px 12px;
  background: #e0e2e6;
}

table.overview tr td {
  border: 0;
  padding: 8px;
  font-weight: 600;
  background: #e7e7e7;
}

table.rewards tr {
  background: transparent;
  border-bottom: 1px solid #cecece;
}

table.rewards tr:hover th,
table.rewards tr:hover td {
  border: 0;
  -webkit-transition: all 0.08s ease-in-out;
  transition: all 0.08s ease-in-out;
  background: #9b9b9b;
  color: white;
}

table.rewards tr th {
  width: auto;
  font-weight: 400;
  border: none;
  border: 0;
  line-height: 1.1rem;
  padding: 6px;
  background: transparent;
  white-space: nowrap;
}

table.rewards tr td {
  border: 0;
  padding: 6px;
  font-weight: 600;
  background: transparent;
}

table[data-sortable] th:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  width: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent;
  margin-right: 1px;
  margin-left: 10px;
  float: right;
}

table[data-sortable] th[data-sorted="true"]:after {
  visibility: visible;
}

table[data-sortable] th[data-sorted-direction="descending"] {
  background: #4E4E4E;
}

table[data-sortable] th[data-sorted-direction="descending"]:after {
  border-top-color: white;
  margin-top: 5px;
}

table[data-sortable] th[data-sorted-direction="ascending"] {
  background: #4E4E4E;
}

table[data-sortable] th[data-sorted-direction="ascending"]:after {
  border-bottom-color: white;
}

.page-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-title span {
  vertical-align: bottom;
  display: inline-block;
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
  letter-spacing: -0.2px;
  text-transform: initial;
}

.section-title {
  font-weight: 600;
}

.pagination {
  margin: 0;
  margin-top: 16px;
}

.pagination .page-item.active .page-link {
  color: white;
  background: #646b7d;
}

.pagination .page-item.active .page-link:hover {
  opacity: 1;
  background: #4d5361;
}

.pagination .page-item.active .page-link:focus {
  background: #999fae;
}

.pagination .page-item.disabled .page-link {
  background: #d2d5db;
}

.pagination .page-item.disabled .page-link:hover {
  opacity: 1;
  background: #d2d5db;
}

.pagination .page-item .page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.8rem;
  font-weight: 600;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin: 6px;
  border-radius: 50% !important;
  border: none;
  color: #4E4E4E;
}

.pagination .page-item .page-link:focus {
  background: white;
  -webkit-box-shadow: 0 0 10px 2px rgba(78, 78, 78, 0.5) !important;
          box-shadow: 0 0 10px 2px rgba(78, 78, 78, 0.5) !important;
}

.pagination .page-item .page-link:hover {
  opacity: 1;
  background: black;
  color: white;
}

.pagination .page-item .page-link:active {
  background: #aedadb;
}

.pagination .page-item i {
  font-size: 1.2rem;
}

.research-overview {
  padding: 32px;
  border: 1px solid #e0e2e6;
  border-radius: 8px;
}

.research-overview .research-name {
  font-weight: 600;
  font-size: 0.8rem;
  width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.form-control,
.form-select,
.form-check-input {
  font-size: 0.85rem;
  border-radius: 4px !important;
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
  -webkit-box-shadow: 0 0 6px 0px rgba(78, 78, 78, 0.3) !important;
          box-shadow: 0 0 6px 0px rgba(78, 78, 78, 0.3) !important;
  border-color: transparent !important;
}

.form-control:active,
.form-select:active,
.form-check-input:active {
  -webkit-box-shadow: 0 0 10px 0px rgba(78, 78, 78, 0.6) !important;
          box-shadow: 0 0 10px 0px rgba(78, 78, 78, 0.6) !important;
}

.form-control:disabled,
.form-select:disabled,
.form-check-input:disabled {
  background: #eeeff2;
  color: #4E4E4E;
}

.form-control.search,
.form-select.search,
.form-check-input.search {
  padding: 12px;
  background: #eeeff2;
  background: white;
}

textarea {
  padding: 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  border-radius: 0 !important;
  border-color: #cecece;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 6px 0px rgba(78, 78, 78, 0.3) !important;
          box-shadow: 0 0 6px 0px rgba(78, 78, 78, 0.3) !important;
  border-color: transparent !important;
}

textarea:disabled {
  background: #eeeff2;
}

.reset {
  display: block;
  position: relative;
}

.reset.show:after {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  right: 8px;
  content: "\00D7";
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  background: #e7e7e7;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.form-check-label {
  font-size: inherit;
  color: #4E4E4E;
}

.advanced-filter-toggle, .reset-filters {
  color: #4E4E4E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 46px;
}

.advanced-filter-toggle:hover, .reset-filters:hover {
  color: #aedadb;
  opacity: 1;
}

.advanced-filter-toggle:active, .reset-filters:active {
  color: black;
}

.modal .modal-content {
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
}

.modal .modal-content .modal-header {
  border-radius: 10px 10px 0 0 !important;
  background: #7d8497;
  color: white;
  border: none;
  padding: 1.3rem 2rem;
}

.modal .modal-content .modal-header .modal-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
}

.modal .modal-content .modal-body {
  background: white;
  padding: 2rem;
}

.modal .modal-content .modal-footer {
  border-radius: 0 0 10px 10px !important;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border: none;
  padding: 0rem 1.7rem 2rem 1.7rem;
}

.reward-img {
  background: white;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 8px;
  width: 300px;
  height: 180px;
  margin-bottom: 24px;
}

.reward-img button {
  position: absolute;
  top: 12px;
  left: 12px;
}

.reward-img img {
  width: auto;
  height: 30%;
}

.card-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

.card-form .img-bg {
  height: 200px;
  border-radius: 10px;
  width: 360px;
  min-width: 280px;
}

.card-form input[type="color"] {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  height: 200px;
}

.card-form button {
  position: absolute;
  top: 12px;
  left: 6px;
  z-index: 100;
}

.card-form .logo-img {
  position: absolute;
  z-index: 99;
  height: 25%;
  width: auto;
}

.switch {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 36px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch input:checked + .slider {
  background-color: #9aaf42;
}

.switch input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #9aaf42;
          box-shadow: 0 0 1px #9aaf42;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
}

.switch input:disabled + .slider {
  display: none;
  background-color: #e7e7e7;
}

.switch .label {
  white-space: nowrap;
  color: #686868;
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 42px;
}

.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #b4b4b4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider::before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.switch .slider.round {
  border-radius: 16px;
}

.switch .slider.round:before {
  border-radius: 50%;
}

.reward {
  background: #f4f4f4;
  padding: 20px 20px 32px 20px;
  border-radius: 10px;
  height: 100%;
}

.client {
  background: #eeeff2;
  margin-bottom: 16px;
  border-radius: 10px;
  border: 1px solid transparent;
}

.client .client-header {
  color: #4E4E4E;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.client .client-header .client-name {
  width: 100%;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 700;
}

.client .client-header .toggle-arrow {
  font-size: 1rem;
}

.client .client-body {
  padding: 0 12px 12px 12px;
}

.client .client-body .project {
  background: white;
  border-radius: 10px;
  margin: 0px 12px 24px 12px;
  -webkit-box-shadow: 0 2px 6px 0 rgba(78, 78, 78, 0.15);
          box-shadow: 0 2px 6px 0 rgba(78, 78, 78, 0.15);
  border: 1px solid #d2d5db;
}

.client .client-body .project .project-header {
  border-radius: 8px 8px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 8px 6px 18px;
  background: white;
  border-bottom: 1px solid #d2d5db;
}

.client .client-body .project .project-header .project-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.client .client-body .project .project-header .project-name::before {
  font-weight: 400;
  content: "Projekat: ";
  margin-left: 4px;
}

.client .client-body .project .project-body .research {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid #eeeff2;
}

.client .client-body .project .project-body .research:last-of-type {
  border-bottom: 0;
}

.client .client-body .project .project-body .research .research-name::before {
  content: "Istraživanje: ";
}

.client .client-body .project .project-body .research .research-name a {
  color: #bc5f51;
  font-weight: 600;
}

.client .client-body .project .project-body .research:hover {
  background: #e6e7eb;
}

.client.active {
  border: 1px solid #d2d5db;
}

.invoice {
  padding: 24px;
  background: #eeeff2;
  border-radius: 10px;
}

.contact {
  background: #eeeff2;
  padding: 16px;
  border-radius: 8px;
}

.trend-block {
  background: white;
  border-radius: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trend-block .trend {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-radius: 10px;
}

.trend-block .trend h6 {
  margin-bottom: 10%;
}

.trend-block .trend h1 {
  color: #999fae;
  font-size: 2.7rem;
  font-weight: 600;
  letter-spacing: -1px;
  margin: 0;
}

.trend-block .trend small {
  display: block;
  color: #818181;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.trend-block .trend .trend-data.negative {
  color: #af5244;
  font-weight: 700;
}

.trend-block .trend .trend-data.negative span {
  color: #4E4E4E;
  font-weight: 500;
}

.trend-block .trend .trend-data.positive {
  color: #9aaf42;
  font-weight: 700;
}

.trend-block .trend .trend-data.positive span {
  color: #4E4E4E;
  font-weight: 500;
}

.trend-block .trend .segment {
  font-size: 1rem;
  margin-bottom: 10%;
}

.trend-block .trend .segment i {
  margin-right: 2px;
}

.trend-block .trend .segment .bi-gender-male {
  color: #44a6a6;
}

.trend-block .trend .segment .bi-gender-female {
  color: #af5244;
}

.no-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 240px;
  font-size: 1rem;
  border-radius: 10px;
  background: #f4f4f4;
  color: #a7a7a7;
}

.page-message {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-image: url("/assets/images/pictogram2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 6rem;
}

.page-message i {
  font-size: 2rem;
  line-height: 2rem;
  color: red;
}

.page-message span {
  margin-top: 2rem;
  margin-bottom: .5rem;
  color: #9b9b9b;
}

.page-message span h2 {
  line-height: 1;
  margin: 0;
}

.page-message .message {
  color: #4E4E4E;
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  line-height: 2rem;
  margin: 0;
  letter-spacing: -.05rem;
}

.question-frame {
  background: white;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 20px 20px 32px 20px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
/*# sourceMappingURL=admin-panel.css.map */