Prv8 Shell
Server : Apache
System : Linux vps.urbanovitalino.adv.br 3.10.0-1062.12.1.el7.x86_64 #1 SMP Tue Feb 4 23:02:59 UTC 2020 x86_64
User : urbanovitalinoad ( 1001)
PHP Version : 7.3.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/urbanovitalinoad/public_html/servicedesk/css/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/urbanovitalinoad/public_html/servicedesk/css/dashboard.scss
$item_margin: 3px;
$toolbar_height: 40px;
$filter_height: 55px;
$break_phones: 700px;
$break_tablet: 1400px;

@mixin soft-shadow {
   box-shadow:
      0 1px 3px rgba(0,0,0,0.12),
      0 1px 2px rgba(0,0,0,0.24) !important;
}

@mixin custom-scroll-bar() {
   // firefox
   scrollbar-width: none;

   // chrome
   &::-webkit-scrollbar {
      height: 6px;
      width: 4px;
   }

   &::-webkit-scrollbar-thumb,
   &::-webkit-scrollbar-track,
   &::-webkit-scrollbar-corner {
      background-color: transparent;
   }

   &:hover {
      // firefox
      scrollbar-width: thin;

      // chrome
      &::-webkit-scrollbar-thumb {
         background-color: rgba(0, 0, 0, .3);
      }

      &::-webkit-scrollbar-track {
         background-color: rgba(0, 0, 0, .2);
      }
   }
}

// replicate ui-tabs display
.default_dashboard {
   padding: 1em 1.4em;
   border: 1px solid #dddddd;
   background: #FFF;
   box-shadow: 0px 3px 1px #dfdfdf;
   border-radius: 3px;
   width: 90%;
   margin: auto;
}

.dashboard {
   font-family: Arial, Helvetica, sans-serif/*{ffDefault}*/; // for embed
   position: relative;
   padding-top: $toolbar_height;

   // reset font weight from other gridstack usage
   .grid-stack-item-content a {
      font-weight: normal;
   }

   &.mini {
      padding-top: 0;
      width: calc(80% + 28px);
      margin: 0 auto;
      margin-bottom: -20px;
      z-index: 1;

      & + .search_page {
         z-index: 2;
      }

      .card {
         padding: 0 3px;
      }

      .grid-guide {
         top: 0;
      }

      .main-icon {
         font-size: 1.5em;
         right: 3px;
         bottom: 3px;
      }

      .grid-stack .grid-stack-item.lock-bottom {
         min-height: 0;
         height: 0;
      }
   }

   &.embed {
      .glpi_logo {
         background: url(../pics/logos/logo-GLPI-100-black.png) no-repeat;
         width: 100px;
         height: 55px;
         position: absolute;
         top: 30px;
         left: 100px;
      }

      &.nightmode {
         .glpi_logo {
            background: url(../pics/logos/logo-GLPI-100-white.png) no-repeat;
         }
      }
   }

   &.fullscreen, &.embed {
      background: white;
      padding: 100px;

      &.nightmode {
         background: black;
         color: rgb(153, 153, 153);

         .toolbar  {
            i.fas {
               color: #EEEEEE;

               &.active {
                  background: #777;
                  border: 2px inset #777;
               }
            }

            select.dashboard_select {
               color: rgb(187, 187, 187);
               background-color: black;
               border: 2px solid rgba(255, 255, 255, .3);

               &:hover {
                  border: 2px solid rgba(255, 255, 255, .5);
               }
            }
         }

         .grid-stack .grid-stack-item .grid-stack-item-content .card {
            background-color: #777;
            color: rgba(255, 255, 255, 0.7);
         }
      }

      .toolbar {
         top: 50px;
         right: 50px;

         &.left-toolbar {
            top: 50px;
            left: 104px;
         }

         .fs-toggle {
            display: none;
         }
      }
   }

   &.edit-mode {
      .grid-guide {
         display: flex;
         flex-wrap: wrap;

         @media screen and (max-width: $break_phones) {
            display: none;
         }
      }

      .grid-stack-item-content {
         touch-action: none;
      }

      .grid-stack .grid-stack-item:hover {
         .grid-stack-item-content:hover {
            cursor: grab;
         }

         & > .controls {
            display: inline-block;
         }

         .card {
            border-color: currentColor
         }
      }

      .markdown .html_content {
         display: none;
      }
      .markdown textarea.markdown_content {
         display: block;
      }

      .g-chart .ct-chart {
         [data-clickable=true] {
            cursor: grab;
         }
      }

      .toolbar {
         .change-dashboard {
            display: none;
         }

         .edit-dashboard-properties {
            display: inline-block;
         }
      }

      .filters_toolbar {
         .filters {
            fieldset.filter {
               &.filled {
                  margin-top: 0.5em;
               }
               border-color: #f0f0f0 !important;

               input, .flatpickr, .select2, .no-wrap {
                  display: none;
               }

               .delete-filter {
                  display: inline-block;
               }

               legend {
                  display: inline-block;
                  cursor: grab;
               }

               &:hover {
                  border-color: #509ee3 !important;
                  background: rgb(80,158,227, .3);
               }
            }

            .filter-placeholder {
               border: 2px dashed #509ee3;
               padding: 1em 1em 0.8em;
               margin-top: 1em;
               border-radius: 4px;
               height: 10px;
               width: 50px;
            }
         }

         .filters-control {
            border-color: #f0f0f0;

            .add-filter {
               display: inline-block;
            }
         }
      }

      .card.filter-impacted {
         border-color: #509ee3;

         &:before {
            background: rgb(80,158,227, .3);
            content: '';
            position: absolute;
            width: inherit;
            height: inherit;
            margin: -3px;
         }
      }
   }

   .toolbar {
      position: absolute;
      top: 0;
      right: 0;
      z-index: 10;

      &.left-toolbar {
         top: 0;
         right: initial;
         left: 5px;

         i.fas {
            margin-left: 0;
            font-size: 1em;
         }

         &:hover {
            select.dashboard_select {
               border: 2px solid rgba(0, 0, 0, .5);
            }
         }
      }

      select.dashboard_select {
         padding: 5px;
         border: 2px solid rgba(0, 0, 0, .1);
         border-radius: 3px;
         min-width: 100px;
         font-weight: bold;
         color: rgb(70, 70, 70);
      }

      i.fas {
         font-size: 1.5em;
         cursor: pointer;
         padding: 5px;
         margin-left: 5px;
         color: rgba(0, 0, 0, .5);
         border: 2px solid transparent;

         @media screen and (max-width: $break_phones) {
            display: none;
         }

         &:hover {
            color: rgb(0, 0, 0);
         }

         &.active {
            background: #EEEEEE;
            border: 2px inset #EEEEEE;
         }

         &.fa-moon {
            display: none;
         }
      }

      .edit-dashboard-properties {
         display: none;

         input.dashboard-name:not(.submit):not([type=submit]):not([type=reset]):not([type=checkbox]):not([type=radio]):not(.select2-search__field) {
            padding: 5px;
            border: 2px solid rgba(0, 0, 0, .1);
            border-radius: 3px;
            min-width: 200px;
            font-weight: bold;
            color: rgb(70, 70, 70);
            resize: horizontal;
         }

         i.save-dashboard-name {
            font-size: 1.5em;
            padding: 1px;
            vertical-align: middle;
         }

         .display-message {
            display: none;
            font-weight: bold;

            &.success {
               color: rgb(82, 145, 82);
            }

            &.fail {
               color: rgb(145, 82, 82);
            }
         }
      }
   }

   .filters_toolbar {
      text-align: left;
      height: $filter_height;
      margin: 0 5px 5px 2px;
      box-sizing: border-box;
      padding-top: 0.5em;

      @media screen and (max-width: $break_phones) {
         height: inherit;
      }

      .filters {
         display: inline-flex;
         flex-wrap: wrap;

         fieldset.filter {
            border: 2px solid #f0f0f0;
            border-radius: 4px;
            padding: 0.5em 1em 0.4em 1em;
            box-sizing: border-box;
            text-align: center;
            margin-top: 0.5em;

            legend {
               display: none;
               color: #74838f;
               font-weight: bold;
            }

            input {
               border: none !important;
               cursor: pointer;
               font-size: 1.1em !important;
               font-weight: bold;
            }

            .flatpickr {
               position: relative;

               a[data-clear] {
                  display: none;
               }

               &:after {
                  font-weight: 400;
                  content: "\f133";
                  right: 5px;
               }
            }

            .select2 {
               position: relative;
               margin-left: -12px;

               & ~ a, & ~ span { // remove icons next select2
                  display: none;
               }

               .select2-selection.select2-selection--single {
                  border: none;
               }

               .select2-container {
                  margin-right: 0;
               }

               .select2-selection__rendered {
                  color: #74838f;
                  font-weight: bold;
                  font-size: 1.1em;
                  line-height: 18px;
               }

               .select2-selection__arrow {
                  display: none;
               }

               .select2-selection__clear {
                  color: transparent;
                  position: relative;

                  &:after {
                     position: absolute;
                     font-family: "Font Awesome 5 Free";
                     color: #222;
                     font-weight: 900;
                     content: "\f057";
                     opacity: 0.7;
                     font-size: 11px;
                  }

                  &:hover:after {
                     opacity: 1;
                  }
               }

               &:after {
                  font-weight: 900;
                  content: "\f02b";
               }
            }

            .flatpickr, .select2 {
               &::placeholder, .select2-selection__placeholder {
                  color: #74838f;
                  opacity: .7;
               }

               &:after {
                  font-family: "Font Awesome 5 Free";
                  color: #74838f;
                  opacity: .7;
                  font-size: 1.3em;
                  pointer-events: none;
                  position: absolute;
                  right: 0;
                  top: 1px
               }
            }

            .delete-filter {
               display: none;
               color: rgba(0, 0, 0, 0.5);
               cursor: pointer;
            }

            &.filled {
               border-color: #509ee3;
               margin-top: 0;
               padding-top: 0.25em;

               legend {
                  display: inline-block;
               }

               input, .select2-selection__rendered {
                  color: #509ee3 !important;
               }

               .flatpickr, .select2 {
                  &:after {
                     display: none;
                  }

                  a[data-clear] {
                     display: inline-block;
                  }
               }
            }
         }
      }

      .filters-control {
         border: 2px dashed transparent;
         border-radius: 4px;
         box-sizing: border-box;
         display: inline-block;
         vertical-align: top;
         margin-top: 1em;

         .add-filter {
            padding: 1em 1em 0.8em;
            display: none;
            color: rgba(0, 0, 0, 0.5);
            cursor: pointer;

            &:hover {
               color: rgb(0, 0, 0);
            }

            .no-filter, .add-filter-lbl {
               padding-left: 0.2em;
               font-style: italic;
               color: #74838f;
               font-family: Arial, Helvetica, sans-serif;
               font-weight: bold;
            }
         }

         &:hover {
            border-color: rgba(0, 0, 0, 0.5);
         }
      }
   }

   .grid-guide {
      display: none;
      position: absolute;
      top: calc(#{$toolbar_height} + #{$filter_height} + 5px);
      width: calc(100% + 1px);
      border: 1px solid #EEEEEE;
      border-width: 0 1px 1px 0;
      background-image:
         linear-gradient(to right, #EEEEEE 1px, transparent 1px),
         linear-gradient(to bottom, #EEEEEE 1px, transparent 1px);

      .cell-add {
         opacity: 0;
         z-index: 2;
         position: relative;
         cursor: pointer;
         border: 2px dashed #777;
         box-sizing: border-box;

         &:hover {
            opacity: 1;
         }

         &:after {
            content: "\f067";
            left: 40%;
            top: 40%;
            font-size: 1em;
            color: grey;
            font-family: 'Font Awesome\ 5 Free';
            position: absolute;
            font-weight: 900;
         }
      }
   }

   .grid-stack {
      &.grid-stack-one-column-mode {
         max-width: 100%;

         .grid-stack-item {
            margin-bottom: 2px;
         }
      }

      .grid-stack-item {

         &:hover {
            cursor: default;
         }

         &.lock-bottom {
            display: none;
         }

         &.ui-draggable-dragging {
            .grid-stack-item-content {
               box-shadow: none;
            }
         }

         & > .ui-resizable-se {
            bottom: 5px;
            right: 5px;
         }

         & > .controls {
            display: none;
            position: absolute;
            top: 5px;
            right: 10px;
            z-index: 11;
            cursor: pointer;

            i.fas, i.far {
               opacity: .6;

               &:hover {
                  opacity: 1;
               }
            }
         }

         .placeholder-content {
            left: $item_margin;
            right: $item_margin;
         }

         .loading-card {
            height: 100%;
            border: 1px solid rgba($color: #000, $alpha: .05);

            .fa-spin {
               position: absolute;
               top: calc(50% - 16px);
               left: calc(50% - 16px);
               color: #222;
            }
         }

         .empty-card {
            height: calc(100% - 5px);
            margin: $item_margin;
            border-radius: 3px;
            box-sizing: border-box;
            border: 1px solid transparent;

            .fas {
               position: absolute;
               top: calc(50% - 16px);
               left: calc(50% - 16px);
               font-size: 2em;
            }
         }

         .card-error {
            border-color: rgba(100, 0, 0, .3);
            background: rgba(255, 0, 0, .1);
            color: rgba(100, 0, 0, .5);
         }

         .card-warning {
            border-color: rgba(105, 100, 32, 0.3);
            background: rgba(255, 238, 0, 0.178);
            color: rgba(105, 100, 32, 0.3);
         }

         .no-data {
            display: block;
            position: relative;

            div {
               position: absolute;
               top: 50%;
               text-align: center;
               width: 100%;
            }
         }

         .ui-resizable-se {
            background: none;
            text-indent: unset;

            &:before {
               content: "\f338";
               font-family: "Font Awesome 5 Free";
               font-weight: 900;
               font-size: 13px;
               position: absolute;
               bottom: -5px;
               right: 1px;
               width: 20px;
               height: 20px;
               opacity: .6;
            }

            &:hover {
               &:before {
                  opacity: 1;
               }
            }
         }

         .grid-stack-item-content {
            left: $item_margin;
            right: $item_margin;
            cursor: default;
            touch-action: initial;

            .debug-card {
               z-index: 10;
               position: absolute;
               color: rgba(255, 0, 0, 0.5);
               font-size: 10px;
               bottom: 5px;
               left: 5px;
            }
         }
      }
   }

   .card {
      @include soft-shadow;
      text-align: left;
      box-sizing: border-box;
      padding: 5px;
      height: calc(100% - 5px);
      width: calc(100% - 5px);
      margin: 2px 0 0 2px;
      display: block;
      color: rgba(0, 0, 0, 0.7);
      border: 2px solid transparent;
      border-radius: 3px;
      position: relative;
      box-sizing: border-box;
      background-color: #DDD;

      img {
         max-width: 100%;
      }
   }


   .big-number {
      .main-icon {
         right: 5px;
         top: 5px;
      }

      .formatted-number {
         display: flex;

         .number, .suffix {
            font-size: 3em;
            font-weight: normal;

            @media screen and (max-width: $break_tablet) {
               font-size: 2em;
            }
         }
      }

      .label {
         max-width: calc(100%);
         overflow: hidden;
         text-overflow: ellipsis;
         white-space: nowrap;
      }
   }
   .main-icon {
      font-size: 3em;
      position: absolute;
      right: 5px;
      bottom: 5px;

      @media screen and (min-width: $break_phones) and (max-width: $break_tablet) {
         font-size: 2em;
      }
   }

   .main-label {
      margin: 5px;
      font-size: 1.5em;
      font-weight: bold;
      display: block;
      max-width: calc(100% - 2.5em);

      @media screen and (min-width: $break_phones) and (max-width: $break_tablet) {
         font-size: 1.1em;
      }

      i {
         color: currentColor;
      }
   }

   .summary-numbers {
      display: flex;
      flex-direction: column;

      .scrollable {
         flex-grow: 1;
         display: flex;

         .table {
            flex-grow: 1;
            display: flex;
            text-align: center;

            .line {
               flex-grow: 1;
               display: flex;
               flex-direction: column-reverse;
               justify-content: space-evenly;
               flex-basis: 100%;
               color: #555555;
               position: relative;
               font-weight: normal;

               .content {
                  //flex-grow: 1;
                  display: flex;

                  .formatted-number {
                     flex-grow: 1;
                  }
               }

               .label {
                  font-size: 1.5em;
               }

               &:not(:first-child) {
                  border-left: 1px solid rgba(125, 125, 125, .2);
               }

               &:hover {
                  background-color: rgba(125, 125, 125, .1);
                  cursor: pointer;
                  border-radius: 3px;
                  border-left-color: transparent;

                  & + .line {
                     border-left-color: transparent;
                  }
               }
            }
         }
      }
   }

   .multiple-numbers {
      $number_size: 1.9em;

      .scrollable {
         overflow: auto;
         max-height: calc(100% - 35px);
         @include custom-scroll-bar();
      }

      .table {
         display: table;
         width: 100%;

         .line {
            display: table-row;
            color: currentColor;

            * {
               display: table-cell;
            }

            &:nth-child(odd) {
               background-color: rgba($color: #000, $alpha: .05)
            }

            &:hover {
               background-color: rgba($color: #000, $alpha: .2)
            }

            .content {
               font-size: $number_size;
               min-width: 30px;
               background-color: rgba($color: #000, $alpha: .1);
               padding: 10px;
               text-align: center;
               min-width: 40px;
               white-space: nowrap;
               width: 1%;
            }

            .label, .icon {
               position: inherit;
               font-size: inherit;
               padding: 10px 0 10px 10px;
               line-height: $number_size;
            }

            .icon {
               color: rgba(0, 0, 0, .5);
            }
         }
      }

      .main-label {
         position: absolute;
         left: 5px;
         bottom: 5px;
      }
   }

   .articles-list {
      .scrollable {
         overflow: auto;
         max-height: calc(100% - 35px);
         @include custom-scroll-bar();
      }

      .line {
         color: currentColor;
         margin: 5px;
         padding: 5px;
         font-weight: normal;
         position: relative;

         .label {
            display: block;
            font-weight: bold;
            font-size: 1.4em;
            margin: 5px 0 10px;
         }

         .content {
            display: block;
            margin-bottom: 3px;
            font-size: 1.2em;
            overflow: hidden;
            text-overflow: ellipsis;

            &.long_text {
               max-height: 80px;
            }
         }

         .date {
            float: right
         }

         a, i.fa-user {
            color: currentColor;
         }

         i.fa-user {
            font-size: 0.8em;
         }
      }

      .main-label {
         position: absolute;
         left: 5px;
         bottom: 5px;
      }
   }

   .g-chart {
      display: flex;
      flex-direction: column;

      .chart {
         flex: 1;
         min-height: 0; // force firefox to respect flex-shrink on svg
      }

      .main-label {
         height: 30px;
      }

      .ct-chart-bar:not(.ct-horizontal-bars),
      .ct-chart-line {
         .ct-circle + .ct-label {
            font-size: 0.75rem;
            line-height: 1;
            paint-order: stroke;
            stroke-width: 5px;
         }
         .ct-labels {
            .ct-label:not(.ct-vertical) {
               word-break: break-word;
            }
         }
      }

      .ct-chart-line {
         .ct-label.ct-horizontal.ct-end {
            transform: translateX(-40%);
         }
      }

      .ct-chart-donut {
         fill: none;

         .ct-label {
            text-anchor: middle;
            font-weight: bold;

            &.fade {
               opacity: .2;
            }
         }
      }

      .ct-horizontal-bars {
         .ct-label.ct-vertical.ct-start {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: block;

            &:before {
               content: "";
               display: inline-block;
               height: 100%;
               vertical-align: middle;
             }
         }
      }

      .ct-chart-bar {
         .ct-barlabel {
            font-weight: bold;
         }
      }

      &.gauge {
         .ct-chart {
            max-height: calc(100% - 45px); // prevent gauge to overflow

            .ct-series.mouseover {
               .ct-slice-pie, .ct-slice-donut-solid {
                  transform: scale(1.02); // with gauge, scale 5% si too much (we have clipping)
               }
            }
         }
      }

      @keyframes slice-fill-opacity {
         to {
            fill-opacity: 1;
         }
      }

      .ct-chart-donut, .ct-chart-pie {
         .ct-series {
            .ct-slice-pie, .ct-slice-donut-solid  {
               stroke-width: 1px;
               transform-origin: center center;
               //transition: transform 400ms ease-in-out;
               fill-opacity: 0;
               animation: slice-fill-opacity 1s ease-in-out forwards;
            }

            &.disable-animation {
               .ct-slice-pie, .ct-slice-donut-solid {
                  animation: none;
                  fill-opacity: 1;
               }
            }

            &.mouseover {
               .ct-slice-pie, .ct-slice-donut-solid {
                  fill-opacity: 1;
                  stroke-opacity: 1;
                  stroke-width: 3px;
               }
            }

            &.notmouseover {
               .ct-slice-pie, .ct-slice-donut-solid {
                  fill-opacity: .5;
                  stroke-opacity: 0;
               }
            }
         }
      }

      .ct-chart {
         [data-clickable=true] {
            cursor: pointer;
         }
      }

      .ct-point:hover {
         stroke-width: 13px;
      }

      &.pie, &.line.multiple, &.bar.tab10 {
         @import 'chartist/palette_d3_tab_10';
      }

      &.bar.tab20 {
         @import 'chartist/palette_d3_cat_20';
      }

      .ct-legend {
         text-align: left;
         padding: 10px 0 10px 38px;

         li {
            position: relative;
            padding-left: 23px;
            margin-bottom: 3px;
         }

         li:before {
            width: 12px;
            height: 12px;
            position: absolute;
            left: 0;
            content: '';
            border: 3px solid transparent;
            border-radius: 2px;
         }

         li.inactive:before {
            background-color: transparent !important;
         }
      }
   }

   .markdown {
      $mdmargin_v: 15px;
      $editor_border: 1px solid rgba(0, 0, 0, 0.3);
      overflow-y: auto;
      @include custom-scroll-bar();

      textarea.markdown_content {
         display: none;
         width: 100%;
         height: calc(100% - #{$mdmargin_v} * 2);
         resize: none;
         padding: 5px;
         margin: $mdmargin_v 0;
         box-sizing: border-box;
         background-color: rgba(255, 255, 255, .9);
         border: 1px solid currentColor;
         border-radius: 1px;
         outline: none;
         font-family: monospace
      }

      ul {
         list-style-type: disc;

         li {
            margin-left: 1.5em;
         }
      }

      h1 {
         border-bottom: 2px solid currentColor
      }
      h2 {
         border-bottom: 1px solid currentColor
      }

      img {
         max-width: 100%;
         max-height: 100%;
      }
   }

   .search-table {
      .table-container {
         overflow: auto;
         max-height: calc(100% - 40px);
         margin-top: 10px;
         @include custom-scroll-bar();

         .tab_cadrehov {
            margin: 0;
            min-width: 100%;
            box-shadow: none;
            background-color: transparent;
            font-size: 13px;

            th {
               position: sticky;
               top: 0;
               z-index: 10;
               padding: 5px 5px;
               border-bottom: 0;
               color: inherit;
               font-size: inherit;

               &.order_ASC:before,
               &.order_DESC:before {
                  color: inherit;
               }
            }

            td {
               border-bottom: 0;
            }

            .tab_bg_1 {
               background-color: rgba(0, 0, 0, .03);
            }
            .tab_bg_2 {
               background-color: transparent;
            }

            a {
               color: inherit;
               font-size: inherit !important;

               &:hover {
                  text-decoration: underline;
               }
            }
         }
      }

      .main-icon {
         font-size: 2em;
         right: 5px;
         bottom: 5px;
      }

      .main-label {
         a {
            font-size: inherit !important;
            color: inherit;
         }
      }
   }
}

.chartist-tooltip.dashboard-tooltip {
   $bg-color: rgba($color: #FFFFFF, $alpha: .65);

   background-color: $bg-color;
   @include soft-shadow;

   &:before {
      border-top-color: $bg-color;
   }
}

.embed_block {
   border: 1px dashed #a0a0a0;
   background-color: #e9e9e9;
}

.widgettype_field {
   .widget-list {
      max-width: 400px;
   }

   input[type=radio].widget-select {
      display: none;

      & + label {
         background: rgba($color: #000, $alpha: .05);
         margin: 5px 5px 0 0;
         border: 2px solid transparent;
         border-radius: 3px;
         display: none;
         text-align: center;
         font-weight: bold;

         &:hover {
            background: rgba($color: #000, $alpha: .1);
            border-color: rgba($color: #000, $alpha: .2);
            cursor: pointer;
         }
      }

      &:checked + label {
         background: rgba($color: #000, $alpha: .2);
         border-color: rgba($color: #000, $alpha: .3);
         position: relative;

         &:after {
            content: "\f00c";
            right: 5px;
            bottom: 3px;
            font-size: 1em;
            color: rgb(39, 39, 39);
            font-family: 'Font Awesome\ 5 Free';
            position: absolute;
            font-weight: 900;
         }
      }
   }
}

haha - 2025