/* CSS */
.uk-container {
  max-width: 1280px;
}

.uk-navbar-container:not(.uk-navbar-transparent) {
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}

.uk-button {
  border-radius: 5px;
  font-size: 1rem;
  height: 48px;
  text-transform: none;
  display: inline-flex;
  align-items: center;
}

.uk-button-primary {
  background-color: #f26101;
  border: none;
}
.uk-button-primary:hover {
  background-color: #d45501;
}
.uk-button-primary:disabled {
  background-color: transparent;
  color: #b3b3b3;
  border: 1px solid #d9d9d9;
}

.uk-button-default {
  background-color: #f2f2f2;
  color: black;
  border: none;
}

.uk-button-default:hover {
  background-color: #e6e6e6;
  color: black;
}

.uk-button-default:disabled {
  background-color: transparent;
  color: #b3b3b3;
  border: 1px solid #d9d9d9;
}

.uk-button-secondary {
  background-color: transparent;
  color: #f26101;
  border: none;
}
.uk-button-secondary:not(:disabled):hover {
  background-color: #ffefe4;
  color: #d45501;
}
.uk-button-secondary:disabled {
  color: #b3b3b3;
  border: 1px solid #b3b3b3;
}

.uk-tab .uk-active {
  border-bottom: 3px solid #f26101;
  padding: 0;
}
.uk-tab .uk-disabled {
  color: #b3b3b3;
}
.uk-tab .uk-tab-item {
  padding: 0;
}
.uk-tab > * {
  padding-left: 0 !important;
  display: flex;
  justify-content: flex-end;
}
.uk-tab > .uk-active > a {
  border-color: transparent;
}
.uk-tab > * > a {
  font-size: 1rem;
  position: sticky;
  top: 80px;
}
.uk-tab > * > a {
  height: 48px;
  width: 166px;
  padding: 0;
  border: none;
  color: #000;
  border-radius: 5px;
  border-radius: 5px 5px 0px 0px;
  text-transform: none;
  text-transform: capitalize;
  transition: background-color 0.3s;
}
.uk-tab > * > a:not(:disabled):hover {
  background-color: #f2f2f2;
  color: #000;
}

.uk-search-default {
  overflow: hidden;
  border-radius: 5px;
  width: 200px;
}
.uk-search-default .uk-search-input {
  padding-block: 16px;
  padding-inline: 24px;
  border-radius: 5px;
  height: 48px;
  width: 100%;
  background-color: #f2f2f2;
  border-color: transparent;
}
.uk-search-default .uk-search-input:focus {
  border-color: black;
  background-color: #f2f2f2;
}

.uk-form-stacked .uk-form-label {
  font-size: 1rem;
  margin-bottom: 16px;
}

.uk-input {
  padding-block: 16px;
  padding-inline: 24px;
  height: 48px;
  width: 100%;
  background-color: #f2f2f2;
  border: none;
}
.uk-input:focus {
  background-color: #f2f2f2;
}
.uk-input:hover {
  background-color: #f2f2f2;
  cursor: text;
}
.uk-input:disabled {
  background-color: transparent;
}

.uk-checkbox {
  border: 1px solid black;
  border-radius: 3px;
}
.uk-checkbox:checked {
  background-color: black;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11 16" id="Check"><g fill="none" fill-rule="evenodd"><g fill="whie" class="color000000 svgShape"><path d="M12 5l-8 8-4-4 1.5-1.5L4 10l6.5-6.5z" fill="white" class="color000000 svgShape"></path></g></g></svg>');
}
.uk-checkbox:focus {
  border-color: black;
  outline: 0;
  outline-style: none;
}
.uk-checkbox:focus:checked {
  background-color: black;
}
.uk-checkbox:disabled {
  background-color: transparent;
  border: 1px solid #b3b3b3;
}

.uk-hr,
hr {
  border-top: 1px solid #d9d9d9;
  margin: 0 0 16px 0;
}

* + .uk-hr,
* + hr {
  margin-top: 16px;
}

.uk-radio {
  border: 1px solid black;
  border-radius: 100px;
}
.uk-radio:checked {
  border: 1px solid black;
  background-color: transparent;
  background-position: center;
  background-size: contain;
  background-image: url('data:image/svg+xml;utf8,<svg width="10px" height="10px" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="none"><path fill="black" d="M8 3a5 5 0 100 10A5 5 0 008 3z" /></svg>');
}
.uk-radio:focus {
  border-color: black;
}
.uk-radio:focus:checked {
  background-color: transparent;
}

.uk-switch-slider {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 48px;
  height: 24px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #999;
  transition: background-color ease 0.3s;
}
.uk-switch-slider::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  background: #fff;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}
.uk-switch-slider:checked {
  background-color: #f26101;
}
.uk-switch-slider:checked:before {
  left: 25px;
}
.uk-switch-slider:disabled {
  background-color: #f2f2f2;
}
.uk-switch-slider:disabled::before {
  background-color: #999;
}

.uk-switch {
  width: 48px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.uk-switch input {
  display: none;
}

.uk-switch-slider {
  background-color: #999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 500px;
  bottom: 0;
  cursor: pointer;
  transition-property: background-color;
  transition-duration: 0.2s;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.07);
}
.uk-switch-slider:before {
  content: "";
  background-color: #fff;
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  left: 4px;
  top: 3px;
  border-radius: 50%;
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
}

input:checked + .uk-switch-slider {
  background-color: #f26101;
}
input:checked + .uk-switch-slider:before {
  transform: translateX(22px);
}
input:disabled + .uk-switch-slider {
  background-color: #f2f2f2;
}
input:disabled + .uk-switch-slider:before {
  background-color: #999;
}
input:disabled:checked + .uk-switch-slider {
  background-color: #f2f2f2;
}

.uk-select__container {
  width: 416px;
}

.uk-select {
  border-radius: 5px;
  width: 416px;
  height: 48px !important;
  background-color: #f2f2f2;
  border: 1px solid transparent;
  padding: 0 20px;
  transition: all 0.3s;
}
.uk-select:focus {
  border: 1px solid #000;
  background-color: #f2f2f2;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8 5.00001L13 10L12.3 10.7L8 6.40001L3.7 10.7L3 10L8 5.00001Z" fill="gray" /></svg>') !important;
}
.uk-select:not([multiple]):not([size]) {
  background-position: center right 20px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M8 11L3 5.99999L3.7 5.29999L8 9.59999L12.3 5.29999L13 5.99999L8 11Z" fill="gray" /></svg>');
}

.uk-text-bold {
  font-weight: 600 !important;
}

.uk-search--secondary .uk-search-input--secondary {
  border: 1px solid transparent;
  padding-left: 2rem;
  transition: all 0.3s;
}
.uk-search--secondary .uk-search-input--secondary:focus {
  padding-left: 0.5rem;
}
.uk-search--secondary .uk-search-input--secondary:focus + .uk-search-icon {
  display: none !important;
}

.uk-modal-header {
  border: 1px solid #d9d9d9;
}

.uk-modal-body .uk-form-stacked > div {
  margin-bottom: 30px;
}

.uk-modal-footer {
  border: none;
}

.uk-modal-title {
  font-size: 18px;
}

[class*="uk-modal-close-"] {
  top: 20px;
  right: 22px;
}

.uk-tab::before {
  border-bottom: 1px solid #d9d9d9;
}

.uk-progress {
  height: 8px;
}

.uk-progress--active::-webkit-progress-value {
  background-color: #f26101;
}
.uk-progress--active::-moz-progress-bar {
  background-color: #f26101;
}
.uk-progress--active::-ms-fill {
  background-color: #f26101;
}

.uk-progress--success::-webkit-progress-value {
  background-color: #24a148;
}
.uk-progress--success::-moz-progress-bar {
  background-color: #24a148;
}
.uk-progress--success::-ms-fill {
  background-color: #24a148;
}

.uk-progress--failed::-webkit-progress-value {
  background-color: #fa4d56;
}
.uk-progress--failed::-moz-progress-bar {
  background-color: #fa4d56;
}
.uk-progress--failed::-ms-fill {
  background-color: #fa4d56;
}

.uk-close {
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.uk-close:not(:disabled):hover {
  background-color: #f2f2f2;
  color: #000;
}
.uk-close:disabled {
  background-color: transparent;
  color: #b3b3b3;
}

.uk-pagination__item {
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #000;
}
.uk-pagination__item:hover {
  background-color: #f2f2f2;
  color: #000;
}

.uk-heading-divider {
  border-bottom: 1px solid #d9d9d9;
}

.uk-link {
  color: #f26101;
}
.uk-link:hover {
  color: #d45501;
  text-underline-offset: 4px;
}

.uk-list {
  gap: 0.4rem;
}

.uk-notification-message {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #000 !important;
  display: flex;
  justify-content: flex-start;
  padding: 8px;
}
.uk-notification-message a.uk-notification-close {
  display: none;
}
.uk-notification-message:hover a.uk-notification-close {
  height: 16px;
  width: 16px;
}
.uk-notification-message .uk-icon:not(.uk-close) {
  margin-right: 8px;
}

.uk-notification-message-primary {
  background-color: #ffefe4;
  border-color: #ffcfaf;
}
.uk-notification-message-primary .uk-icon:not(.uk-close) {
  color: #f26101;
}

.uk-notification-message-success {
  background-color: #c6f2d3;
  border-color: #71df91;
}
.uk-notification-message-success .uk-icon:not(.uk-close) {
  color: #24a148;
}

.uk-notification-message-warning {
  background-color: #fffaca;
  border-color: #fef17a;
}
.uk-notification-message-warning .uk-icon:not(.uk-close) {
  color: #f2da01;
}

.uk-notification-message-danger {
  background-color: #feebec;
  border-color: #fdb0b4;
}
.uk-notification-message-danger .uk-icon:not(.uk-close) {
  color: #fa4d56;
}

.uk-tooltip {
  background-color: #000 !important;
  border-radius: 5px;
  color: #fff;
  padding: 8px;
  text-align: center;
}

.uk-badge {
  font-size: 1rem;
  width: 160px;
  height: 32px;
  border-radius: 5px;
  padding: 0;
}

.uk-spinner {
  width: 50px;
  height: 50px;
  color: #f26101;
  z-index: 9999;
}
.uk-spinner circle {
  stroke-width: 2;
}

ul.uk-switcher {
  position: relative;
  top: 32px;
}

.upload-ctrl-labels {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.upload-ctrl-info-badges {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

/**
 * Utility classes for paddings and margins
 */
.uk-padding-xs {
  padding: 2px;
}

.uk-padding-b-xs {
  padding-bottom: 2px;
}

.uk-padding-t-xs {
  padding-top: 2px;
}

.uk-padding-l-xs {
  padding-left: 2px;
}

.uk-padding-r-xs {
  padding-right: 2px;
}

.uk-padding-y-xs {
  padding-block: 2px;
}

.uk-padding-x-xs {
  padding-inline: 2px;
}

.uk-padding-sm {
  padding: 4px;
}

.uk-padding-b-sm {
  padding-bottom: 4px;
}

.uk-padding-t-sm {
  padding-top: 4px;
}

.uk-padding-l-sm {
  padding-left: 4px;
}

.uk-padding-r-sm {
  padding-right: 4px;
}

.uk-padding-y-sm {
  padding-block: 4px;
}

.uk-padding-x-sm {
  padding-inline: 4px;
}

.uk-padding-md {
  padding: 8px;
}

.uk-padding-b-md {
  padding-bottom: 8px;
}

.uk-padding-t-md {
  padding-top: 8px;
}

.uk-padding-l-md {
  padding-left: 8px;
}

.uk-padding-r-md {
  padding-right: 8px;
}

.uk-padding-y-md {
  padding-block: 8px;
}

.uk-padding-x-md {
  padding-inline: 8px;
}

.uk-padding-lg {
  padding: 16px;
}

.uk-padding-b-lg {
  padding-bottom: 16px;
}

.uk-padding-t-lg {
  padding-top: 16px;
}

.uk-padding-l-lg {
  padding-left: 16px;
}

.uk-padding-r-lg {
  padding-right: 16px;
}

.uk-padding-y-lg {
  padding-block: 16px;
}

.uk-padding-x-lg {
  padding-inline: 16px;
}

.uk-padding-xl {
  padding: 32px;
}

.uk-padding-b-xl {
  padding-bottom: 32px;
}

.uk-padding-t-xl {
  padding-top: 32px;
}

.uk-padding-l-xl {
  padding-left: 32px;
}

.uk-padding-r-xl {
  padding-right: 32px;
}

.uk-padding-y-xl {
  padding-block: 32px;
}

.uk-padding-x-xl {
  padding-inline: 32px;
}

.uk-margin-xs {
  margin: 2px;
}

.uk-margin-b-xs {
  margin-bottom: 2px;
}

.uk-margin-t-xs {
  margin-top: 2px;
}

.uk-margin-l-xs {
  margin-left: 2px;
}

.uk-margin-r-xs {
  margin-right: 2px;
}

.uk-margin-y-xs {
  margin-block: 2px;
}

.uk-margin-x-xs {
  margin-inline: 2px;
}

.uk-margin-sm {
  margin: 4px;
}

.uk-margin-b-sm {
  margin-bottom: 4px;
}

.uk-margin-t-sm {
  margin-top: 4px;
}

.uk-margin-l-sm {
  margin-left: 4px;
}

.uk-margin-r-sm {
  margin-right: 4px;
}

.uk-margin-y-sm {
  margin-block: 4px;
}

.uk-margin-x-sm {
  margin-inline: 4px;
}

.uk-margin-md {
  margin: 8px;
}

.uk-margin-b-md {
  margin-bottom: 8px;
}

.uk-margin-t-md {
  margin-top: 8px;
}

.uk-margin-l-md {
  margin-left: 8px;
}

.uk-margin-r-md {
  margin-right: 8px;
}

.uk-margin-y-md {
  margin-block: 8px;
}

.uk-margin-x-md {
  margin-inline: 8px;
}

.uk-margin-lg {
  margin: 16px;
}

.uk-margin-b-lg {
  margin-bottom: 16px;
}

.uk-margin-t-lg {
  margin-top: 16px;
}

.uk-margin-l-lg {
  margin-left: 16px;
}

.uk-margin-r-lg {
  margin-right: 16px;
}

.uk-margin-y-lg {
  margin-block: 16px;
}

.uk-margin-x-lg {
  margin-inline: 16px;
}

.uk-margin-xl {
  margin: 32px;
}

.uk-margin-b-xl {
  margin-bottom: 32px;
}

.uk-margin-t-xl {
  margin-top: 32px;
}

.uk-margin-l-xl {
  margin-left: 32px;
}

.uk-margin-r-xl {
  margin-right: 32px;
}

.uk-margin-y-xl {
  margin-block: 32px;
}

.uk-margin-x-xl {
  margin-inline: 32px;
}

@media (min-width: 640px) {
  .uk-modal-header {
    padding: 24px 32px;
  }
  .uk-modal-body {
    padding: 24px 32px;
  }
}

/*# sourceMappingURL=uikit_voliro.css.map */
