@charset "UTF-8";
.widget {
  min-height: 100%;
  width: 100%;
  border-radius: 14px;
}
.widget__header {
  position: relative;
  padding: 0;
  border-bottom: 1px solid #E1E2EC;
  min-height: 68px;
  cursor: pointer;
}
.widget__header--flex {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.widget__header-title {
  display: block;
  margin: 0;
  color: #72768B;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: -0.4px;
}
.widget__header-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.widget__body {
  position: relative;
  height: 100%;
  padding: 30px 0;
}
.widget__container {
  height: 100%;
  padding: 0 30px;
}
@media (max-width: 599px) {
  .widget__container {
    padding: 0 15px 0 30px;
  }
}
.widget__container--flex {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

/* Dark theme */
body.mod-skin-dark .widget {
  border-color: #393B43;
}
body.mod-skin-dark .widget__header {
  border-color: #393B43;
}
body.mod-skin-dark .widget__header-title {
  color: #A6AAC1;
}

.widget {
  /* Radio styles */
  /* Checkbox styles */
}
.widget .custom-radio {
  margin-right: 18px;
  padding-left: 30px;
}
.widget .custom-radio .custom-control-label {
  position: relative;
  color: #72768B;
}
.widget .custom-radio .custom-control-label::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -24px;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: transparent;
  z-index: 1;
}
.widget .custom-radio .custom-control-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #72768B;
  background: #FFFFFF;
}
.widget .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background: var(--theme-primary-400);
}
.widget .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  border-color: var(--theme-primary-400);
}
.widget__checkbox {
  position: relative;
}
.widget__checkbox .fas.fa-check {
  opacity: 0;
  position: absolute;
  top: 21px;
  left: 8px;
  font-weight: 400;
  color: #000000;
  transition: all 0.15s linear;
  z-index: 1;
}
.widget__checkbox .custom-checkbox .custom-control-label {
  margin: 0;
  padding: 18px 0 18px 64px;
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}
.widget__checkbox .custom-checkbox .custom-control-label::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 52px;
  height: 32px;
  border: none;
  border-radius: 100px;
  background: #E1E2EC !important;
}
.widget__checkbox .custom-checkbox .custom-control-label::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: all 0.15s linear;
  background-image: none !important;
}
.widget__checkbox .custom-checkbox .custom-control-input:checked ~ .custom-control-label .fas.fa-check {
  opacity: 1;
  left: 29px;
}
.widget__checkbox .custom-checkbox .custom-control-input:checked ~ .custom-control-label {
  font-weight: 400;
}
.widget__checkbox .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: var(--theme-primary-400) !important;
}
.widget__checkbox .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  left: 24px;
  background-size: 12px 9px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* Control of enabling/disabling widget display */
.widget-control {
  position: relative;
  margin: 0;
  padding: 27px 40px 27px 18px;
  border-radius: 5px;
  border: 1px solid #E1E2EC;
  background: #EFF0FA;
  cursor: pointer;
}
.widget-control__container {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}
.widget-control__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E2E4F6;
  transition: all 0.2s linear;
}
.widget-control__image--active {
  color: var(--theme-primary-400);
  background: rgba(var(--theme-rgb-primary), 0.1);
}
.widget-control .custom-control {
  position: absolute;
  top: 10px;
  right: 2px;
}
.widget-control .custom-checkbox .custom-control-label::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #72768B;
}
.widget-control .custom-control-input:checked ~ .custom-control-label::before {
  background: var(--theme-primary-400);
  border-color: var(--theme-primary-400);
}

.widget-info {
  display: grid;
  gap: 4px;
}
.widget-info__title {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}
.widget-info__text {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 13px;
  color: #72768B;
}

/* Dark theme */
body.mod-skin-dark .widget .custom-radio .custom-control-label {
  color: #A6AAC1;
}
body.mod-skin-dark .widget .custom-radio .custom-control-label::after {
  background: transparent;
}
body.mod-skin-dark .widget .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background: var(--theme-primary-400);
}
body.mod-skin-dark .widget .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  border-color: var(--theme-primary-400);
}
body.mod-skin-dark .widget__checkbox .custom-checkbox .custom-control-label {
  color: #A6AAC1;
}
body.mod-skin-dark .widget__checkbox .custom-checkbox .custom-control-label::before {
  background: rgba(46, 48, 56, 0.75) !important;
}
body.mod-skin-dark .widget__checkbox .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: var(--theme-primary-400);
}
body.mod-skin-dark .widget-control {
  background: transparent;
  border-color: #393B43;
}
body.mod-skin-dark .widget-control__image {
  background: #2E3038;
}
body.mod-skin-dark .widget-control__image--active {
  color: var(--theme-primary-400);
  background: rgba(var(--theme-rgb-primary), 0.1);
}
body.mod-skin-dark .widget-control .custom-control-input:checked ~ .custom-control-label::before {
  background: var(--theme-primary-400);
  border-color: var(--theme-primary-400);
}
body.mod-skin-dark .widget-info__title {
  color: #FFFFFF;
}
body.mod-skin-dark .widget-info__text {
  color: #A6AAC1;
}

.widget__actions-menu {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid #E1E2EC;
  border-radius: 14px;
  cursor: pointer;
  z-index: 10;
}
.widget__actions-menu.show:before {
  transform: rotate(45deg);
}
.widget__actions-menu.show:after {
  transform: rotate(135deg);
}
.widget__actions-menu.show .widget__actions-menu-wrapper {
  display: block;
}
.widget__actions-menu:before, .widget__actions-menu:after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 1px;
  background: #72768B;
  transition: all 0.2s linear;
}
.widget__actions-menu:before {
  top: 50%;
  left: calc(50% - 8px);
}
.widget__actions-menu:after {
  top: 50%;
  left: calc(50% - 8px);
  transform: rotate(90deg);
}
.widget__actions-menu ul {
  margin: 0;
  padding: 0;
  border-radius: 5px;
  border: 1px solid #E1E2EC;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.widget__actions-menu ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.widget__actions-menu ul li:first-child a:before, .widget__actions-menu ul li:first-child a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 10px;
  height: 1px;
  background: #72768B;
}
.widget__actions-menu ul li:first-child a:after {
  transform: rotate(90deg);
}
.widget__actions-menu ul li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px 12px 42px;
  color: #72768B;
}
.widget__actions-menu-wrapper {
  display: none;
  position: absolute;
  width: 220px;
  top: 100%;
  right: 0;
  padding-top: 4px;
}
.widget__options {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -20px;
  cursor: pointer;
}
.widget__options.show .widget-options {
  display: block;
}
.widget__options.show .widget-options__container {
  display: block;
}
.widget__options .msp-context-menu {
  font-size: 18px;
}
.widget__options .msp-context-menu:before {
  display: block;
  transform: rotate(90deg);
}
.widget__filters {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.widget__filters.show .widget-filters {
  display: block;
}
.widget__filters.show .widget-filters__container {
  display: block;
}
.widget__filters .msp-calendar {
  font-size: 1.5rem;
}

/* Dark theme */
body.mod-skin-dark .widget__actions-menu {
  border-color: #393B43;
}
body.mod-skin-dark .widget__actions-menu:before, body.mod-skin-dark .widget__actions-menu:after {
  background: #A6AAC1;
}
body.mod-skin-dark .widget__actions-menu ul {
  background: #191C22;
  border-color: #393B43;
}
body.mod-skin-dark .widget__actions-menu ul li a {
  color: #A6AAC1 !important;
}
body.mod-skin-dark .widget__actions-menu ul li a:before, body.mod-skin-dark .widget__actions-menu ul li a:after {
  background: #A6AAC1;
}

.widget-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.widget-list__li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 15px;
}
.widget-list__li--tickets:nth-last-child(5) {
  margin-bottom: 30px;
}
.widget-list__li--tickets:nth-last-child(4) {
  position: relative;
  padding: 0 30px;
  margin: 0 -30px;
}
.widget-list__li--tickets:nth-last-child(4)::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  border-top: 1px solid #E1E2EC;
}
.widget-list__title {
  display: block;
  min-width: 220px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: none;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: -0.4px;
}
.widget-list__item {
  display: block;
  color: #000000;
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  line-height: 15px;
  font-weight: 500;
}
.widget-list__count {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 40px;
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: -0.4px;
  border-radius: 5px;
  background: #A6AAC1;
}
.widget-list__count--big {
  min-width: 82px;
}
.widget-list__count--active {
  background: #22C46C;
}
.widget-list__count--danger {
  background: #DE3730;
}
.widget-list__count--primary {
  background: #ED5D23;
}

/* Dark theme */
body.mod-skin-dark .widget-list__title {
  color: #FFFFFF !important;
}
body.mod-skin-dark .widget-list__item {
  color: #A6AAC1 !important;
}
body.mod-skin-dark .widget-list__li--tickets:nth-last-child(4)::before {
  border-color: #393B43;
}
body.mod-skin-dark .widget-list__count {
  color: #FFFFFF;
  background: #2E3038;
}
body.mod-skin-dark .widget-list__count--active {
  background: #22C46C;
}
body.mod-skin-dark .widget-list__count--danger {
  background: #DE3730;
}
body.mod-skin-dark .widget-list__count--primary {
  background: #ED5D23;
}

.widget--table {
  width: 100%;
}
.widget--table::-webkit-scrollbar {
  height: 7px;
}
.widget--table::-webkit-scrollbar-track {
  background: transparent;
  margin: 4px;
}
.widget--table::-webkit-scrollbar-thumb {
  background-color: #E1E2EC;
  border-radius: 3px;
}
.widget--table .row {
  margin: 0;
}
.widget--table .col-12,
.widget--table .widget__body {
  padding: 0;
}
.widget--table .widget__body .widget__container {
  overflow-y: scroll;
  scrollbar-width: none;
  padding: 0;
}
.widget .widget-table .table {
  margin: 0 !important;
  border: none;
}
.widget .widget-table .table-bordered.dataTable th, .widget .widget-table .table-bordered.dataTable td {
  height: 68px;
  padding: 0 15px;
  font-family: "Roboto", sans-serif;
  vertical-align: middle;
  border: none;
  border-bottom: 1px solid #E1E2EC;
}
.widget .widget-table .table-bordered.dataTable th:first-child, .widget .widget-table .table-bordered.dataTable td:first-child {
  padding-left: 30px;
}
@media (max-width: 599px) {
  .widget .widget-table .table-bordered.dataTable th:first-child, .widget .widget-table .table-bordered.dataTable td:first-child {
    padding: 0 15px;
  }
}
.widget .widget-table .table-bordered.dataTable th {
  color: #72768B;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 16px;
  text-transform: uppercase;
  box-sizing: border-box;
}
.widget .widget-table .table-bordered.dataTable tbody tr:hover {
  background: rgba(225, 226, 236, 0.3);
}
.widget .widget-table .table-bordered.dataTable tbody tr:last-child td {
  border-bottom: none;
}
.widget .widget-table .table-bordered.dataTable tbody tr:last-child td:last-child.p-3 {
  padding: 0 30px !important;
}
@media (max-width: 599px) {
  .widget .widget-table .table-bordered.dataTable tbody tr:last-child td:last-child.p-3 {
    padding: 0 15px !important;
  }
}
.widget .widget-table .table-bordered.dataTable tbody td {
  color: #000000;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 20px;
}
.widget .widget-table .table-bordered.dataTable tbody td a {
  color: #000000;
}
.widget .widget-table .table-hover tbody tr:hover {
  box-shadow: none;
}
.widget .widget-table__status {
  padding: 5px 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.8125rem;
  line-height: 15px;
  text-align: center;
  border-radius: 14px;
}
.widget .widget-table__status.active, .widget .widget-table__status.new {
  color: #22C46C;
  background: rgba(34, 196, 108, 0.12);
}
.widget .widget-table__status.suspended, .widget .widget-table__status.cancelled {
  color: #DE3730;
  background: rgba(255, 84, 73, 0.12);
}

/* Dark theme */
body.mod-skin-dark .widget--table::-webkit-scrollbar-thumb {
  background-color: #393B43;
}
body.mod-skin-dark .widget-table .table-bordered.dataTable th {
  color: #A6AAC1;
  border-color: #393B43;
}
body.mod-skin-dark .widget-table .table-bordered.dataTable td {
  color: #FFFFFF;
  border-color: #393B43;
}
body.mod-skin-dark .widget-table .table-bordered.dataTable td a {
  color: #FFFFFF !important;
}

.widget-options {
  display: none;
  position: fixed;
  width: 330px;
  margin: 0;
  padding-top: 4px;
  z-index: 1000;
}
.widget-options__container {
  display: none;
  border-radius: 5px;
  border: 1px solid #E1E2EC;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: default;
}
.widget-options__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 68px;
  border-bottom: 1px solid #E1E2EC;
}
.widget-options__header-title {
  display: block;
  color: #72768B;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
  text-transform: uppercase;
}
.widget-options__header-buttons {
  display: flex;
  margin-right: -15px;
}
.widget-options__header-buttons a {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  height: 44px;
  padding: 0 15px;
  color: #414659;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 20px;
  transition: all 0.2s linear;
}
.widget-options__header-buttons a:hover {
  color: var(--theme-primary-400);
}
.widget-options__header-buttons a:hover .msp-circle-cross {
  color: var(--theme-primary-400);
}
.widget-options__header-buttons a:hover .svg-save {
  background-color: var(--theme-primary-400) !important;
}
.widget-options__header-buttons a .msp-circle-cross {
  margin-right: 0 !important;
  color: #414659;
  font-size: 1.25rem;
  transition: all 0.2s linear;
}
.widget-options__header-buttons a .svg-save {
  margin-right: 0 !important;
  background-color: #414659 !important;
  transition: all 0.2s linear;
}
.widget-options__body {
  position: relative;
  max-height: 305px;
  margin-right: 4px;
  padding: 15px 30px;
  z-index: 10;
  overflow-y: scroll;
  /* For WebKit */
}
.widget-options__body::-webkit-scrollbar {
  width: 7px;
}
.widget-options__body::-webkit-scrollbar-track {
  background: transparent;
  margin: 4px;
}
.widget-options__body::-webkit-scrollbar-thumb {
  background-color: #E1E2EC;
  border-radius: 3px;
}
.widget-options__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px;
  min-height: 72px;
  border-top: 1px solid #E1E2EC;
}
@media (max-width: 599px) {
  .widget-options__footer {
    padding: 15px 0;
  }
}
.widget-options__footer-text {
  display: block;
  width: 100%;
  padding: 11px 15px;
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 20px;
  transition: all 0.2s linear;
  cursor: pointer;
}
.widget-options__footer-text:hover {
  color: var(--theme-primary-400);
}
.widget-options .btn-refresh {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget-options .btn-refresh > span {
  width: 100%;
}
.widget-options .btn-refresh > span:hover {
  color: var(--theme-primary-400);
}
.widget-options__time-selector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.widget-options__time-selector span {
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 20px;
}

/* Dark theme */
body.mod-skin-dark .widget-options__container {
  background: #191C22;
  border-color: #393B43;
}
body.mod-skin-dark .widget-options__header {
  border-color: #393B43;
}
body.mod-skin-dark .widget-options__header-title {
  color: #A6AAC1;
}
body.mod-skin-dark .widget-options__header-buttons a {
  color: #A6AAC1 !important;
}
body.mod-skin-dark .widget-options__header-buttons a:hover {
  color: var(--theme-primary-400) !important;
}
body.mod-skin-dark .widget-options__header-buttons a:hover *[class*=msp-] {
  color: var(--theme-primary-400);
}
body.mod-skin-dark .widget-options__header-buttons a:hover *[class*=svg-] {
  background-color: var(--theme-primary-400) !important;
}
body.mod-skin-dark .widget-options__header-buttons a *[class*=msp-] {
  color: #A6AAC1;
}
body.mod-skin-dark .widget-options__header-buttons a *[class*=svg-] {
  background-color: #A6AAC1 !important;
}
body.mod-skin-dark .widget-options__body::-webkit-scrollbar-thumb {
  background-color: #393B43;
}
body.mod-skin-dark .widget-options__footer {
  border-color: #393B43;
}
body.mod-skin-dark .widget-options__footer-text {
  color: #A6AAC1;
}
body.mod-skin-dark .widget-options__footer-text:hover {
  color: var(--theme-primary-400);
}
body.mod-skin-dark .widget-options .btn-refresh > span:hover {
  color: var(--theme-primary-400);
}

.widget-modal .modal {
  padding: 0 !important;
}
.widget-modal .modal-dialog {
  max-width: 1000px !important;
  width: 100%;
  margin: 0 auto;
}
.widget-modal .modal-content {
  margin: 0 15px;
  border-radius: 14px;
  border: 1px solid #E1E2EC;
  background: #FFFFFF;
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.05);
}
.widget-modal .modal-header {
  display: flex;
  align-items: center;
  height: 68px;
  padding: 0 30px;
  border-bottom: 1px solid #E1E2EC;
}
@media (max-width: 599px) {
  .widget-modal .modal-header {
    padding: 0 15px;
  }
}
.widget-modal .modal-title {
  display: flex;
  align-items: center;
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
}
.widget-modal .close {
  color: #72768B;
  transition: all 0.2s linear;
}
.widget-modal .modal-body {
  padding: 0 30px;
}
@media (max-width: 599px) {
  .widget-modal .modal-body {
    padding: 0 15px;
  }
}
.widget-modal .modal-footer.reverse-buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  gap: 10px;
  padding: 30px;
}
@media (max-width: 599px) {
  .widget-modal .modal-footer.reverse-buttons {
    padding: 30px 15px;
    flex-wrap: nowrap;
  }
}
.widget-modal .modal-footer.reverse-buttons--centered {
  justify-content: center;
}
.widget-modal .modal-footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 44px;
  margin: 0;
  padding: 12px 24px;
  color: #414659;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  line-height: 14px;
  font-weight: 500;
  background: transparent;
  border-radius: 14px;
  border: 1px solid #414659;
  box-shadow: none;
}
@media (max-width: 599px) {
  .widget-modal .modal-footer .btn {
    width: 100%;
  }
}
.widget-modal .modal-footer .btn.btn-primary {
  color: #FFFFFF;
  background: var(--theme-primary-400);
  border-color: var(--theme-primary-400);
}
.widget-modal__big-title {
  display: block;
  color: #414659;
  font-family: "Roboto", sans-serif;
  font-size: 1.625rem;
  line-height: 36px;
  font-weight: 400;
}
.widget-modal__big-title--centered {
  text-align: center;
}
.widget-modal__subtitle {
  display: flex;
  align-items: center;
  height: 44px;
  margin-bottom: 10px;
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  line-height: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.widget-modal__text {
  display: block;
  margin: 8px 0 0;
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  line-height: 20px;
  font-weight: 400;
}
.widget-modal__text--centered {
  text-align: center;
}
.widget-modal__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 904px) {
  .widget-modal__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .widget-modal__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.widget-modal .custom-control-label::before {
  width: 20px;
  height: 20px;
}
.widget-modal .custom-control-label::after {
  width: 20px;
  height: 20px;
  left: -27px;
}
.widget-modal .widget-control .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23DEE1F9' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

/* Dark theme */
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal .modal-dialog:not(.modal-transparent) .modal-content {
  background: #191C22;
  border-color: #393B43;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal .modal-dialog:not(.modal-transparent) .modal-content .modal-header {
  border-color: #393B43;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal .modal-title {
  color: #A6AAC1;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal__big-title {
  color: #FFFFFF;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal__subtitle, body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal__text {
  color: #A6AAC1;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal .modal-footer .btn {
  color: #A6AAC1;
  background: transparent;
  border-color: #A6AAC1;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .widget-modal .modal-footer .btn.btn-primary {
  color: #FFFFFF;
  background: var(--theme-primary-400);
  border-color: var(--theme-primary-400);
}

.w-settings-menu {
  position: relative;
}
.w-settings-menu.show .w-settings-menu__dropdown {
  display: block;
  z-index: 1;
}
.w-settings-menu__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #A6AAC1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s linear;
  cursor: pointer;
}
.w-settings-menu__icon:hover {
  background: rgba(255, 255, 255, 0.16);
}
.w-settings-menu__icon i {
  font-size: 1.125rem;
}
.w-settings-menu__dropdown {
  display: none;
  position: fixed;
  width: 250px;
}
.w-settings-menu__dropdown-ul {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  border-radius: 5px;
  border: 1px solid #E1E2EC;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.w-settings-menu__dropdown-li {
  list-style-type: none;
  text-decoration: none;
}
.w-settings-menu__dropdown-li a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  color: #72768B;
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 14px;
  transition: all 0.2s linear;
}
.w-settings-menu__dropdown-li a:hover {
  color: #72768B;
  background: rgba(166, 170, 193, 0.12);
}
.w-settings-menu__dropdown-li a:hover i {
  color: #72768B;
}
.w-settings-menu__dropdown-li a i {
  font-size: 1.1rem;
  color: #72768B;
}

body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .w-settings-menu__dropdown-ul {
  background: #191C22;
  border-color: #393B43;
}
body.mod-skin-dark:not(.mod-skin-light) :not(.modal-alert) .w-settings-menu__dropdown-li a {
  color: #A6AAC1;
}

.diagram {
  display: flex;
  gap: 10px;
  height: 112px;
}
@media (max-width: 1439px) {
  .diagram {
    justify-content: space-between;
  }
}

.diagram-day {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 26px;
  height: 100%;
  justify-content: end;
}
.diagram-day.active .diagram-day__value {
  background: var(--theme-primary-400);
}
.diagram-day.active .diagram-day__text {
  color: #5C5E66;
}
.diagram-day__value {
  height: 100%;
  background: rgba(var(--theme-rgb-primary), 0.1);
  border-radius: 5px;
}
.diagram-day__text {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 15px;
  color: #393B43;
  text-align: center;
}

.widget-filters {
  display: none;
  position: fixed;
  width: 330px;
  margin: 0;
  padding-top: 4px;
  z-index: 1000;
}
.widget-filters__container {
  display: none;
  padding: 1.875rem;
  border-radius: 5px;
  border: 1px solid #E1E2EC;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: default;
}
.widget-filters__container .form-label {
  color: #333333;
  font-size: 0.9375rem;
  margin: 0 0.625rem 0.625rem 0 !important;
}
.widget-filters__container .form-group {
  position: relative;
  margin-bottom: 1rem;
}
.widget-filters__container .form-control {
  display: block;
  padding: 0 1.125rem;
  color: #333333;
  font-size: 1rem;
  height: 3rem;
  border: 1px solid #E1E2EC;
  border-radius: 5px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.widget-filters__container .form-control::-webkit-calendar-picker-indicator,
.widget-filters__container .form-control::-moz-calendar-picker-indicator {
  display: none;
}
.widget-filters__container .form-control[type=date]::after {
  content: "📅";
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #007BFF;
  pointer-events: none;
}
.widget-filters__container .d-inline-block {
  position: relative;
}
.widget-filters__buttons {
  display: flex;
  justify-content: space-between;
  gap: 1.125rem;
  margin-top: 1.875rem;
}
.widget-filters__buttons__cancel, .widget-filters__buttons__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  font-size: 0.95rem;
  border-radius: 14px;
  transition: all 0.1s linear;
  cursor: pointer;
}
.widget-filters__buttons__cancel {
  width: 35%;
  color: #414659;
  border: 1px solid #E1E2EC;
}
.widget-filters__buttons__cancel:hover {
  color: var(--theme-primary-400);
  border: 1px solid var(--theme-primary-400);
}
.widget-filters__buttons__submit {
  width: 65%;
  color: #FFF;
  border: 1px solid var(--theme-primary-400);
  background: var(--theme-primary-400);
}
.widget-filters__buttons__submit:hover {
  color: var(--theme-primary-400);
  border-color: var(--theme-primary-400);
  background: transparent;
}

.widget-header {
  padding: 18px 30px;
}
@media (max-width: 500px) {
  .widget-header {
    padding: 18px;
  }
}
.widget-header.details {
  padding: 0;
}
.widget-header .filters {
  display: flex;
  gap: 10px;
  width: 100%;
}
@media (max-width: 500px) {
  .widget-header .filters {
    flex-direction: column;
    gap: 18px;
  }
}
.widget-header .filters.space-between {
  justify-content: space-between;
}
.widget-header .filters .current-date__value {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 60px;
  padding: 8px 10px;
  height: 44px;
  color: #72768B;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  background: #F4F5F7;
  border-radius: 5px;
}
@media (max-width: 500px) {
  .widget-header .filters .current-date__value {
    justify-content: center;
  }
}

/* Dark theme */
body.mod-skin-dark .widget-filters__container {
  background: #191C22;
  border-color: #393B43;
}
body.mod-skin-dark .widget-filters__container .form-label {
  color: #A7AABF;
}
body.mod-skin-dark .widget-filters__container .form-control {
  color: #DFE1F7;
  border-color: #393B42;
  background: #25282D;
}
body.mod-skin-dark .widget-filters__buttons__cancel {
  color: #DFE1F7;
  border-color: #A7AABF;
}
body.mod-skin-dark .widget-filters__buttons__cancel:hover {
  background: rgba(255, 255, 255, 0.1);
}
body.mod-skin-dark .widget-filters__buttons__generate:hover {
  color: #FFF;
}
body.mod-skin-dark .widget-header .filters .current-date__value {
  color: #fff;
  background: #2E3038;
}

.custom-dropdown {
  gap: 10px !important;
}
.custom-dropdown.show .w-dropdown-menu {
  display: block;
}
.custom-dropdown.show .cd-value .msp-arrow {
  transform: rotate(0deg);
}
.custom-dropdown .cd-value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 160px;
  height: 44px;
  padding: 11px 18px 11px 24px;
  color: #72768B;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 20px;
  border-radius: 14px;
  border: 1px solid #E1E2EC;
  background: rgba(166, 170, 193, 0.12);
  cursor: pointer;
}
.custom-dropdown .cd-value:hover {
  background: rgba(166, 170, 193, 0.2);
}
.custom-dropdown .cd-value .msp-arrow {
  color: #72768B;
  width: 18px;
  height: 18px;
  font-size: 16px;
  transform: rotate(180deg);
}
.custom-dropdown .cd-menu {
  display: none;
  position: absolute;
  left: auto !important;
  top: auto !important;
  width: 300px;
  max-height: 360px;
  margin: 0;
  padding-top: 4px;
  color: #72768B;
  background: #F4F5F7;
  border-radius: 5px;
  border: 1px solid #E1E2EC;
  box-shadow: 0 2px 8px 4px rgba(0, 0, 0, 0.05);
  overflow-y: scroll;
  z-index: 1000;
}
.custom-dropdown .cd-menu::-webkit-scrollbar {
  width: 7px;
}
.custom-dropdown .cd-menu::-webkit-scrollbar-track {
  background: transparent;
  margin: 4px;
}
.custom-dropdown .cd-menu::-webkit-scrollbar-thumb {
  background-color: #E1E2EC;
  border-radius: 3px;
}
@media (max-width: 500px) {
  .custom-dropdown .cd-menu {
    width: calc(100% - 36px);
  }
}
.custom-dropdown .cd-menu-item {
  display: flex;
  align-items: center;
  height: 44px;
  width: 100%;
  padding: 0 16px;
  color: #72768B;
  font-size: 0.9375rem;
  line-height: 20px;
  letter-spacing: 0.038px;
  cursor: pointer;
}
.custom-dropdown .cd-menu-item:hover {
  background: rgba(166, 170, 193, 0.2);
}
.custom-dropdown .cd-menu-item.active {
  background: rgba(166, 170, 193, 0.2);
}

.cd-custom-period {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid #E1E2EC;
}
.cd-custom-period__title {
  display: block;
  padding: 0 18px;
  color: #72768B;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 0.9375rem;
}
.cd-custom-period .cd-custom-dates {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
}
.cd-custom-period .cd-custom-dates.single-mode .form-group {
  width: 100%;
}
.cd-custom-period .cd-custom-dates .form-group {
  width: 48%;
  margin: 0;
}
.cd-custom-period .cd-custom-dates .form-group .form-label {
  color: #72768B;
  font-size: 0.8125rem;
  line-height: 0.9375rem;
}
.cd-custom-period .cd-custom-dates .form-group .form-control {
  color: #72768B;
  background: rgba(166, 170, 193, 0.08);
}
.cd-custom-period .cd-custom-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
}
.cd-custom-period .cd-custom-buttons .btn-cancel,
.cd-custom-period .cd-custom-buttons .btn-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  border-radius: 14px;
  cursor: pointer;
}
.cd-custom-period .cd-custom-buttons .btn-cancel {
  color: #72768B;
  border: 1px solid #A6AAC1;
}
.cd-custom-period .cd-custom-buttons .btn-cancel:hover {
  background: rgba(166, 170, 193, 0.2);
}
.cd-custom-period .cd-custom-buttons .btn-apply {
  color: #FFF;
  background: var(--theme-primary);
}
.cd-custom-period .cd-custom-buttons .btn-apply:hover {
  background: var(--theme-primary-600);
}

/* Dark theme */
body.mod-skin-dark .custom-dropdown .cd-value {
  color: #FFF;
  border: 1px solid #FFF;
  background: rgba(166, 170, 193, 0.12);
}
body.mod-skin-dark .custom-dropdown .cd-value:hover {
  background: rgba(166, 170, 193, 0.2);
}
body.mod-skin-dark .custom-dropdown .cd-value .msp-arrow {
  color: #FFF;
}
body.mod-skin-dark .custom-dropdown .cd-menu {
  color: #A6AAC1;
  background: #24282e;
  border: 1px solid #393B43;
}
body.mod-skin-dark .custom-dropdown .cd-menu::-webkit-scrollbar-thumb {
  background-color: #393B43;
}
body.mod-skin-dark .custom-dropdown .cd-menu-item {
  color: #A6AAC1;
}
body.mod-skin-dark .custom-dropdown .cd-menu-item:hover {
  background: #34373f;
}
body.mod-skin-dark .cd-custom-period {
  border-top: 1px solid #393B43;
}
body.mod-skin-dark .cd-custom-period__title {
  color: #5C5E66;
}
body.mod-skin-dark .cd-custom-period .cd-custom-dates {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 18px;
}
body.mod-skin-dark .cd-custom-period .cd-custom-dates .form-group .form-label {
  color: #A6AAC1;
}
body.mod-skin-dark .cd-custom-period .cd-custom-dates .form-group .form-control {
  color: #A6AAC1;
}
body.mod-skin-dark .cd-custom-period .cd-custom-buttons .btn-cancel,
body.mod-skin-dark .cd-custom-period .cd-custom-buttons .btn-apply {
  color: #DEE1F9;
}

.buttons-container {
  display: flex;
}

.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.header-icon:hover *[class*=svg-] {
  background-color: #404040 !important;
}
.header-icon .msp-grid,
.header-icon .msp-lock,
.header-icon .msp-lock-open {
  color: var(--theme-primary-400);
  font-size: 22px;
  cursor: pointer;
}
.header-icon .msp-grid:hover,
.header-icon .msp-lock:hover,
.header-icon .msp-lock-open:hover {
  color: #404040;
}
.header-icon .msp-lock-open {
  font-size: 22px;
}
.header-icon .header-icon-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 0;
  width: 16px;
  height: 16px;
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06px;
  line-height: 16px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 100%;
  background: #FABD1B;
  box-shadow: 0 2px 12px 4px rgba(0, 0, 0, 0.05);
}
.header-icon .header-icon-count.success {
  background: #22C46C;
}
.header-icon .header-icon-count.danger {
  background: #FF5449;
}

/* Dark theme */
body.mod-skin-dark .header-icon .msp-grid,
body.mod-skin-dark .header-icon .msp-lock,
body.mod-skin-dark .header-icon .msp-lock-open {
  color: #888888;
}
body.mod-skin-dark .header-icon:hover .msp-grid,
body.mod-skin-dark .header-icon:hover .msp-lock,
body.mod-skin-dark .header-icon:hover .msp-lock-open {
  color: #a2a2a2;
}

/*# sourceMappingURL=widgets.css.map */
