@charset "UTF-8";
.login-container {
  border: 1px solid #414042;
  border-radius: 5px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.login-container h2 {
  text-align: center;
}
.login-container .section-remember-me {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.login-container button {
  background-color: #414042;
  color: white;
}
.login-container button:hover {
  background-color: #414042;
}

.rz-header {
  background-color: transparent !important;
  min-height: auto !important;
}

.top-bar {
  background-color: #414042;
  min-height: 3.125rem;
}

.main-profile-header {
  display: flex;
  color: white;
  background-color: #414042;
}
.main-profile-header .custom-button {
  border: none;
  background: none !important;
  box-shadow: none !important;
  border-right: 3px solid #949699 !important;
  border-radius: 0 !important;
  height: 100% !important;
  color: white !important;
  font-size: 20px !important;
}
.main-profile-header .custom-button:hover {
  box-shadow: none !important;
  background: #bf781d !important;
}
.main-profile-header .custom-button .mat-icon {
  margin-right: 5px !important;
  transform: scale(1.2);
}
.main-profile-header .header-title {
  display: flex;
  padding: 0 10px;
}

.has-right {
  color: green !important;
}

.has-not-right {
  color: red !important;
}

.top-bar {
  background-color: #414042;
  min-height: 3.125rem;
}

.main-profile-header {
  display: flex;
  color: white;
  background-color: #414042;
}
.main-profile-header .custom-button {
  border: none;
  background: none !important;
  box-shadow: none !important;
  border-right: 3px solid #949699 !important;
  border-radius: 0 !important;
  height: 100% !important;
  color: white !important;
  font-size: 20px !important;
}
.main-profile-header .custom-button:hover {
  box-shadow: none !important;
  background: #bf781d !important;
}
.main-profile-header .custom-button .mat-icon {
  margin-right: 5px !important;
  transform: scale(1.2);
}
.main-profile-header .header-title {
  display: flex;
  padding: 0 10px;
}

.rz-panel-menu .rz-navigation-menu .rz-navigation-item-wrapper-active {
  background-color: #414042 !important;
  color: white !important;
}

.rz-panel-menu .rz-navigation-menu .rz-navigation-item-wrapper-active .rz-navigation-item-icon {
  color: #f09500 !important;
}

.sidebar-menu-item.selected {
  box-shadow: none !important;
  background: #bf781d !important;
}
.sidebar-menu-item :hover {
  box-shadow: none !important;
  background: #bf781d !important;
}

.standard-card {
  flex: none !important;
  min-width: 100% !important;
  max-width: 100% !important;
  min-height: 100px !important;
  max-height: 400px !important;
  position: relative !important;
  align-content: center;
  display: block;
  padding-bottom: 0 !important;
  margin-top: 5px;
}
.standard-card div {
  height: 100%;
}

.claim-item {
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background: linear-gradient(to top, lightgrey, white);
}
.claim-item:hover {
  background: #f09500 !important;
  cursor: pointer;
}

.standard-buttons {
  height: 30px;
  width: fit-content;
}
.standard-buttons.add {
  background-color: #4340d2 !important;
}
.standard-buttons.edit {
  background-color: #2196f3 !important;
}
.standard-buttons.delete {
  background-color: #F44336 !important;
}
.standard-buttons.duplicate {
  background-color: #4340d2 !important;
}

.rz-tabview-nav .rz-tabview-selected {
  color: #414042 !important;
  position: relative;
}

.rz-tabview.rz-tabview-top > .rz-tabview-nav .rz-tabview-selected {
  border-top-width: 0;
  border-bottom: 3px solid #f09500 !important;
}

.rz-tabview-nav li a, .rz-tabview-nav li {
  padding-inline: 20px !important;
}

.rz-datalist-data {
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
}

.rz-datalist-data > li {
  margin: 0 !important;
}

body span.switcher {
  position: relative;
  width: 80px;
  height: 36px;
  border-radius: 5px;
  overflow: hidden;
}
body span.switcher input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 80px;
  height: 36px;
  border-radius: 5px;
  background-color: #222;
  outline: none;
  font-size: 16px;
  font-family: "Arial Unicode MS", sans-serif;
  transition: background-color 0s 0.2s;
}
body span.switcher input:before {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}
body span.switcher input:checked {
  background-color: #ffffff;
}
body span.switcher input:checked:before {
  content: "WHITE";
  color: #1e1e1e;
}
body span.switcher input:checked + label {
  background: #ffffff;
  animation: turn-on 0.2s ease-out;
}
@keyframes turn-on {
  0% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
body span.switcher input:not(:checked) {
  background: #1e1e1e;
}
body span.switcher input:not(:checked):before {
  content: "BLACK";
  color: #ffffff;
}
body span.switcher input:not(:checked) + label {
  background: #1e1e1e;
  animation: turn-off 0.2s ease-out;
}
@keyframes turn-off {
  0% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}
body span.switcher label {
  z-index: 1;
  position: absolute;
  top: 0px;
  bottom: 10px;
  width: 80px;
  height: 36px;
  border-radius: 5px;
}

.switcher__aspectRadio {
  background-color: rgba(255, 255, 255, 0.2);
}

body span.switcher__aspectRadio {
  position: relative;
  width: 80px;
  height: 36px;
  border-radius: 5px;
  overflow: hidden;
}
body span.switcher__aspectRadio input {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 80px;
  height: 36px;
  border-radius: 5px;
  background-color: #222;
  outline: none;
  font-size: 16px;
  font-family: "Arial Unicode MS", sans-serif;
  transition: background-color 0s 0.2s;
}
body span.switcher__aspectRadio input:before {
  z-index: 2;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}
body span.switcher__aspectRadio input:checked {
  background-color: #ffffff;
  background: url("../icons/buttons/AspectRatioRectangle.svg");
  background-repeat: no-repeat;
  background-position: center;
}
body span.switcher__aspectRadio input:checked + label {
  background: #ffffff;
  animation: turn-on 0.2s ease-out;
}
@keyframes turn-on {
  0% {
    left: 100%;
  }
  100% {
    left: 0%;
  }
}
body span.switcher__aspectRadio input:not(:checked) {
  background: url("../icons/buttons/AspectRatioSquare.svg");
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
body span.switcher__aspectRadio input:not(:checked) + label {
  background: #1e1e1e;
  animation: turn-off 0.2s ease-out;
}
@keyframes turn-off {
  0% {
    right: 100%;
  }
  100% {
    right: 0%;
  }
}
body span.switcher__aspectRadio label {
  z-index: 1;
  position: absolute;
  top: 0px;
  bottom: 10px;
  width: 80px;
  height: 36px;
  border-radius: 5px;
}

/* Hide the input */
input.yesnoswitch[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

label.check-trail {
  display: flex;
  align-items: center;
  width: 40px;
  height: 20px;
  background: #395C74;
  border-radius: 2.5em;
  transition: all 0.5s ease;
  cursor: pointer;
}

span.check-handler {
  display: flex;
  margin-left: 3px;
  justify-content: center;
  align-items: center;
  width: 15px;
  height: 15px;
  background: #122231;
  border-radius: 50%;
  transition: all 0.5s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
span.check-handler:before {
  content: "×";
  color: white;
  font-size: 15px;
}

input.yesnoswitch[type=checkbox]:checked + .check-trail {
  background: #2C8ACC;
}
input.yesnoswitch[type=checkbox]:checked + .check-trail .check-handler {
  margin-left: 22px;
  background: #0D3B6D;
}
input.yesnoswitch[type=checkbox]:checked + .check-trail .check-handler::before {
  font-size: 9px;
  content: "✔";
}

/* Slider *
 * ====== */
/* ## Slider main element */
input[type=range] {
  box-sizing: content-box;
  display: block;
  margin: 0;
  padding: 0;
  font-size: inherit;
  width: 19.6em;
  height: 1em;
  border-radius: 0.25em;
  border: 0.2em solid #949699;
  background-color: #949699;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s linear;
  box-shadow: 0 0 0 0 transparent;
}
input[type=range]:focus {
  box-shadow: 0 0 0 0.1em #949699;
}
input[type=range]:hover {
  box-shadow: 0 0 0 0.15em #f09500;
}

/* ## Slider components */
/* ### Slider::-track */
input[type=range]::-webkit-slider-runnable-track {
  border: none;
  background: none;
  height: 100%;
  width: 100%;
}
input[type=range]::-moz-range-track {
  border: none;
  background: none;
  height: 100%;
  width: 100%;
}
input[type=range]::-ms-track {
  border: none;
  background: none;
  height: 100%;
  width: 100%;
}

/* ### Slider::-thumb */
input[type=range]::-webkit-slider-thumb {
  margin: 0.05em 0.05em;
  padding: 0;
  height: 0.9em;
  width: 3.6em;
  border-radius: 0.1em;
  box-sizing: border-box;
  border: none;
  background-color: #f09500;
  box-shadow: -16em 0 0 0 #f09500, -12em 0 0 0 #f09500, -8em 0 0 0 #f09500, -4em 0 0 0 #f09500, 4em 0 0 0 #414042, 8em 0 0 0 #414042, 12em 0 0 0 #414042, 16em 0 0 0 #414042;
  cursor: ew-resize;
}
input[type=range]::-moz-range-thumb {
  margin: 0.05em 0.05em;
  padding: 0;
  height: 0.9em;
  width: 3.6em;
  border-radius: 0.1em;
  box-sizing: border-box;
  border: none;
  background-color: #f09500;
  box-shadow: -16em 0 0 0 #f09500, -12em 0 0 0 #f09500, -8em 0 0 0 #f09500, -4em 0 0 0 #f09500, 4em 0 0 0 #414042, 8em 0 0 0 #414042, 12em 0 0 0 #414042, 16em 0 0 0 #414042;
  cursor: ew-resize;
}
input[type=range]::-ms-thumb {
  margin: 0.05em 0.05em;
  padding: 0;
  height: 0.9em;
  width: 3.6em;
  border-radius: 0.1em;
  box-sizing: border-box;
  border: none;
  background-color: #f09500;
  box-shadow: -16em 0 0 0 #f09500, -12em 0 0 0 #f09500, -8em 0 0 0 #f09500, -4em 0 0 0 #f09500, 4em 0 0 0 #414042, 8em 0 0 0 #414042, 12em 0 0 0 #414042, 16em 0 0 0 #414042;
  cursor: ew-resize;
}

/* ## Browser tweaks */
/* ### webkit */
input[type=range], input[type=range]::-webkit-slider-runnable-track, input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}

/* ### IE */
input[type=range]::-ms-track {
  color: transparent;
}
input[type=range]::-ms-fill-lower, input[type=range]::-ms-fill-upper, input[type=range]::-ms-tooltip {
  display: none;
}

html, body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1:focus {
  outline: none;
}

a, .btn-link {
  color: #0071c1;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
  padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}

.blazor-error-boundary::after {
  content: "An error has occurred.";
}

.loading-progress {
  position: relative;
  display: block;
  width: 8rem;
  height: 8rem;
  margin: 20vh auto 1rem auto;
}

.loading-progress circle {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 0.6rem;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
}

.loading-progress circle:last-child {
  stroke: #1b6ec2;
  stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
  transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
  position: absolute;
  text-align: center;
  font-weight: bold;
  inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
  content: var(--blazor-load-percentage-text, "Loading");
}

code {
  color: #c02d76;
}

/*# sourceMappingURL=0_ImportsMain.css.map */
