/* src/styles.scss */
html {
  font-size: 16px;
}
html,
body {
  height: 100%;
  display: flex;
  width: 100%;
}
:root {
  --survey-theme-color: #4296ff;
  --survey-theme-rgb-7: #4296ffb3;
  --survey-theme-rgb-25: #4296ff40;
  --survey-theme-fontcolor:#000000;
}
app-root {
  width: 100%;
}
.hed h1,
.hed h2,
.hed h3,
.hed h4,
.hed h5,
.hed h6 {
  margin: 0;
  font-weight: 600;
}
@media screen and (max-device-width: 680px), screen and (max-width: 680px) {
  html {
    font-size: 12px;
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-family: "Nunito", sans-serif;
}
input,
select,
textarea {
  font-family: inherit;
}
.content-wrapper {
  width: 90%;
  margin: 0 auto;
}
.content-wrapper h1.heading {
  font-size: 2rem;
  margin: 0;
  color: #224291;
}
.box {
  background: #fff;
  margin: 1rem;
  padding: 2rem;
  border: 1px solid #dedede;
}
.box .header {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: 1rem 0;
  margin-top: 0.5rem;
}
.box .header h1 {
  margin: 0;
  font-size: 1.5rem;
  color: #2a2a2a;
  display: flex;
  flex-direction: column;
}
.box .header h1::after {
  content: "";
  display: block;
  width: 40%;
  background: #224291;
  height: 0.2rem;
}
.box .header .actions {
  display: flex;
  justify-content: flex-end;
  flex-grow: 1;
  flex-wrap: wrap;
}
.box .header .actions .action {
  cursor: pointer;
  margin-right: 0.4rem;
  margin-left: 0;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 2px solid #224291;
  background: #224291;
  border-radius: 3px;
}
.box .header .actions .action i {
  color: #fff;
  font-size: 1.6rem;
  margin-right: 0.2rem;
}
.box .header .actions .action p {
  color: #fff;
  margin: 0;
  line-height: 1;
  font-size: 1rem;
  font-weight: 500;
}
.box .form-item {
  margin-bottom: 1rem;
}
.box .form-item label {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
  color: #6f6f6f;
}
.box .form-item input,
.box .form-item select,
.box .form-item textarea {
  font-size: 1rem;
  padding: 1rem;
  border-radius: 3px;
  color: #2a2a2a;
  width: 100%;
}
.box .form-item textarea {
  background: #dedede;
  border: none;
}
.box .form-item textarea::placeholder {
  color: #2a2a2a;
}
.box .form-item select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("./media/chevron_bottom.svg") !important;
  background-size: 15px !important;
  background-repeat: no-repeat !important;
  background-color: #fff !important;
  background-origin: border-box !important;
  padding-left: 10px !important;
  padding-right: 25px !important;
  background-position: 98% center !important;
  text-indent: 0.01px;
  text-overflow: "";
}
.box .form-item select::-ms-expand {
  display: none;
}
.box .form-item.error input,
.box .form-item.error select,
.box .form-item.error textarea {
  border-color: #f5332d;
}
.box .form-item.error input:focus,
.box .form-item.error select:focus,
.box .form-item.error textarea:focus {
  outline: none;
}
.box h3,
.box h2.sub {
  font-size: 1.3rem;
  font-weight: 500;
  color: rgb(49, 46, 46);
  color: #224291;
}
.donut-slice:hover {
  filter: url(#drop-shad);
}
.loading img {
  width: 50px;
  display: block;
  margin: 0 auto;
}
::-webkit-scrollbar {
  width: 5px;
}
select {
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background-color: transparent;
}
.clickable {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: grey;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@keyframes slide-in-blurred-right {
  0% {
    transform: translateX(1000px) scaleX(2.5) scaleY(0.2);
    transform-origin: 0% 50%;
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0) scaleY(1) scaleX(1);
    transform-origin: 50% 50%;
    filter: blur(0);
    opacity: 1;
  }
}
.slide-in-blurred-right {
  animation: slide-in-blurred-right 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.panel {
  margin-bottom: 0 !important;
}
.note-modal {
  z-index: 11111;
}
.note-modal .checkbox input {
  width: fit-content !important;
  min-height: fit-content !important;
}
.overlay {
  z-index: 11111 !important;
}
@media (max-width: 768px) {
  .overlay {
    width: 100vw;
  }
  .overlay .warn {
    height: 60% !important;
    width: 90% !important;
  }
  .overlay .warn .header-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .overlay .warn .header-container .head-search {
    width: 100%;
  }
  .overlay .warn .header-container .submit-buttons {
    gap: 1rem;
  }
  .overlay .warn .header-container .submit-buttons button {
    margin-right: 0;
    width: 100%;
    justify-content: center;
  }
  .overlay .detail-box p {
    flex-wrap: wrap;
  }
}
.tooltip-inner {
  position: fixed;
  margin-left: -1rem;
}

/* src/modules/style1.scss */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.header-container .submit-buttons {
  display: flex;
  flex-shrink: 0;
}
.header-container .submit-buttons button {
  cursor: pointer;
}
.header-container .submit-buttons .del {
  background: transparent;
  border: none;
  font-weight: bold;
  color: rgba(113, 113, 113, 0.44);
  margin-right: 1rem;
  outline: none;
  font-size: 0.875rem;
}
.header-container .head-search {
  display: flex;
  align-items: center;
  width: 50%;
}
.header-container .head-search p {
  margin-right: 2rem;
}
.header-container .head-search input {
  height: 45px;
  border: none;
  background: transparent;
}
.header-container .head-search .search-box {
  display: flex;
  align-items: center;
  flex-grow: 1;
  border-radius: 5px;
  background: rgba(196, 196, 196, 0.1);
}
.header-container .head-search .search-box img {
  width: 0.9rem;
  height: 0.9rem;
  margin-left: 1rem;
}
.header-container p {
  font-size: 1.55rem;
  margin: 0;
  color: #1b1f2e;
  font-weight: 700;
}
.header-container .fkcancel,
.header-container .fksave {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 5px;
  outline: none;
}
.header-container .fkcancel {
  color: #1b1f2e;
  background: none;
}
.header-container .fksave {
  background: #4296ff;
  color: #fff;
  box-shadow: 0px 10px 30px -10px #4296ff;
}
.error {
  background-repeat: no-repeat;
  border-color: #ffbe6e;
  background-image: url("./media/error.svg");
  background-size: contain;
  background-position: right;
}
input {
  padding: 0.4rem 0.7rem;
}
input,
select {
  width: 100%;
  border: 2px solid rgba(112, 112, 112, 0.19);
  color: #717171;
  font-size: 0.87rem;
  border-radius: 5px;
  min-height: 27px;
  font-weight: 700;
  outline: none;
}
input {
  background-image: none;
}
input:focus {
  border: 2px solid rgba(66, 150, 255, 0.5);
  background: #f6f7fb;
}
select {
  background-image: url("./media/select_arrow.svg");
  background-repeat: no-repeat;
  background-position: right;
  background-size: auto;
}
select:focus {
  border: 2px solid rgba(66, 150, 255, 0.5);
}
input::placeholder {
  color: rgba(112, 112, 112, 0.19) !important;
  font-weight: 400 !important;
}
select::placeholder {
  color: rgba(112, 112, 112, 0.19) !important;
  font-weight: 400 !important;
}
textarea {
  font-size: 0.8rem;
  color: #717171;
  outline: none;
  border: 2px solid rgba(112, 112, 112, 0.19);
  border-radius: 5px;
}
textarea:focus {
  border: 2px solid rgba(66, 150, 255, 0.5);
  background: #f6f7fb;
}
select {
  padding: 0.532rem 0.4rem;
}
label {
  display: block;
  margin-bottom: 0.5rem !important;
  font-size: 0.87rem;
  color: #717171;
  font-weight: 600;
}
.cdk-global-scrollblock {
  position: unset !important;
}
.head-text {
  border-bottom: 2px solid;
  flex-grow: 0;
  flex-shrink: 0;
}
.head-text p {
  margin: 0;
  padding-bottom: 0.5rem;
  font-size: 18px;
  font-weight: 600;
}
.fksave {
  display: flex;
  align-items: center;
}
.fksave i {
  font-size: 21px;
  margin-right: 0.5rem;
}
.switch input:checked + span {
  background-color: #47b04b;
  border-color: #47b04b;
  transition: all 0.5s;
}
.switch {
  cursor: pointer;
}
.switch span {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 100px;
  transition: all 0.5s;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
  vertical-align: middle;
}
.switch input:checked + span:after {
  left: 50%;
  transition: all 0.2s;
}
.switch input {
  display: none;
  width: auto;
}
.switch span:after {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #ddd;
  border-radius: 400px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}
.control label {
  margin-bottom: 0 !important;
}
.inp-error {
  display: flex;
  align-items: center;
}
.inp-error app-selecter {
  width: 100%;
}
.inp-error img {
  display: block !important;
  margin-left: -40px;
  height: 37px;
}
input,
button,
select,
textarea {
  line-height: normal;
}
select {
  -webkit-appearance: none;
}
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box .owl-dt-control-button-content {
  padding: 0.3em !important;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box {
  margin-bottom: 0.3em !important;
}
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }
  .header-container .head-search {
    width: 100%;
  }
}

/* node_modules/@danielmoncada/angular-datetime-picker/assets/style/picker.min.css */
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: -webkit-box;
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: -webkit-box;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: .6;
  }
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, .288);
}
.cdk-overlay-transparent-backdrop,
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.owl-dialog-container {
  position: relative;
  pointer-events: auto;
  box-sizing: border-box;
  display: block;
  padding: 1.5em;
  box-shadow:
    0 11px 15px -7px rgba(0, 0, 0, .2),
    0px 24px 38px 3px rgba(0, 0, 0, .14),
    0px 9px 46px 8px rgba(0, 0, 0, .12);
  border-radius: 2px;
  overflow: auto;
  background: #fff;
  color: rgba(0, 0, 0, .87);
  width: 100%;
  height: 100%;
  outline: none;
}
.owl-dt-container,
.owl-dt-container * {
  box-sizing: border-box;
}
.owl-dt-container {
  display: block;
  font-size: 1rem;
  background: #fff;
  pointer-events: auto;
  z-index: 1000;
}
.owl-dt-container-row {
  border-bottom: 1px solid rgba(0, 0, 0, .12);
}
.owl-dt-container-row:last-child {
  border-bottom: none;
}
.owl-dt-calendar {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
}
.owl-dt-calendar-control {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1em;
  width: 100%;
  padding: .5em;
  color: #000;
}
.owl-dt-calendar-control .owl-dt-calendar-control-content {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}
.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button {
  padding: 0 .8em;
}
.owl-dt-calendar-control .owl-dt-calendar-control-content .owl-dt-calendar-control-button:hover {
  background-color: rgba(0, 0, 0, .12);
}
.owl-dt-calendar-main {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  padding: 0 .5em .5em;
  outline: 0;
}
.owl-dt-calendar-view {
  display: flex;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
}
.owl-dt-calendar-multi-year-view {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.owl-dt-calendar-multi-year-view .owl-dt-calendar-table {
  width: calc(100% - 3em);
}
.owl-dt-calendar-multi-year-view .owl-dt-calendar-table .owl-dt-calendar-header th {
  padding-bottom: .25em;
}
.owl-dt-calendar-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.owl-dt-calendar-table .owl-dt-calendar-header {
  color: rgba(0, 0, 0, .4);
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-weekdays th {
  font-size: .7em;
  font-weight: 400;
  text-align: center;
  padding-bottom: 1em;
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider {
  position: relative;
  height: 1px;
  padding-bottom: .5em;
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider:after {
  content: "";
  position: absolute;
  top: 0;
  left: -0.5em;
  right: -0.5em;
  height: 1px;
  background: rgba(0, 0, 0, .12);
}
.owl-dt-calendar-table .owl-dt-calendar-header .owl-dt-calendar-table-divider.owl-calendar-weeks:after {
  left: -1.8em;
}
.owl-dt-calendar-table .owl-dt-calendar-cell {
  position: relative;
  height: 0;
  line-height: 0;
  text-align: center;
  outline: 0;
  color: rgba(0, 0, 0, .85);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-content {
  position: absolute;
  top: 5%;
  left: 5%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  box-sizing: border-box;
  width: 90%;
  height: 90%;
  font-size: .8em;
  line-height: 1;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 999px;
  color: inherit;
  cursor: pointer;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-out {
  opacity: .2;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected) {
  border-color: rgba(0, 0, 0, .4);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-selected {
  color: rgba(255, 255, 255, .85);
  background-color: #3f51b5;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-selected.owl-dt-calendar-cell-today {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .85);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled {
  cursor: default;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
  color: rgba(0, 0, 0, .4);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled > .owl-dt-calendar-cell-content.owl-dt-calendar-cell-selected {
  opacity: .4;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-disabled > .owl-dt-calendar-cell-today:not(.owl-dt-calendar-cell-selected) {
  border-color: rgba(0, 0, 0, .2);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-active:focus > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected),
.owl-dt-calendar-table :not(.owl-dt-calendar-cell-disabled):hover > .owl-dt-calendar-cell-content:not(.owl-dt-calendar-cell-selected) {
  background-color: rgba(0, 0, 0, .04);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range {
  background: rgba(63, 81, 181, .2);
}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-from {
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
}
.owl-dt-calendar-table .owl-dt-calendar-cell-in-range.owl-dt-calendar-cell-range-to {
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}
.owl-dt-calendar-table.owl-calendar-weeks .owl-dt-calendar-cell-content {
  height: 86%;
}
.owl-dt-timer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  height: 7em;
  padding: .5em;
  outline: none;
}
.owl-dt-timer-box {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  width: 25%;
  height: 100%;
}
.owl-dt-timer-content {
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  margin: .2em 0;
}
.owl-dt-timer-content .owl-dt-timer-input {
  display: block;
  width: 2em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .5);
  border-radius: 3px;
  outline: medium none;
  font-size: 1.2em;
  padding: .2em;
}
.owl-dt-timer-divider {
  display: inline-block;
  align-self: flex-end;
  position: absolute;
  width: .6em;
  height: 100%;
  left: -0.3em;
}
.owl-dt-timer-divider:before,
.owl-dt-timer-divider:after {
  content: "";
  display: inline-block;
  width: .35em;
  height: .35em;
  position: absolute;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: currentColor;
}
.owl-dt-timer-divider:before {
  top: 35%;
}
.owl-dt-timer-divider:after {
  bottom: 35%;
}
.owl-dt-control-button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
  background-color: rgba(0, 0, 0, 0);
  font-size: 1em;
  color: inherit;
}
.owl-dt-control-button .owl-dt-control-button-content {
  position: relative;
  display: -webkit-inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  outline: none;
}
.owl-dt-control-period-button .owl-dt-control-button-content {
  height: 1.5em;
  padding: 0 .5em;
  border-radius: 3px;
  -webkit-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}
.owl-dt-control-period-button:hover > .owl-dt-control-button-content {
  background-color: rgba(0, 0, 0, .12);
}
.owl-dt-control-period-button .owl-dt-control-button-arrow {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  width: 1em;
  height: 1em;
  margin: .1em;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.owl-dt-control-arrow-button .owl-dt-control-button-content {
  padding: 0;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
}
.owl-dt-control-arrow-button[disabled] {
  color: rgba(0, 0, 0, .4);
  cursor: default;
}
.owl-dt-control-arrow-button svg {
  width: 50%;
  height: 50%;
  fill: currentColor;
}
.owl-dt-inline-container,
.owl-dt-popup-container {
  position: relative;
  width: 18.5em;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, .2),
    0 8px 10px 1px rgba(0, 0, 0, .14),
    0 3px 14px 2px rgba(0, 0, 0, .12);
}
.owl-dt-inline-container .owl-dt-calendar,
.owl-dt-inline-container .owl-dt-timer,
.owl-dt-popup-container .owl-dt-calendar,
.owl-dt-popup-container .owl-dt-timer {
  width: 100%;
}
.owl-dt-inline-container .owl-dt-calendar,
.owl-dt-popup-container .owl-dt-calendar {
  height: 20.25em;
}
.owl-dt-dialog-container {
  max-height: 95vh;
  margin: -1.5em;
}
.owl-dt-dialog-container .owl-dt-calendar {
  min-width: 250px;
  min-height: 330px;
  max-width: 750px;
  max-height: 750px;
}
.owl-dt-dialog-container .owl-dt-timer {
  min-width: 250px;
  max-width: 750px;
}
@media all and (orientation: landscape) {
  .owl-dt-dialog-container .owl-dt-calendar {
    width: 58vh;
    height: 62vh;
  }
  .owl-dt-dialog-container .owl-dt-timer {
    width: 58vh;
  }
}
@media all and (orientation: portrait) {
  .owl-dt-dialog-container .owl-dt-calendar {
    width: 80vw;
    height: 80vw;
  }
  .owl-dt-dialog-container .owl-dt-timer {
    width: 80vw;
  }
}
.owl-dt-container-buttons {
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 2em;
  color: #3f51b5;
}
.owl-dt-container-control-button {
  font-size: 1em;
  width: 50%;
  height: 100%;
  border-radius: 0;
}
.owl-dt-container-control-button .owl-dt-control-button-content {
  height: 100%;
  width: 100%;
  -webkit-transition: background-color 100ms linear;
  transition: background-color 100ms linear;
}
.owl-dt-container-control-button:hover .owl-dt-control-button-content {
  background-color: rgba(0, 0, 0, .1);
}
.owl-dt-container-info {
  padding: 0 .5em;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.owl-dt-container-info .owl-dt-container-range {
  outline: none;
}
.owl-dt-container-info .owl-dt-container-range .owl-dt-container-range-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: .5em 0;
  font-size: .8em;
}
.owl-dt-container-info .owl-dt-container-range:last-child {
  border-top: 1px solid rgba(0, 0, 0, .12);
}
.owl-dt-container-info .owl-dt-container-info-active {
  color: #3f51b5;
}
.owl-dt-container-disabled,
.owl-dt-trigger-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
  cursor: default !important;
}
.owl-dt-timer-hour12 {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  color: #3f51b5;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box {
  border: 1px solid currentColor;
  border-radius: 2px;
  -webkit-transition: background 200ms ease;
  transition: background 200ms ease;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box .owl-dt-control-button-content {
  width: 100%;
  height: 100%;
  padding: .5em;
}
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:focus .owl-dt-control-button-content,
.owl-dt-timer-hour12 .owl-dt-timer-hour12-box:hover .owl-dt-control-button-content {
  background: #3f51b5;
  color: #fff;
}
.owl-dt-calendar-only-current-month .owl-dt-calendar-cell-out {
  visibility: hidden;
  cursor: default;
}
.owl-dt-inline {
  display: inline-block;
}
.owl-dt-control {
  outline: none;
  cursor: pointer;
}
.owl-dt-control .owl-dt-control-content {
  outline: none;
}
.owl-dt-control:focus > .owl-dt-control-content {
  background-color: rgba(0, 0, 0, .12);
}
.owl-dt-control:not(:-moz-focusring):focus > .owl-dt-control-content {
  box-shadow: none;
}
.owl-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* src/modules/dashboard/d3/styles/d3.widgets.scss */
.d3-donut-chart {
  max-width: 100%;
}
.d3-donut-chart svg {
  max-width: 700px;
  display: block;
  margin: 0 auto;
}
.d3-donut-chart svg .summaries .summary text.head {
  fill: #4d4f5c;
  font-weight: 600;
  font-size: 1.2rem;
}
.d3-donut-chart svg .summaries .summary text.value {
  fill: #409bff;
  font-weight: 600;
  font-size: 1.15rem;
}
.d3-line-chart svg {
  margin: 0 auto;
  display: block;
  margin-bottom: 1rem;
}
.d3-line-chart svg .yline {
  stroke: #eaf0f4;
}
.d3-line-chart svg .xline {
  stroke: #eaf0f4;
}
.d3-line-chart svg path.area-path {
  fill-opacity: 0.3;
}
.d3-progress-round svg {
  margin: 0 auto;
  max-width: 100%;
  display: block;
}
.d3-line-chart svg {
  max-width: 100%;
}

/* src/modules/dashboard/styles/dashboard.styles.scss */
.dashboard-block {
  margin: -25px;
  background: #fff;
  background: #f6faff;
  display: flex;
  align-items: flex-start;
}
.dashboard-views {
  flex-grow: 1;
}
.dashboard-content {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .dashboard-content {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
  .dashboard-block {
    min-height: unset !important;
    background-color: transparent;
  }
}
.dashboard-filters {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgb(255, 255, 255);
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 250px;
  border-left: 1px solid #dedede;
  padding: 10px;
  align-items: stretch;
  transition: all 500ms ease-in-out;
}
.dashboard-filters.shown {
  transition: all 500ms ease-in-out;
  width: 0;
  padding: 0;
}
.filter-header {
  margin-top: 1rem;
}
.filter-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #4296ff;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(67, 148, 255, 0.2);
  margin: 0;
  width: 100%;
  padding-left: 3px;
}
.filter-groups {
  overflow-y: auto;
  transition: all 500ms ease-in-out;
  flex-grow: 1;
}
.filter-groups.shown {
  display: none;
  transition: all 500ms ease-in-out;
}
.filter-group {
  margin-top: 1rem;
  padding: 0.5rem;
}
.filter-group .hd {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-group .hd h3 {
  font-size: 14px;
  font-weight: 700;
  color: #717171;
  margin: 0;
}
.filter-group .hd a {
  color: rgba(113, 113, 113, 0.5);
  font-size: 13px;
  font-weight: 600;
}
.filter-group .filter-items .item {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 0.75rem;
}
.filter-group .filter-items .item .chk {
  display: flex;
  align-items: center;
  flex-grow: 0;
  flex-shrink: 0;
}
.filter-group .filter-items .item .chk i.material-icons {
  font-size: 19px;
  color: rgba(112, 112, 112, 0.3);
}
.filter-group .filter-items .item .chk.marked i {
  color: #4296ff;
}
.filter-group .filter-items .item .name p {
  margin: 0;
  margin-left: 0.5rem;
  font-size: 13px;
  color: #717171;
}
.dashboard-card {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #ececec;
  padding: 1rem;
  margin-bottom: 2rem;
}
.dashboard-card .dc-hdr {
  margin-bottom: 1rem;
}
.dashboard-card .dc-hdr h1 {
  text-align: center;
  font-size: 20px;
  margin: 0;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #4d4f5c;
}
.dashboard-card .dc-hdr h1 a {
  cursor: pointer;
  text-decoration: none;
  color: #4d4f5c;
}
.dashboard-card .dc-hdr h1 a:active,
.dashboard-card .dc-hdr h1 a:visited {
  color: #4d4f5c;
}
@media (max-width: 768px) {
  .dashboard-filters {
    bottom: 60px;
    height: calc(100dvh - 120px) !important;
    top: 60px;
  }
  .dashboard-card .dc-hdr h1 {
    font-size: 1.25rem;
  }
}
.loader img {
  display: block;
  margin: 1rem auto;
  width: 50px;
}
.chart-error p {
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  text-align: center;
}
.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
app-dash-card .dc-hdr h1 {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #2776d6;
  text-align: center;
}
app-dash-card .dc-hdr h1 a {
  color: #2776d6;
  text-decoration: none;
}
app-dash-card .dc-hdr h1 a:visited {
  color: inherit;
}
app-dash-card .dc-hdr h1 a:active {
  color: inherit;
}
app-dash-card:last-child .data-rep {
  border-bottom: 0;
}
.chart .pill-markers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.chart .pill-markers .pill-marker {
  display: flex;
  align-items: center;
  margin: 0.25rem 1rem;
  justify-content: flex-end;
}
.chart .pill-markers .pill-marker .pills {
  display: flex;
  flex-direction: column;
  row-gap: 1px;
}
.chart .pill-markers .pill-marker .pills span {
  font-size: 1rem;
}
.chart .pill-markers .pill-marker .pills img {
  width: 17px;
  margin-left: 2px;
}
.chart .pill-markers .pill-marker .pills .csat {
  width: 22px;
  height: 8px;
}
.chart .pill-markers .pill-marker .pill {
  width: 25px;
  height: 15px;
  border-radius: 10px;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .chart .pill-markers {
    justify-content: unset;
    gap: 0;
  }
  .chart .pill-markers .pill-marker .pill {
    width: 10px;
    height: 5px;
    border-radius: 2px;
  }
}
.meter {
  height: 40px;
  position: relative;
  background: #f0f6fd;
  border-radius: 5px;
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}
.meter.small {
  height: 25px;
}
.meter > span {
  display: block;
  height: 100%;
  border-radius: 5px;
  background-color: #51c27a;
  position: relative;
  overflow: hidden;
}
.meter > span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image:
    linear-gradient(
      -45deg,
      transparent 20%,
      rgba(0, 0, 0, 0.05) 20%,
      rgba(0, 0, 0, 0.05) 30%,
      transparent 30%,
      transparent 70%,
      rgba(0, 0, 0, 0.05) 70%,
      rgba(0, 0, 0, 0.05) 80%,
      transparent 80%);
  z-index: 1;
  background-size: 50px 50px;
  border-radius: 5px;
  overflow: hidden;
}
.d3-score {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.d3-score .score-speedometer {
  width: 30%;
  flex: 0 0 30%;
}
.d3-score .score-speedometer .speedometer svg {
  display: block;
  margin: 0 auto;
}
.d3-score .progress-markers {
  display: flex;
  flex-direction: column;
  width: 70%;
  flex: 1 1 70%;
  gap: 1rem;
}
.d3-score .marker {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.d3-score .marker .exp {
  flex: 0 0 15%;
  text-align: right;
  padding-right: 3rem;
}
.d3-score .marker .exp h2 {
  font-weight: 700;
}
.d3-score .marker .exp h4 {
  color: #374649;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}
.d3-score .marker .pc {
  flex: 0 0 75%;
}
.d3-score .marker-s {
  display: flex;
}
.d3-score .marker-s .pc {
  width: 60%;
  flex: 0 0 60%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.d3-score .marker-s .pc .meter {
  width: 100%;
  margin-right: 1.5rem;
}
.d3-score .marker-s .pc img {
  width: 2.5rem;
}
.d3-score .marker-s .exp {
  margin-right: 1.5rem;
  width: 40%;
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.d3-score .marker-s .exp .name-perc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}
.d3-score .marker-s .exp img {
  width: 2.5rem;
}
.d3-score .marker-s .exp h4 {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #374649;
  margin: 0;
}
.d3-score .marker-s .exp h2 {
  font-weight: 700;
  margin: 0;
  width: 6rem;
  text-align: right;
}
@media (max-width: 768px) {
  .d3-score .marker {
    gap: 0.25rem;
    width: 100%;
  }
  .d3-score .marker .exp {
    padding-right: 0;
    flex: 0 0 30%;
  }
  .d3-score .marker .exp h2 {
    font-size: 1.5rem;
  }
  .d3-score .marker .pc {
    flex: 0 0 60%;
  }
  .d3-score .progress-markers {
    display: flex;
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .d3-score .speedometer svg {
    width: 250px;
    height: 250px;
  }
  .d3-score .marker-s {
    flex-wrap: wrap;
    gap: 1rem;
    margin-right: 0;
  }
  .d3-score .marker-s .exp {
    gap: 1rem;
    width: 100%;
    flex: 0 0 100%;
    margin-right: 0;
  }
  .d3-score .marker-s .exp .name-perc {
    justify-content: flex-start;
    width: 100%;
    display: flex;
    gap: 1rem;
    width: auto;
  }
  .d3-score .marker-s .exp .name-perc h2 {
    width: auto;
  }
  .d3-score .marker-s .pc {
    width: 100%;
    flex: 0 0 100%;
    gap: 1rem;
  }
  .d3-score .marker-s .pc .meter {
    margin-right: 0;
  }
  .dashboard-card {
    width: auto;
    padding: 1rem;
  }
  .dashboard-content {
    padding: 1rem;
  }
  .dashboard-cont {
    margin: 1rem !important;
    overflow: scroll;
    width: calc(100vw - 30px);
    min-height: 200px;
  }
  .agent-dash {
    padding-left: 0;
    padding-right: 0;
    overflow-x: scroll;
  }
}
@media print and (max-device-width: 1550px), print and (max-width: 1550px), screen and (max-device-width: 1550px), screen and (max-width: 1550px) {
  .d3-score {
    flex-direction: column;
  }
  .d3-score .score-speedometer {
    width: auto;
  }
  .d3-score .progress-markers {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1 1 100%;
    gap: 1rem;
  }
  .d3-score .marker-s .exp {
    justify-content: space-between;
  }
  .d3-score .marker {
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .d3-score .marker .exp h2 {
    margin: 0;
  }
  .d3-score .marker .exp h4 {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .resized-dashboard {
    flex-grow: 0;
    width: calc(100vw - 300px);
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
