/* _content/webenology.blazor.components/ComboBoxComponent/ComboBox.razor.rz.scp.css */
.form-group[b-pmcngr5f25] {
    position: relative;
}

.combobox-border[b-pmcngr5f25] {
    border:1px solid #ccc;
    border-radius: 6px;
}

.combobox-border > *[b-pmcngr5f25]{
    border:none;
}

.list-group[b-pmcngr5f25] {
    position: absolute;
    top: 32px;
    left: 0;
    background-color: white;
    width: 100%;
}

.list-group-container[b-pmcngr5f25] {
    box-shadow: 0 3px 4px #cecece;
    border-radius: 4px;
    z-index: 4;
}

[b-pmcngr5f25] .mark, [b-pmcngr5f25] mark {
    padding: 0.2em 0;
}

.add-new[b-pmcngr5f25] {
    text-align: center;
    cursor: pointer;
}

    .add-new:hover[b-pmcngr5f25] {
        background-color: #34495e !important;
        color: white !important;
    }

.not-found[b-pmcngr5f25] {
    text-align: center;
    color: #cecece;
}

.focused[b-pmcngr5f25] {
    background-color: #34495e !important;
    color: white !important;
}

.max-height[b-pmcngr5f25] {
    max-height: 120px;
    overflow-y: auto;
}

.show-remove-input[b-pmcngr5f25] {
    border-right: 0;
}

.show-remove-remove[b-pmcngr5f25] {
    border-left: 0;
    padding: 0;
    background: white;
}

.show-remove-icon[b-pmcngr5f25] {
    padding: 3px 6px;
    cursor: pointer !important;
    color: #cecece;
}

    .show-remove-icon:hover[b-pmcngr5f25] {
        color: inherit !important;
    }

.hide[b-pmcngr5f25] {
    display: none;
}

.form-error[b-pmcngr5f25] {
    color: red;
    font-size: 0.85em;
}

input[readonly][b-pmcngr5f25] {
    background-color: #fff;
}
/* _content/webenology.blazor.components/ConfirmComponent/Confirm.razor.rz.scp.css */
.backdrop[b-rk263n38ug] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .backdrop.hidden[b-rk263n38ug] {
        display: none;
    }

    .backdrop .card[b-rk263n38ug] {
        min-width: 300px;
    }

.text-right[b-rk263n38ug] {
    text-align: right;
}

.bounce-in[b-rk263n38ug] {
    animation: bounce-in-b-rk263n38ug 0.3s cubic-bezier(0.4, 0, 0.6, 1);
    animation-iteration-count: 1;
}

@keyframes bounce-in-b-rk263n38ug {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}
/* _content/webenology.blazor.components/DatePickerComponent/DatePicker.razor.rz.scp.css */
.flatpickr-input[readonly][b-dx7valqcm1] {
  background-color: #fff !important;
}
.flatpickr-input[disabled][b-dx7valqcm1] {
  background-color: #dfdfdf !important;
}
.form-error[b-dx7valqcm1] {
  border: 1px solid red;
  border-right: none;
}
.error-icon-holder[b-dx7valqcm1] {
  border: 1px solid red;
  border-left: none;
}
.error-icon-holder:not(:last-child)[b-dx7valqcm1] {
  border-right: none;
}
.error-icon-holder i[b-dx7valqcm1] {
  color: red;
}
.link[b-dx7valqcm1] {
  cursor: pointer;
}
.webenology-error[b-dx7valqcm1] {
  color: red;
  font-size: 0.85em;
}
/* _content/webenology.blazor.components/ModalComponent/Modal.razor.rz.scp.css */
.webenology-backdrop[b-nyyuqatyj4] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: baseline;
    z-index: 1000;
    overflow-y: auto;
}

.hide[b-nyyuqatyj4] {
    display: none;
}

.webenology-modal[b-nyyuqatyj4] {
    width: 50%;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: white;
    border-radius: 6px;
    transform: translateY(40px);
    opacity: 0;
}

    .webenology-modal.webenology-modal-lg[b-nyyuqatyj4] {
        width: 80%;
    }

    .webenology-modal.webenology-modal-sm[b-nyyuqatyj4] {
        width: 30%;
    }

[b-nyyuqatyj4] .webenology-modal-body {
    padding: 15px;
    border-top: 1px solid #cecece;
}

[b-nyyuqatyj4] .webenology-modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #cecece;
}

.animate-up[b-nyyuqatyj4] {
    animation: move-up-b-nyyuqatyj4 0.3s ease-out;
    animation-fill-mode: forwards;
}

.animate-away[b-nyyuqatyj4] {
    animation: move-away-b-nyyuqatyj4 0.3s ease-out;
    animation-fill-mode: forwards;
}

@keyframes move-away-b-nyyuqatyj4 {
    from {
        transform: translateY(0px);
        opacity: 1;
    }

    to {
        transform: translateY(40px);
        opacity: 0;
    }
}


@keyframes move-up-b-nyyuqatyj4 {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0px);
        opacity: 1;
    }
}
/* _content/webenology.blazor.components/ModalComponent/ModalHeader.razor.rz.scp.css */
.webenology-modal-header[b-cfaahg2nwj] {
  padding: 15px !important;
  align-items: center;
  display: flex;
}
.webenology-modal-header .webenology-modal-title[b-cfaahg2nwj] {
  line-height: 1.2;
  flex: 1;
}
.webenology-modal-header .webenology-modal-title .webenology-subheading[b-cfaahg2nwj] {
  font-size: 12px;
  display: block;
  color: #777;
}
.webenology-modal-header .webenology-close[b-cfaahg2nwj] {
  cursor: pointer;
  color: #bbb;
  justify-self: baseline;
  align-self: baseline;
}
.webenology-modal-header .webenology-close i[b-cfaahg2nwj] {
  font-size: 1.7em;
}
.webenology-modal-header .webenology-close:hover[b-cfaahg2nwj] {
  color: #777;
}
/* _content/webenology.blazor.components/NotificationComponent/Notification.razor.rz.scp.css */
.notification-container[b-lshc9d5s9k] {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
  display: flex;
  flex-direction: column;
}
.notification-container[b-lshc9d5s9k]  .notification-item {
  width: 300px;
  border-radius: 6px;
  display: flex;
  margin-bottom: 6px;
  flex-direction: column;
  overflow: hidden;
  min-height: 60px;
}
.notification-container[b-lshc9d5s9k]  .notification-item.animate-in {
  animation: animate-in-b-lshc9d5s9k 0.15s ease-out;
}
.notification-container[b-lshc9d5s9k]  .notification-item.animate-out {
  animation: animate-out-b-lshc9d5s9k 0.3s ease-out;
  animation-fill-mode: forwards;
}
.notification-container[b-lshc9d5s9k]  .notification-item .ni-header {
  flex: 1;
  padding: 6px 6px 3px 6px;
}
.notification-container[b-lshc9d5s9k]  .notification-item .ni-body {
  flex: 2;
  padding: 3px 3px 6px 6px;
}
.notification-container[b-lshc9d5s9k]  .notification-item .ni-bar {
  height: 4px;
}
.notification-container[b-lshc9d5s9k]  .notification-item .ni-bar .bar-color {
  height: 100%;
  width: 100%;
  border-radius: 6px;
  animation-name: bar-to-none-b-lshc9d5s9k;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  background-color: #1565c0;
}
.notification-container[b-lshc9d5s9k]  .notification-item.success {
  background-color: #4caf50;
  color: black;
}
.notification-container[b-lshc9d5s9k]  .notification-item.success:hover {
  background-color: #3d8b40;
}
.notification-container[b-lshc9d5s9k]  .notification-item.warning {
  background-color: #fbc02d;
  color: black;
}
.notification-container[b-lshc9d5s9k]  .notification-item.warning:hover {
  background-color: #f0ad05;
}
.notification-container[b-lshc9d5s9k]  .notification-item.danger {
  background-color: #e53935;
  color: white;
}
.notification-container[b-lshc9d5s9k]  .notification-item.danger:hover {
  background-color: #cd1e1a;
}
@keyframes animate-in-b-lshc9d5s9k {
  from {
    transform: translateY(20px);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes animate-out-b-lshc9d5s9k {
  to {
    opacity: 0;
  }
}
@keyframes bar-to-none-b-lshc9d5s9k {
  to {
    width: 0%;
  }
}
/* _content/webenology.blazor.components/NumberInputComponent/WebNumberInput.razor.rz.scp.css */
.form-error[b-git0dn2tw0] {
    color: red;
    font-size: 0.85em;
}

.form-control.error[b-git0dn2tw0] {
    border: 1px solid red;
    border-right: none;
}

.input-group-text.error[b-git0dn2tw0] {
    border: 1px solid red;
    background-color: white;
    color: red;
    border-left: none;
}
/* _content/webenology.blazor.components/OrderByComponent/OrderBy.razor.rz.scp.css */
.item[b-k6scn8fp7m] {
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
}

    .item span[b-k6scn8fp7m] {
        margin-right: 6px;
    }

    .item:hover span[b-k6scn8fp7m] {
        text-decoration: underline;
    }
/* _content/webenology.blazor.components/TextInputComponent/WebTextInput.razor.rz.scp.css */
.right-10[b-m8a5m1i6uj] {
    right: 10px;
}


.form-error[b-m8a5m1i6uj] {
    border: 1px solid red;
}

.form-control.form-error[b-m8a5m1i6uj] {
    border-right: none;
}

.input-group-text[b-m8a5m1i6uj] {
    background-color: white;
}

.input-group-text.form-error[b-m8a5m1i6uj] {
    border-left: none;
    color: red;
}

.error-message[b-m8a5m1i6uj] {
    font-size: 0.8em;
    color: red;
}
