/*Show above splash*/
:root {
  --asset-details-z-index: 989;
  --viewer-toolbar-z-index: 990;
  --viewer-minimap-dock-pane-z-index: 991;
  --viewer-tooltip-z-index: 992;
  --right-click-menu-z-index: 994;
  --side-pane-z-index: 993;
  --side-pane-close-z-index: 1000;
}

html {
  height: 100%;
  font-size: 16px;
  overflow-y: hidden;
}

app {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body {
  height: 100%;
}

div:focus-visible {
  outline: none;
}

form {
  padding-bottom: 1rem;
}

.form-buttons {
  display: flex;
  justify-content: right;
}
.form-buttons *:not(:last-child) {
  margin-right: 1rem;
}

@media (min-width: 576px) {
  .navbar:not(.navbar-vertical) .nav-link.active {
    text-decoration: none;
    border-bottom: 4px solid var(--bs-primary);
    margin-bottom: -10px;
  }
}
app {
  display: block;
  height: 100%;
}

.btn-input-file {
  position: relative;
}
.btn-input-file input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 0;
}

.image-preview {
  height: 100%;
  width: 100%;
  text-align: center;
}
.image-preview .fa-image {
  font-size: 10rem;
}
.image-preview img {
  max-width: 100%;
  max-height: 100%;
}

.splash {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: auto;
  z-index: 999;
}
.splash .content {
  position: relative;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
}
.splash .content .browser-not-supported {
  display: none;
}

.loading-overlay {
  background-color: #242628;
  opacity: 0.75;
}

.loading-overlay-solid {
  opacity: 1;
}

.loading-spinner .message {
  margin-bottom: 16px;
}
.loading-spinner div {
  width: 16px;
  height: 16px;
  background-color: #1463FF;
  border-radius: 100%;
  display: inline-block;
}

.splitter-pane-custom-collapsed + .k-splitbar {
  display: none !important;
}

/**CSSPIN*/
/*
MIT License

Copyright (c) 2016 Webkul Software

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.cp-spinner {
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

.cp-round:before {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 6px #bababa;
  border-right: solid 6px #bababa;
  border-bottom: solid 6px #bababa;
  border-left: solid 6px #bababa;
  position: absolute;
  top: 0;
  left: 0;
}

.cp-round:after {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 6px #1261fa;
  border-right: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-left: solid 6px transparent;
  position: absolute;
  top: 0;
  left: 0;
  animation: cp-round-animate 1s ease-in-out infinite;
}

@keyframes cp-round-animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cp-pinwheel {
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 24px #0fd6ff;
  border-right: solid 24px #58bd55;
  border-bottom: solid 24px #eb68a1;
  border-left: solid 24px #f3d53f;
  animation: cp-pinwheel-animate 1s linear infinite;
}

@keyframes cp-pinwheel-animate {
  0% {
    border-top-color: #0fd6ff;
    border-right-color: #58bd55;
    border-bottom-color: #eb68a1;
    border-left-color: #f3d53f;
    transform: rotate(0);
  }
  25% {
    border-top-color: #eb68a1;
    border-right-color: #f3d53f;
    border-bottom-color: #0fd6ff;
    border-left-color: #58bd55;
  }
  50% {
    border-top-color: #0fd6ff;
    border-right-color: #58bd55;
    border-bottom-color: #eb68a1;
    border-left-color: #f3d53f;
  }
  75% {
    border-top-color: #eb68a1;
    border-right-color: #f3d53f;
    border-bottom-color: #0fd6ff;
    border-left-color: #58bd55;
  }
  100% {
    border-top-color: #0fd6ff;
    border-right-color: #58bd55;
    border-bottom-color: #eb68a1;
    border-left-color: #f3d53f;
    transform: rotate(360deg);
  }
}
.cp-balls {
  animation: cp-balls-animate 1s linear infinite;
}

.cp-balls:before {
  border-radius: 50%;
  content: " ";
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #0fd6ff;
  position: absolute;
  top: 0;
  left: 0;
  animation: cp-balls-animate-before 1s ease-in-out infinite;
}

.cp-balls:after {
  border-radius: 50%;
  content: " ";
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #eb68a1;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: cp-balls-animate-after 1s ease-in-out infinite;
}

@keyframes cp-balls-animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cp-balls-animate-before {
  0% {
    transform: translate(-5px, -5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-5px, -5px);
  }
}
@keyframes cp-balls-animate-after {
  0% {
    transform: translate(5px, 5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(5px, 5px);
  }
}
.cp-bubble {
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background: #58bd55;
  animation: cp-bubble-animate 1s linear infinite;
}

.cp-bubble:before {
  border-radius: 50%;
  content: " ";
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #58bd55;
  position: absolute;
  left: -30px;
  animation: cp-bubble-animate-before 1s ease-in-out infinite;
}

.cp-bubble:after {
  border-radius: 50%;
  content: " ";
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #58bd55;
  position: absolute;
  right: -30px;
  animation: cp-bubble-animate-after 1s ease-in-out infinite;
}

@keyframes cp-bubble-animate {
  0% {
    opacity: 0.5;
    transform: scale(1) translateX(0);
  }
  25% {
    opacity: 1;
    transform: scale(1.1) translateX(-15px);
  }
  50% {
    opacity: 1;
    transform: scale(1.2) translateX(15px);
  }
  100% {
    opacity: 0.5;
    transform: scale(1) translateX(0);
  }
}
@keyframes cp-bubble-animate-before {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  100%, 50% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cp-bubble-animate-after {
  0%, 50% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100%, 75% {
    opacity: 1;
    transform: scale(1);
  }
}
.cp-flip {
  transform-style: preserve-3d;
  perspective: 10em;
}

.cp-flip:before {
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  background: #1261fa;
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  animation: cp-flip-animate-before 2s linear infinite;
}

@keyframes cp-flip-animate-before {
  0% {
    transform: rotateY(0) rotateX(0);
  }
  25% {
    transform: rotateY(360deg) rotateX(0);
  }
  50% {
    transform: rotateY(360deg) rotateX(360deg);
  }
  75% {
    transform: rotateY(0) rotateX(360deg);
  }
  100% {
    transform: rotateY(0) rotateX(0);
  }
}
.cp-hue {
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background: #1261fa;
  border-radius: 50%;
  animation: cp-hue-animate 1s ease-in-out infinite;
}

.cp-hue:before {
  border-radius: 0 12px 12px 0;
  content: " ";
  width: 12px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  animation: cp-hue-animate-before 1s ease-in-out infinite;
}

@keyframes cp-hue-animate {
  0% {
    background: #1261fa;
  }
  25% {
    background: #58bd55;
  }
  50% {
    background: #eb68a1;
  }
  75% {
    background: #f3d53f;
  }
  100% {
    background: #1261fa;
  }
}
@keyframes cp-hue-animate-before {
  0% {
    transform: rotateY(0);
    transform-origin: left center;
    opacity: 0.5;
  }
  30%, 70% {
    transform: rotateY(180deg);
    transform-origin: left center;
    opacity: 0.2;
  }
  100% {
    transform: rotateY(0);
    opacity: 0.5;
  }
}
.cp-skeleton {
  border-radius: 50%;
  border-top: solid 6px #1261fa;
  border-right: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-left: solid 6px transparent;
  animation: cp-skeleton-animate 1s linear infinite;
}

.cp-skeleton:before {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 6px transparent;
  border-right: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-left: solid 6px #1261fa;
  position: absolute;
  top: -6px;
  left: -6px;
  transform: rotateZ(-30deg);
}

.cp-skeleton:after {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 6px transparent;
  border-right: solid 6px #1261fa;
  border-bottom: solid 6px transparent;
  border-left: solid 6px transparent;
  position: absolute;
  top: -6px;
  right: -6px;
  transform: rotateZ(30deg);
}

@keyframes cp-skeleton-animate {
  0% {
    transform: rotate(0);
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}
.cp-eclipse {
  width: 12px;
  height: 12px;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 50%;
  background: #f3d53f;
  margin: 12px;
  animation: cp-eclipse-animate 1s ease-out infinite;
}

.cp-eclipse:before {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 6px transparent;
  border-right: solid 6px #f3d53f;
  border-bottom: solid 6px transparent;
  border-left: solid 6px transparent;
  position: absolute;
  top: -18px;
  left: -18px;
}

.cp-eclipse:after {
  border-radius: 50%;
  content: " ";
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  border-top: solid 6px transparent;
  border-right: solid 6px transparent;
  border-bottom: solid 6px transparent;
  border-left: solid 6px #f3d53f;
  position: absolute;
  top: -18px;
  right: -18px;
}

@keyframes cp-eclipse-animate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.cp-boxes:before {
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  content: " ";
  background: #58bd55;
  position: absolute;
  top: 12px;
  left: 0;
  animation: cp-boxes-animate-before 1s ease-in-out infinite;
}

.cp-boxes:after {
  width: 24px;
  height: 24px;
  display: inline-block;
  box-sizing: border-box;
  content: " ";
  background: #58bd55;
  position: absolute;
  top: 12px;
  right: 0;
  animation: cp-boxes-animate-after 1s ease-in-out infinite;
}

@keyframes cp-boxes-animate-before {
  0% {
    transform: translateX(-24px) rotate(45deg);
  }
  50% {
    transform: translateX(-8px) rotate(225deg);
  }
  100% {
    transform: translateX(-24px) rotate(45deg);
  }
}
@keyframes cp-boxes-animate-after {
  0% {
    transform: translateX(24px) rotate(45deg);
  }
  50% {
    transform: translateX(8px) rotate(-225deg);
  }
  100% {
    transform: translateX(24px) rotate(45deg);
  }
}
.cp-morph {
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
  background: #0fd6ff;
  animation: cp-morph-animate 1s linear infinite;
}

@keyframes cp-morph-animate {
  0% {
    transform: rotate(0) scale(1);
    border-radius: 0;
    background: #f3d53f;
  }
  25%, 75% {
    transform: rotate(180deg) scale(0.4);
    border-radius: 50%;
    background: #0fd6ff;
  }
  100% {
    transform: rotate(360deg) scale(1);
    border-radius: 0;
    background: #f3d53f;
  }
}
.cp-heart {
  animation: cp-heart-animate 2s ease-in-out infinite;
}

.cp-heart:before {
  border-radius: 12px 12px 0 0;
  content: " ";
  width: 24px;
  height: 35px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #eb68a1;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: 8px;
}

.cp-heart:after {
  border-radius: 12px 12px 0 0;
  content: " ";
  width: 24px;
  height: 35px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #eb68a1;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 8px;
}

@keyframes cp-heart-animate {
  0% {
    transform: scale(0.9);
    transform-origin: center;
  }
  15% {
    transform: scale(1.4);
    transform-origin: center;
  }
  30% {
    transform: scale(0.9);
    transform-origin: center;
  }
  45% {
    transform: scale(1.4);
    transform-origin: center;
  }
  100%, 60% {
    transform: scale(0.9);
    transform-origin: center;
  }
}
.cp-meter {
  border-radius: 50%;
  border-top: solid 6px #0fd6ff;
  border-right: solid 6px #0fd6ff;
  border-bottom: solid 6px #0fd6ff;
  border-left: solid 6px #0fd6ff;
  width: 48px;
  height: 48px;
  display: inline-block;
  box-sizing: border-box;
}

.cp-meter:before {
  border-radius: 3px;
  content: " ";
  width: 6px;
  height: 12px;
  display: inline-block;
  box-sizing: border-box;
  background-color: #0fd6ff;
  position: absolute;
  top: 5px;
  left: 16px;
  transform-origin: center bottom;
  animation: cp-meter-animate-before 1s linear infinite;
}

@keyframes cp-meter-animate-before {
  0% {
    transform: rotate(-45deg);
  }
  100% {
    transform: rotate(315deg);
  }
}
/*End of CSSPIN*/
#blazor-error-ui {
  background: lightyellow;
  color: black;
  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: 1001;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

/* Webkit based browsers */
meter[value="1"].passwordstrength::-webkit-meter-optimum-value {
  background: red;
}

meter[value="2"].passwordstrength::-webkit-meter-optimum-value {
  background: yellow;
}

meter[value="3"].passwordstrength::-webkit-meter-optimum-value {
  background: orange;
}

meter[value="4"].passwordstrength::-webkit-meter-optimum-value {
  background: green;
}

/* Gecko based browsers */
meter[value="1"].passwordstrength::-moz-meter-bar {
  background: red;
}

meter[value="2"].passwordstrength::-moz-meter-bar {
  background: yellow;
}

meter[value="3"].passwordstrength::-moz-meter-bar {
  background: orange;
}

meter[value="4"].passwordstrength::-moz-meter-bar {
  background: green;
}

.passwordstrength {
  width: 100%;
}

.multi-select {
  margin: 5px 0;
}
.multi-select .k-grid {
  border-radius: 5px;
}
.multi-select .source-grid-container-div {
  padding-left: 0;
}
.multi-select .selected-grid-container-div {
  padding-right: 0;
}
.multi-select .multi-select-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
}

.multi-select.invalid {
  border: 1px solid #dc3545;
  border-radius: 5px;
}

#client-update-banner {
  width: 100%;
  padding: 0.5rem;
  position: fixed;
  bottom: 0;
  z-index: 1002;
}
#client-update-banner *:not(:last-child) {
  margin-right: 5px;
}
#client-update-banner .refresh-text {
  text-decoration: underline;
  cursor: pointer;
}
#client-update-banner.client-version-status-update-available {
  background-color: lightgreen;
}
#client-update-banner.client-version-status-update-recommended {
  background-color: #FFC107;
}
#client-update-banner.client-version-status-update-required {
  background-color: #FF9494;
}

.treeview-item-selected {
  border-radius: 0.25rem;
  margin: -0.375rem -0.75rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  align-content: center;
  vertical-align: middle;
  position: relative;
  border-color: #035AA0;
  color: #ffffff;
  background-color: #035AA0;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bs-r2s-gray-80);
}

::-webkit-scrollbar-thumb {
  background: var(--bs-r2s-gray-50);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--bs-primary);
}

.dock-panel {
  color: white;
  padding: 16px;
  background: #242628;
  backdrop-filter: blur(4px);
}

.dock-panel > p {
  margin-bottom: 8px;
}

.navbar {
  padding-top: 0;
  padding-bottom: 0;
  align-items: normal;
}
.navbar.navbar-vertical {
  flex-direction: column;
  min-width: 3rem;
  width: 3rem;
  height: calc(100vh - 48px);
}
.navbar.navbar-vertical.navbar-vertical-left {
  border-right: 1px solid var(--bs-r2s-gray-70);
}
.navbar.navbar-vertical.navbar-vertical-left a.active {
  border-left: 4px solid var(--bs-r2s-blue);
}
.navbar.navbar-vertical.navbar-vertical-right {
  border-left: 1px solid var(--bs-r2s-gray-70);
}
.navbar.navbar-vertical.navbar-vertical-right a.active {
  border-right: 4px solid var(--bs-r2s-blue);
}
.navbar.navbar-vertical .button-group:not(:last-child):after {
  content: "";
  display: block;
  margin-top: 0;
  margin-left: 10%;
  margin-bottom: 0;
  width: 80%;
  height: 1px;
  background-color: var(--bs-r2s-gray-70);
  opacity: 1 !important;
}
.navbar.navbar-vertical a {
  height: 3rem;
}
.navbar.navbar-vertical a span {
  margin-top: 0.5rem;
  font-size: 12px;
}
.navbar.navbar-vertical .spacer {
  height: 3rem;
}

h1,
.heading-01 {
  font-size: 2.625rem;
  line-height: 3.125rem;
  font-weight: 400;
  letter-spacing: 0;
}

h2,
.heading-02 {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: 400;
  letter-spacing: 0;
}

h3,
.heading-03 {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
  letter-spacing: 0;
}

h4,
.heading-04 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0;
}

h5,
.heading-05 {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: bold;
  letter-spacing: 0;
}

h6,
.heading-06 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.24px;
}

.body-01 {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 400;
  letter-spacing: 0;
}

.body-02 {
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.24px;
}

.label,
.form-label,
.helper-text {
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 400;
  letter-spacing: 0.32px;
}

select.invalid {
  border-color: #dc3545;
}

mark {
  color: #F2F2F3;
}

.result-area .tag-name .svg-icon {
  min-width: 16px;
  margin-right: 1rem;
}

.confirmation-notification-container {
  position: relative;
  left: 0;
  right: 0;
}

.confirmation-notification {
  position: absolute;
  display: inline-block;
  top: 0;
}
.confirmation-notification .k-notification {
  width: 530px;
}

.dropdown-menu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border: none;
  box-shadow: 0 0.125rem 0.25rem 0 rgba(0, 0, 0, 0.5);
  background-color: var(--bs-r2s-gray-80) !important;
  z-index: 1001; /* Appear above the "Missing Asset" error */
}

.dropdown-item {
  padding-left: 1rem;
  padding-right: 1rem;
  height: 3rem;
  display: flex;
  align-items: center;
}

.navbar-main {
  border-bottom: solid #18191B 8px;
  top: 0px;
  padding: 0px;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.navbar-brand {
  font-size: 16px;
}

hr {
  opacity: 1;
  background: var(--bs-r2s-gray-70);
}

.width-600 {
  width: min(100%, 600px);
}

.width-800 {
  width: min(100%, 800px);
}

.btn {
  box-shadow: none !important;
}

.btn-panel {
  height: 1.5rem;
  width: 1.5rem;
  outline: none;
  box-shadow: none;
  color: var(--bs-r2s-gray-10);
  padding: 0rem;
}

.btn-panel:focus {
  outline: none;
  box-shadow: none;
}

.btn-panel:hover {
  background-color: var(--bs-r2s-gray-50-12);
  color: var(--bs-r2s-text-colour);
}

.btn-panel:active {
  background-color: var(--bs-r2s-gray-50-24);
  color: var(--bs-r2s-text-colour);
}

.btn-panel:disabled {
  color: var(--bs-r2s-gray-10-24);
}

.splitter {
  margin: 0 1rem;
  color: var(--bs-r2s-gray-70);
}

.bg-tag {
  background-color: #A11FFF;
}

.bg-task {
  background-color: #0AA69F;
}

.k-tabstrip-content {
  outline: none !important;
  box-shadow: none !important;
}

.k-tabstrip-item {
  outline: none !important;
  box-shadow: none !important;
}

.k-item {
  outline: none !important;
  box-shadow: none !important;
}

.k-grid {
  background-color: transparent;
  border: 0;
  border-color: #495057;
}

.k-toolbar {
  background-color: transparent;
  border: 0;
}

.k-grid-header {
  background-color: transparent;
}

.k-table-thead {
  background-color: transparent;
}

.k-grid-pager {
  background-color: transparent;
  border: 0;
}

.k-pager {
  background-color: transparent;
}

.k-grid .k-grid-aria-root {
  border-width: 1px;
  border-style: solid;
}

.k-grid .k-table-th, .k-grid td, .k-grid .k-table-td {
  border-width: 0px 1px 1px 0px;
  border-color: #495057;
}

.k-grid tr.selected {
  background-color: var(--bs-r2s-gray-50-24);
}

.preview-window .k-window-titlebar {
  padding-block: 6px !important;
}

.k-tabstrip-items .k-link {
  padding-inline: 0.75rem !important;
}

.k-coloreditor {
  min-width: 0;
  padding: 1rem;
}

.k-coloreditor-header {
  padding: 0rem 1rem 0;
}

.k-menu-link {
  background-color: var(--bs-r2s-gray-100);
}

.k-picker-outline:focus, .k-picker-outline.k-focus {
  box-shadow: none;
}

.k-picker-outline:focus-within {
  box-shadow: none;
}

.k-picker-solid:focus, .k-picker-solid.k-focus {
  box-shadow: none;
}

.k-picker-solid:focus-within {
  box-shadow: none;
}

.k-input-solid:focus {
  box-shadow: none;
}

.k-input-solid:focus-within {
  box-shadow: none;
}

.k-input-outline:focus {
  box-shadow: none;
}

.k-input-outline:focus-within {
  box-shadow: none;
}

.accordion-button {
  outline: none;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F2F2F3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.k-checkbox:focus {
  box-shadow: none;
}

.k-checkbox:checked:focus {
  box-shadow: none;
}

.k-notification-warning {
  border-color: rgba(255, 193, 7, 0.4);
  color: #664d03;
  background-color: #fff3cd;
}

.cover-image > .image-preview {
  align-content: center;
}

div:has(> #my-account-page) {
  height: 100%;
  overflow-y: auto;
}

:root {
  --r2s-border-radius-large: 8px;
  --r2s-border-radius-default: 6px;
  --r2s-border-radius-small: 4px;
}
