@font-face {
    font-family: manrope-regular;
    src: url(../fonts/manrope-regular.otf);
}

@font-face {
    font-family: manrope-semibold;
    src: url(../fonts/manrope-semibold.otf);
}

@font-face {
    font-family: manrope-medium;
    src: url(../fonts/manrope-medium.otf);
}

@font-face {
    font-family: manrope-bold;
    src: url(../fonts/manrope-bold.otf);
}
@font-face {
    font-family: ariel_rounded_mt;
    src: url(../fonts/ariel_rounded_mt.ttf);
}
@font-face {
    font-family: Poppins-Medium;
    src: url(../fonts/Poppins-Medium.ttf);
}
@font-face {
    font-family: Poppins-Regular;
    src: url(../fonts/Poppins-Regular.ttf);
}
@font-face {
    font-family: Poppins-SemiBold;
    src: url(../fonts/Poppins-SemiBold.ttf);
}

  .select-shadow
  {
    box-shadow:0px 0px 6px #00000017;
  }
  .manrope-medium
  {
    font-family: manrope-medium;
  }
  .manrope-regular
  {
    font-family: manrope-regular;
  }
  .manrope-semibold
  {
    font-family: manrope-semibold;
  }
  .manrope-bold
  {
    font-family: manrope-bold;
  }
  .poppins-regular
  {
    font-family: Poppins-Regular;
  }
  .poppins-medium
  {
    font-family: Poppins-Medium;
  }
  .calendar-bg
  {
    background-image: url(../images/calendar.png);
    background-repeat: no-repeat;
    background-position: 5% 47%;
    background-size: 16px;
  }
  .sidebar-shadow
  {
    box-shadow: 0px 9px 18px #0000000f;
  }
  .tab-shadow
  {
    box-shadow:  0px 0px 3px #8080804a;
  }
  .alert-shadow
  {
    box-shadow: 0px 0px 10px #80808057;
  }
  .dashboard-shadow
  {
    box-shadow: 0px 0px 10px #80808061;
  }
  /*-------------------------- Dashboard Garph -----------------------------------------*/
/*-------------------------------- Dashboard Graph -------------------------------------*/
.dashboard-graphs
{
    /* width: 1500px; */
    margin: 0 auto;
    white-space: nowrap;
    overflow: auto;
}
.dashboard-graphs .multi-graph {
    width: 100%;
    height: 250px;
    position: relative;
    color: #000000;
    font-size: 22px;
     overflow: hidden;
   /* margin: 25px; */
    padding-bottom: 40px;
}
.dashboard-graphs .semicircle-graph
{
    position: relative;
}
.dashboard-graphs .multi-graph:before {
    content: "";
    width: 100%;
    height: 400px;
    /* border: 50px solid rgba(0, 0, 0, 0.15); */
    border-bottom: none;
    position: absolute;
    box-sizing: border-box;
    transform-origin: 50% 0%;
    border-radius: 300px 300px 0 0;
    left: 0;
    top: 0;
}
.dashboard-graphs .multi-graph .graph {
  width: 380px;
  height: 190px;
  border: 10px solid var(--fill);
  border-top: none;
  position: absolute;
  transform-origin: 50% 0% 0;
  border-radius: 0 0 300px 300px;
  left: 20%;
  top: 80%;
  z-index: 5;
  -webkit-animation: 1s fillGraphAnimationease-in;
  animation: 1s fillGraphAnimationease-in;
  transform: rotate(calc(1deg*(var(--percentage)* 1.8)));
  box-sizing: border-box;
  cursor: pointer;
}
.dashboard-graphs .multi-graph .graph:after {
  content: attr(data-name) " " counter(varible) "%";
  counter-reset: varible var(--percentage);
  background: #6149CD;
  box-sizing: border-box;
  border-radius: 2px;
  color: #fff;
  font-weight: 200;
  font-size: 12px;
  height: 20px;
  padding: 3px 5px;
  top: 0px;
  position: absolute;
  left: 0;
  transform: rotate(calc( -1deg * var(--percentage) * 1.8 )) translate(-30px, 0px);
  transition: 0.2s ease-in;
  transform-origin: 0 50% 0;
  opacity: 0;
}

table.dataTable>thead>tr>th, table.dataTable>thead>tr>td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

table.dataTable>tfoot>tr>th, table.dataTable>tfoot>tr>td{
  border-top: none;
}
thead{
  background-color: #ffffff;
  border-bottom:2px solid #E9EDF0;
  position: sticky;
    top: 0;
    z-index: 10;
}
table.dataTable tbody th, table.dataTable tbody td {
  padding: 6px 32px;
}

.video-box {

  max-width: 100%; /* Ensure responsiveness */
  position: relative; /* For positioning video-info */
  /* margin: 10px; Optional: spacing */
  overflow: hidden; /* Prevent overflow */
}

.video-box video {
  width: 100%; /* Fill video-box width */
  height: 100%; /* Fill video-box height */
  display: block; /* Remove extra space below video */
  object-fit: cover; /* Ensure video fills container without distortion */
}

.video-info {
  position: absolute;
  bottom: 5px;
  right: 5px;
  display: flex;
  align-items: center;
}

.video-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-connecting {
  background-color: orange; /* Example styling for connecting status */
}

.video-container {
  max-height: 70vh; /* Prevents video from being too tall on large screens */
}

table.dataTable {
  width: 100% !important;
}

@media (max-width: 768px) {
  .video-container {
      aspect-ratio: 16/9;
      max-height: 50vh;
  }
}

@-webkit-keyframes fillAnimation {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(135deg);
  }
}

@keyframes fillAnimation {
  0% {
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(135deg);
  }
}
@-webkit-keyframes fillGraphAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}
@keyframes fillGraphAnimation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
}
.dashboard-graphs .graph .label1 {
    position: absolute;
    background: #fff;
    color: var(--fill);
    font-weight: bold;
    padding: 7px 17px;
    border-radius: 10px;
    font-size: 12px;
    top: 50px;
    left: 0%;
    transform: translate(-50%, -100%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    color: #000;
    rotate: 178deg;
    box-shadow: 0px 0px 16px #8080805e;
}
.dashboard-graphs .graph .label2 {
    position: absolute;
    background: #fff;
    color: var(--fill);
    font-weight: bold;
    padding: 7px 17px;
    border-radius: 10px;
    font-size: 12px;
    top: 2px;
    left: 20%;
    transform: translate(-50%, -100%);
    z-index: 10;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    color: #000;
    rotate: 287deg;
    box-shadow: 0px 0px 16px #8080805e;
}
.dashboard-graphs .graph:hover .label1 {
  opacity: 1;
}
.dashboard-graphs .graph:hover .label2 {
  opacity: 1;
}
.dashboard-blocks
{
    width: 70%;
    margin: 40px auto;
}
.dashboard-blocks .dash-box
{
    width: 95%;
    text-align: center;
    padding: 50px 25px;
    box-shadow: 0px 0px 20px #8080802e;
    border-radius: 30px;
    margin: 7px auto;
}
.dashboard-blocks .dash-box img
{
    width: 30px;
    margin-top: 10px;
}
.dashboard-blocks .dash-box p
{
    font-family: manrope-semibold;
    font-size:16px;
    color:#7985A1;
    margin-top:10px;
}

.donut-chart-container
{
    width:70%;
    margin:0 auto;
}
.donut-chart-container h3
{
    font-family: manrope-bold;
    font-size:20px;
    color:#2B2B2B;
}
.donut-chart-container h3  span
{
    font-family: manrope-medium;
    font-size: 16px;
    color:#565656;
    float:right;
}
.donut-chart-container .donut-chart {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(#F98752 0% 30%, /* First segment (Recordings) */ #9852B3 30% 70%, /* Second segment (Screenshots) */ #FE76C2  70% 100% /* Third segment (Other works) */);
    margin-top: 30px;
  }

.donut-chart-container .donut-chart::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

.donut-chart-container .legend {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 70px;
    margin-left: 50px;
  }

.donut-chart-container .legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-family: manrope-regular;
    color:#7A86A1;
  }

.donut-chart-container .legend-color {
    width: 20px;
    height: 20px;
    border-radius: 42%;
  }
  /*----------------------- Bar gharph style ---------------------------------*/
  .bar-chart-container {
    width: 80%;
    text-align: center;
    margin: 0 auto;
    margin-top: 60px;
    margin-bottom: 10px;
    box-shadow: 0px 0px 15px #80808024;
    border-radius: 25px;
    padding: 30px 25px;
  }
  .bar-chart-container .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bar-chart-container .header h2
  {
    font-family: manrope-bold;
    font-size:22px;
    color:#2B2B2B;
  }
  .bar-chart-container .bar-chart-wrapper {
    display: flex;
    align-items: flex-end;
    position: relative;
    margin-top: 40px;
  }

  .bar-chart-container  .y-axis {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 200px;
        margin-right: 10px;
  }

  .bar-chart-container  .tick {
    font-size: 12px;
    color: #999;
    text-align: right;
    padding-right: 5px;
  }

  .bar-chart-container  .bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 300px;
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
  }
.bar-chart-container .toggle {
    display: flex;
    gap: 10px;
  }

 .bar-chart-container .toggle button {
    padding: 5px 10px;
    border: none;
    background-color: #f4f4f4;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-family: manrope-regular;
    color:#7A86A1;
  }

 .bar-chart-container .toggle button.active {
    background-color: #6a3df2;
    color: #fff;
  }

  .bar-chart-container .bar-chart {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 200px;
    padding: 0 10px;
    margin-bottom: 20px;
    border-left: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    position: relative;
  }

  .bar-chart-container .bar-chart::after {
    content: "0";
    position: absolute;
    left: -15px;
    bottom: -10px;
    font-size: 12px;
    color: #999;
  }

  .bar-chart-container .bar {
    position: relative;
    width: 30px;
    background: linear-gradient(to top, #ff6f91, #6a3df2);
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    height: var(--height);
  }

  .bar-chart-container .bar:hover {
    transform: scale(1.1);
  }

  .bar-chart-container .bar::after {
    content: attr(data-label);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #666;
  }

  .bar-chart-container .legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    color: #666;
  }

  .bar-chart-container .legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
  }

  .bar-chart-container .legend-color.new {
    background: linear-gradient(to right, #ff6f91, #6a3df2);
  }

  .bar-chart-container .legend-color.alerts {
    background: #ddd;
  }
  .chart-shadow
  {
    box-shadow: 0px 6px 10px #80808021;
  }
/*----------------------------------- Dashboard- graph end --------------------------------*/
/*-------------------------------------- Analytics-circle chart ----------------------------*/
.analytics-container
{
    width: 95%;
    margin: 0 auto;
    white-space:nowrap;
    overflow: auto;
}
.analytics-circle-chart
{
    padding: 30px 30px;
    box-shadow: 0px 6px 10px #80808021;
    border-radius: 10px;
}
.analytics-bar-chart
{
    padding: 30px 30px;
    box-shadow: 0px 6px 10px #80808021;
    border-radius: 10px;
}
.analytics-circle-chart .chart-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
  }

  .analytics-circle-chart  .chart {
    text-align: center;
  }
  .analytics-circle-chart .chart .circle
  {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    position: relative;
  }
  .analytics-circle-chart .chart:nth-child(1) .circle {
    background: conic-gradient(#E9A897 0%,   #E9A897 var(--percent), #f0f0f0 var(--percent));
  }
  .analytics-circle-chart .chart:nth-child(2) .circle {
    background: conic-gradient(#97CFBE 0%, #97CFBE var(--percent), #f0f0f0 var(--percent));
  }
  .analytics-circle-chart .chart:nth-child(3) .circle {
    background: conic-gradient(#F1A1A7 0%, #F1A1A7 var(--percent), #f0f0f0 var(--percent));
  }
  .analytics-circle-chart .circle::after {
    content: attr(data-percent) '%';
    font-weight: bold;
    color: #333;
    position: absolute;
    background-color: #fff;
    border-radius: 60px;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-family: manrope-regular;
    color:#7A86A1;
  }

  /*------------------------------ Dashboard Graph end -----------------------------------*/
  .filter-buttons
  {
    background-image:url('../images/select-down.png');
    background-size:8px;
    background-position: 95% 50%;
    background-repeat:no-repeat;
  }
  .autocomplete-suggestions
  {
    background-color: #fff;
    margin-top: 22px;
    box-shadow: 0px 0px 10px #cfcccc;
    padding: 9px;
    border-radius: 8px;
    font-family: manrope-medium;
    font-size:13px;
  }
  .autocomplete-suggestions .autocomplete-suggestion
  {
    padding: 3px 1px;
  }
  .select2-dropdown
  {
    border-radius: 7px;
    border: 1px solid #ebebeb !important;
  }
  .select2-dropdown input#custom-textarea
  {
    box-shadow: 0px 0px 10px #8080805c;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    /* margin-top: 5px; */
  }
  .select2-dropdown input#custom-textarea::-webkit-input-placeholder
  {
    font-family: manrope-regular !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #484444b2 !important;
    letter-spacing: 1px !important;
  }
.table-filter-block  .select2-container--default .select2-selection--multiple
{
    height: 37px !important;
    border: 1px solid #EBEBEB !important;
    font-family: manrope-medium !important;
    border-radius: 12px !important;
    padding-bottom: 0px !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
   width: 100%;
   max-width:170px !important;
}

.popup-modal .select2-container--default .select2-selection--multiple
{
    height: 40px !important;
    border: 1px solid #EBEBEB !important;
    font-family: manrope-medium !important;
    border-radius: 15px !important;
    padding-bottom: 0px !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
   width: 100%;
   max-width:100% !important;
}
.popup-modal .select2-container--default .select2-selection--multiple .select2-selection__clear
{
  margin-top:0px;
}
.select2-container--default .select2-selection--multiple:focus
{
  border: 1px solid #437651 !important;
}
.select2-container--default .select2-selection--multiple::-webkit-scrollbar
{
  display:none !important;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: block !important;
    list-style: none !important;
    padding: 0 !important;
    margin-top: 3px;
}
.select2-container--default .select2-search--inline .select2-search__field
{
  /* padding-top: 5px; */
  /* padding-left: 10px !important; */
  height: 29px !important;
  font-size: 12px !important;
  font-family: manrope-regular !important;
  margin-top:0px !important;
}
.table-filter-block .select2-container--default .select2-search--inline .select2-search__field
{
  padding-top:6px;
}
/* .select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder
{
  padding-top:0px;
  margin-top:0px;
} */
 .select2-container--default .select2-search--inline .select2-search__field::-webkit-input-placeholder {
  font-size: 12px;
  color: #c7ccd8;
  margin-top:0px !important;
  padding-top:0px !important;
}
.select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
  font-size: 12px;
  color: #c7ccd8;
    margin-top:0px !important;
  padding-top:0px !important;
}
.select2-container--default .select2-search--inline .select2-search__field:-ms-input-placeholder {
  font-size: 12px;
  color: #c7ccd8;
    margin-top:0px !important;
  padding-top:0px !important;
}
.select2-container--default .select2-search--inline .select2-search__field::placeholder {
  font-size: 12px;
  color: #c7ccd8;
    margin-top:0px !important;
  padding-top:0px !important;
}
.select2-container--default .select2-results__option
{
    font-family: manrope-regular !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #484444 !important;
    letter-spacing: 1px !important;
    margin-bottom: 5px;
    border-radius: 5px;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: #cce7d4 !important;
    color: rgb(0, 0, 0) !important;
    margin-bottom: 5px;
    border-radius: 5px;
}
.select2-container--default .select2-results__option--selected{
    background-color: #437651 !important;
    color: #fff !important;
    margin-bottom: 5px;
    border-radius: 5px;
}
.select2-container--open .select2-dropdown--below
{
    padding-left: 5px;
    padding-right: 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice
{
    font-size: 12px !important;
    background-color: #cce7d4 !important;
    color: #594a56 !important;
    border: 1px solid #b7bcb8 !important;
    font-family: manrope-regular !important;
}
.dataTables_filter
{
  display: none !important;
}
.all-table
{
  white-space: nowrap;
}
.all-table thead th:nth-child(1){
text-align: left !important;
}
.all-table thead th{
    text-align: left !important;
    color:#3D3D3D;
    font-family: manrope-regular !important;
    font-size:12px;
    padding-left: 32px !important;
}
.all-table thead th.status ,.all-table thead th.action ,.all-table thead th.people{
    text-align: left !important;
    color:#3D3D3D;
    font-family: manrope-regular !important;
    font-size:12px;
}
.all-table thead th.status
{
  min-width:90px;
}
.all-table thead th.action
{
  min-width:170px !important;
}
.all-table thead th.people
{
  min-width:70px
}
.all-table thead th.linked
{
  min-width:250px
}
.all-table thead th.companyName ,.all-table thead th.projectName ,.all-table thead th.company ,.all-table thead th.name ,.all-table thead th.email ,.all-table thead th.equipmentName ,.all-table thead th.mappedto
{
  min-width:150px !important;
}
.all-table thead th.email
{
  min-width:100px !important;
}
.all-table thead th.mappedto
{
  min-width:100px !important;
}
.all-table thead th.dateCreated , .all-table thead th.location ,.all-table thead th.created ,.all-table thead th.accesslevel , .all-table thead th.equipmentCode , .all-table thead th.equipmentType
{
  min-width:80px !important;
}
#search-input:focus-visible
{
  border: 1px solid #437651;
    outline: none;
}
.dataTables_wrapper
{
    height: calc(100vh - 249px);
    overflow-y: scroll;
    overflow-x: scroll;
}
.dataTables_info
{
  position: fixed;
  bottom:20px;
  left:160px;
  background-color: #fff;
}
.dataTables_paginate
{
  position: fixed;
  bottom: 20px;
  right: 41px;
  background-color: #fff;
}
table.dataTable thead>tr>th.sorting:before, table.dataTable thead>tr>th.sorting:after, table.dataTable thead>tr>th.sorting_asc:before, table.dataTable thead>tr>th.sorting_asc:after, table.dataTable thead>tr>th.sorting_desc:before, table.dataTable thead>tr>th.sorting_desc:after, table.dataTable thead>tr>th.sorting_asc_disabled:before, table.dataTable thead>tr>th.sorting_asc_disabled:after, table.dataTable thead>tr>th.sorting_desc_disabled:before, table.dataTable thead>tr>th.sorting_desc_disabled:after, table.dataTable thead>tr>td.sorting:before, table.dataTable thead>tr>td.sorting:after, table.dataTable thead>tr>td.sorting_asc:before, table.dataTable thead>tr>td.sorting_asc:after, table.dataTable thead>tr>td.sorting_desc:before, table.dataTable thead>tr>td.sorting_desc:after, table.dataTable thead>tr>td.sorting_asc_disabled:before, table.dataTable thead>tr>td.sorting_asc_disabled:after, table.dataTable thead>tr>td.sorting_desc_disabled:before, table.dataTable thead>tr>td.sorting_desc_disabled:after
{
  left:10px !important;
  display:flex;
}
.form-list-table table tbody tr:hover
{
  background-color:#dbe9e0 !important;
}
.sidebar-toggle {
  cursor: pointer;
}
.sidebar-mobile
{
    z-index: 999;
    background-color: #fff;
    display: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateX(-100%);
    opacity: 0;
}
.camera-all-tables
{
  margin-left:86px;
}
.sidebar-mobile.sidebar-collapsed {
    display: block;
    transform: translateX(0);
    opacity: 1;
}
.topbar
{
  position:fixed;
}
.filter-resp
  {
      display:none;
  }
.check-block
{
  width:20px !important;
  padding: 6px 10px !important;
}
.login-bg
{
    background-image:url("../images/login-bg.png");
    background-size:100% 100%;
}
.glass-box {
    width: 480px;
    padding: 40px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);            /* blur the background */
    -webkit-backdrop-filter: blur(10px);    /* for safari */

    border: 1px solid rgba(255, 255, 255, 0.3); /* slight border */
}
