/* Smart Scrollbars */
html, body {
  overscroll-behavior-x: none !important;
}

body {
  --smart-scroll-button-size: 0px;
  --smart-scroll-bar-size: 15px;
  --smart-scroll-bar-thumb-border-top-right-radius: 6px;
  --smart-scroll-bar-thumb-border-top-left-radius: 6px;
  --smart-scroll-bar-thumb-border-bottom-left-radius: 6px;
  --smart-scroll-bar-thumb-border-bottom-right-radius: 6px;
  --smart-scroll-bar-thumb-size: 100%;
  --smart-scroll-bar-thumb-padding: 3px;
  --smart-scroll-bar-default-width: var(--smart-editor-width);
  --smart-scroll-bar-default-height: var(--smart-scroll-bar-size);
  --smart-scroll-bar-background: #fafafa;
  --smart-scroll-bar-track-background: var(--smart-scroll-bar-background);
  --smart-scroll-bar-border: #F1F1F1;
  --smart-scroll-bar-thumb-background: #C1C1C1;
  --smart-scroll-bar-thumb-border: transparent;
  margin: 0;
  font-family: Lato, Helvetica, Arial;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  color: #444444;
}
body smart-scroll-bar[aria-orientation=horizontal] {
  --smart-scroll-button-size: 12px;
}

::-webkit-scrollbar {
  width: 18px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--smart-scroll-bar-thumb-background);
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--smart-scroll-bar-thumb-background-hover);
}

@media all and (max-width: 480px) {
  body:not(.page-login) main {
    margin-top: 90px;
  }
}

.smart-scroll-button {
  line-height: 1rem !important;
}

/* Components */
img {
  max-width: 100%;
}

section {
  position: relative;
}

body > smart-scroll-viewer,
body > .smart-input-drop-down-menu[open],
body > .smart-window:not(.smart-container) {
  z-index: 9999;
}
body.modal-open > .smart-input-drop-down-menu[open] {
  z-index: 99999;
}

/* Login */
.sign-in-page {
  display: flex;
  align-items: center;
}
.sign-in-page .form-sign-in {
  display: flex;
  align-items: center;
  flex-flow: column;
  width: 100%;
  max-width: 390px;
  margin: auto;
  padding: 15px;
}
.sign-in-page .form-sign-in .form {
  padding: 25px;
  border-radius: 0.3rem;
}
.sign-in-page .form-sign-in .input-group-text {
  background: #fff;
  padding: 0.375rem 0.375rem;
}
.sign-in-page .form-sign-in .input-group-text svg {
  width: 20px;
  height: 20px;
  stroke: #6c757d;
}
.sign-in-page .form-sign-in input {
  color: #212529;
}
.sign-in-page .form-sign-in input[type=email] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.sign-in-page .form-sign-in input[type=password] {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* Preloader */
.preloader-content {
  transition: 0.2s;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 1;
  display: flex;
  align-content: center;
  align-items: center;
  text-align: center;
  border-radius: 7px;
}
.preloader-content .preloader-holder {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /*.loader-dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid white;
  }

  .loader-dot:first-child {
    background-color: #2d7ff9;
    animation-delay: 0.6s;
  }

  .loader-dot:nth-child(2) {
    background-color: #f82b60;
    animation-delay: 0.5s;
  }

  .loader-dot:nth-child(3) {
    background-color: #ff6f2c;
    animation-delay: 0.4s;
  }

  .loader-dot:nth-child(4) {
    background-color: #fcb400;
    animation-delay: 0.3s;
  }

  .loader-dot:nth-child(5) {
    background-color: #20c933;
    animation-delay: 0.2s;
  }

  .loader-dot:nth-child(6) {
    background-color: #8e54e3;
    animation-delay: 0.1s;
  }

  .loader-dot:nth-child(7) {
    background-color: #666;
    animation-delay: 0s;
  }*/
}
.preloader-content .preloader-holder .loader-dot:first-of-type {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
.preloader-content .preloader-holder .loader-dot:first-of-type:before, .preloader-content .preloader-holder .loader-dot:first-of-type:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.preloader-content .preloader-holder .loader-dot:first-of-type:before {
  animation: ball1 1s infinite;
  background-color: #168af0;
  box-shadow: 30px 0 0 #764ba2;
  margin-bottom: 10px;
}
.preloader-content .preloader-holder .loader-dot:first-of-type:after {
  animation: ball2 1s infinite;
  background-color: #ff4954;
  box-shadow: 30px 0 0 #3cd458;
}

.preloader {
  transition: 0.2s;
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
  z-index: 99999;
  display: flex;
  align-content: center;
  align-items: center;
  text-align: center;
}
.preloader .preloader-holder {
  height: 50px;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /*.loader-dot {
    animation-name: loader;
    animation-timing-function: ease-in-out;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background-color: black;
    position: absolute;
    border: 2px solid white;
  }

  .loader-dot:first-child {
    background-color: #2d7ff9;
    animation-delay: 0.6s;
  }

  .loader-dot:nth-child(2) {
    background-color: #f82b60;
    animation-delay: 0.5s;
  }

  .loader-dot:nth-child(3) {
    background-color: #ff6f2c;
    animation-delay: 0.4s;
  }

  .loader-dot:nth-child(4) {
    background-color: #fcb400;
    animation-delay: 0.3s;
  }

  .loader-dot:nth-child(5) {
    background-color: #20c933;
    animation-delay: 0.2s;
  }

  .loader-dot:nth-child(6) {
    background-color: #8e54e3;
    animation-delay: 0.1s;
  }

  .loader-dot:nth-child(7) {
    background-color: #666;
    animation-delay: 0s;
  }

  .loader-text {
    position: absolute;
    top: 200%;
    left: 0;
    right: 0;
    width: 4rem;
    margin: auto;
  }

  .loader-text:after {
    content: "Loading";
    font-weight: bold;
    animation-name: loading-text;
    animation-duration: 1s;
    animation-iteration-count: infinite;
  }*/
}
.preloader .preloader-holder .loader-dot:first-of-type {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
.preloader .preloader-holder .loader-dot:first-of-type:before, .preloader .preloader-holder .loader-dot:first-of-type:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.preloader .preloader-holder .loader-dot:first-of-type:before {
  animation: ball1 1s infinite;
  background-color: #168af0;
  box-shadow: 30px 0 0 #764ba2;
  margin-bottom: 10px;
}
.preloader .preloader-holder .loader-dot:first-of-type:after {
  animation: ball2 1s infinite;
  background-color: #ff4954;
  box-shadow: 30px 0 0 #3cd458;
}

body.page-loaded .loader,
body.page-loaded .preloader {
  opacity: 0;
  visibility: hidden;
}

/*@keyframes loader {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(230px);
  }
  65% {
    transform: translateX(230px);
  }
  95% {
    transform: translateX(0);
  }
}

@keyframes loading-text {
  0% {
    content: "Loading";
  }
  25% {
    content: "Loading.";
  }
  50% {
    content: "Loading..";
  }
  75% {
    content: "Loading...";
  }
}*/
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg) scale(0.8);
    -moz-transform: rotate(0deg) scale(0.8);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.2);
    -moz-transform: rotate(360deg) scale(1.2);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(0.8);
    -moz-transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #f8b334;
  }
  50% {
    box-shadow: 0 0 0 #f8b334;
    margin-bottom: 0;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #f8b334;
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #97bf0d;
  }
  50% {
    box-shadow: 0 0 0 #97bf0d;
    margin-top: -20px;
    -webkit-transform: translate(15px, 15px);
    -moz-transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #97bf0d;
    margin-top: 0;
  }
}
/* Icons */
.icon-10px:not(.mdi) {
  width: 10px;
  height: 10px;
}

.mdi.icon-10px {
  font-size: 10px;
  line-height: 1;
}

.icon-13px:not(.mdi) {
  width: 13px;
  height: 13px;
}

.mdi.icon-13px {
  font-size: 13px;
  line-height: 1;
}

.icon-15px:not(.mdi) {
  width: 15px;
  height: 15px;
}

.mdi.icon-15px {
  font-size: 15px;
  line-height: 1;
}

.icon-20px:not(.mdi) {
  width: 20px;
  height: 20px;
}

.mdi.icon-20px {
  font-size: 20px;
  line-height: 1;
}

.icon-22px:not(.mdi) {
  width: 22px;
  height: 22px;
}

.mdi.icon-22px {
  font-size: 22px;
  line-height: 1;
}

.icon-24px:not(.mdi) {
  width: 24px;
  height: 24px;
}

.mdi.icon-24px {
  font-size: 24px;
  line-height: 1;
}

.icon-25px:not(.mdi) {
  width: 25px;
  height: 25px;
}

.mdi.icon-25px {
  font-size: 25px;
  line-height: 1;
}

.icon-30px:not(.mdi) {
  width: 30px;
  height: 30px;
}

.mdi.icon-30px {
  font-size: 30px;
  line-height: 1;
}

.icon-35px:not(.mdi) {
  width: 35px;
  height: 35px;
}

.mdi.icon-35px {
  font-size: 35px;
  line-height: 1;
}

.icon-40px:not(.mdi) {
  width: 40px;
  height: 40px;
}

.mdi.icon-40px {
  font-size: 40px;
  line-height: 1;
}

.icon-45px:not(.mdi) {
  width: 45px;
  height: 45px;
}

.mdi.icon-45px {
  font-size: 45px;
  line-height: 1;
}

.icon-50px:not(.mdi) {
  width: 50px;
  height: 50px;
}

.mdi.icon-50px {
  font-size: 50px;
  line-height: 1;
}

/* Other */
#reorder-workspaces ul li {
  display: block !important;
  padding: initial !important;
  border: 0;
  background-color: white;
  border-radius: 7px !important;
}
#reorder-workspaces .smart-sortable-item.dragged {
  background-color: var(--bs-light) !important;
  box-shadow: var(--smart-elevation-1) !important;
}

.shared-bases,
.recent-bases,
.reorder-databases {
  max-width: 100%;
  width: 100%;
}
.shared-bases .smart-sortable-items-parent,
.recent-bases .smart-sortable-items-parent,
.reorder-databases .smart-sortable-items-parent {
  flex-wrap: wrap;
  padding: 0;
  flex-direction: column !important;
}
.shared-bases .smart-sortable-items-parent > li,
.recent-bases .smart-sortable-items-parent > li,
.reorder-databases .smart-sortable-items-parent > li {
  margin: 0 10px 10px 10px !important;
  padding: 10px !important;
  border-radius: 7px;
  list-style: none;
}
.shared-bases .smart-sortable-items-parent > li:focus-visible,
.recent-bases .smart-sortable-items-parent > li:focus-visible,
.reorder-databases .smart-sortable-items-parent > li:focus-visible {
  outline: unset !important;
}
.shared-bases .smart-sortable-items-parent li.js-database-item:nth-child(odd),
.recent-bases .smart-sortable-items-parent li.js-database-item:nth-child(odd),
.reorder-databases .smart-sortable-items-parent li.js-database-item:nth-child(odd) {
  background: var(--secondary);
}
.shared-bases .smart-sortable-items-parent li.js-database-item:nth-child(even),
.recent-bases .smart-sortable-items-parent li.js-database-item:nth-child(even),
.reorder-databases .smart-sortable-items-parent li.js-database-item:nth-child(even) {
  background: var(--white);
}
.shared-bases .related-bases,
.recent-bases .related-bases,
.reorder-databases .related-bases {
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
  position: relative;
  border-radius: 10px;
  max-width: 100%;
}
.shared-bases .related-bases .js-database-color-frame,
.recent-bases .related-bases .js-database-color-frame,
.reorder-databases .related-bases .js-database-color-frame {
  border: 1px solid #dee2e6;
}
.shared-bases .related-bases > div .d-inline-block.text-decoration-none:hover .row.mx-0.py-1.w-100,
.recent-bases .related-bases > div .d-inline-block.text-decoration-none:hover .row.mx-0.py-1.w-100,
.reorder-databases .related-bases > div .d-inline-block.text-decoration-none:hover .row.mx-0.py-1.w-100 {
  opacity: 0.5;
}
.shared-bases .related-bases .childrens,
.recent-bases .related-bases .childrens,
.reorder-databases .related-bases .childrens {
  width: 320px;
  height: auto;
}
@media screen and (min-width: 767px) {
  .shared-bases .related-bases .childrens.small-items,
.recent-bases .related-bases .childrens.small-items,
.reorder-databases .related-bases .childrens.small-items {
    width: 525px;
  }
  .shared-bases .related-bases .childrens.small-items .item,
.recent-bases .related-bases .childrens.small-items .item,
.reorder-databases .related-bases .childrens.small-items .item {
    width: 20%;
  }
}
.shared-bases .related-bases .childrens .related-bases-content > div,
.recent-bases .related-bases .childrens .related-bases-content > div,
.reorder-databases .related-bases .childrens .related-bases-content > div {
  position: relative;
}
.shared-bases:not([dragged]) .smart-sortable-item,
.recent-bases:not([dragged]) .smart-sortable-item,
.reorder-databases:not([dragged]) .smart-sortable-item {
  transform: unset !important;
}
.shared-bases .smart-sortable-item:after, .shared-bases .smart-sortable-item:before,
.recent-bases .smart-sortable-item:after,
.recent-bases .smart-sortable-item:before,
.reorder-databases .smart-sortable-item:after,
.reorder-databases .smart-sortable-item:before {
  margin-left: -35px;
  font-size: 16px !important;
  top: 13px !important;
  z-index: 0 !important;
  left: auto !important;
  right: -25px !important;
}
.shared-bases .smart-sortable-item.related-bases .smart-sortable-item:before, .shared-bases .smart-sortable-item.related-bases .smart-sortable-item:after,
.recent-bases .smart-sortable-item.related-bases .smart-sortable-item:before,
.recent-bases .smart-sortable-item.related-bases .smart-sortable-item:after,
.reorder-databases .smart-sortable-item.related-bases .smart-sortable-item:before,
.reorder-databases .smart-sortable-item.related-bases .smart-sortable-item:after {
  display: none;
  top: 35px !important;
}
.shared-bases .smart-sortable-item:hover:after, .shared-bases .smart-sortable-item:hover:before,
.recent-bases .smart-sortable-item:hover:after,
.recent-bases .smart-sortable-item:hover:before,
.reorder-databases .smart-sortable-item:hover:after,
.reorder-databases .smart-sortable-item:hover:before {
  opacity: 0.9 !important;
}
.shared-bases li,
.recent-bases li,
.reorder-databases li {
  padding: 0 !important;
  border: unset;
}
.shared-bases li.dragged,
.recent-bases li.dragged,
.reorder-databases li.dragged {
  border: 1px solid #dee2e6 !important;
  box-shadow: unset !important;
}
.shared-bases li.dragged .square,
.recent-bases li.dragged .square,
.reorder-databases li.dragged .square {
  position: relative;
}
.shared-bases li.dragged .square:before,
.recent-bases li.dragged .square:before,
.reorder-databases li.dragged .square:before {
  width: 100%;
  height: 100%;
  display: flex;
  background: #f8f9fa;
  content: "";
  position: absolute;
  z-index: -1;
  top: 7px;
  left: 7px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
}
.shared-bases li:hover > div > .database-settings-button > .dropdown > a,
.recent-bases li:hover > div > .database-settings-button > .dropdown > a,
.reorder-databases li:hover > div > .database-settings-button > .dropdown > a {
  visibility: visible;
}
.shared-bases li .item:hover .database-settings-button .dropdown > a,
.recent-bases li .item:hover .database-settings-button .dropdown > a,
.reorder-databases li .item:hover .database-settings-button .dropdown > a {
  visibility: visible;
}

.smart-sortable ul .dropdown-menu,
.smart-sortable ol .dropdown-menu {
  display: none;
}
.smart-sortable ul .dropdown-menu.show,
.smart-sortable ol .dropdown-menu.show {
  display: block;
}

.database-settings-holder {
  color: var(--main-text-color);
}
.database-settings-holder .smart-drop-down.smart-drop-down-container {
  max-width: 282px;
  width: 282px !important;
}
.database-settings-holder .title-span {
  color: var(--main-text-color) !important;
  font-size: 1.25rem !important;
}
.database-settings-holder .title-span:after {
  background-color: var(--main-text-color) !important;
  font-size: 1.25rem !important;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
}
.database-settings-holder .js-title-holder {
  margin: 0 0 0px 0;
}
.database-settings-holder .js-title-holder input.border-active, .database-settings-holder .js-title-holder input:focus {
  color: #495057;
}

/* DataBase View Page */
.page-database-view {
  --main-text-color: #fff;
  background: linear-gradient(135deg, #168af0 0%, #764ba2 100%);
  overflow: hidden;
  --primary: #168af0;
  --smart-primary: #168af0;
  --smart-ui-state-border-active: #168af0;
  --smart-ui-state-active: #168af0;
  --smart-ui-state-color-selected: #168af0;
  --smart-primary-rgb: 22, 138, 240;
  --smart-ui-state-selected: rgba(var(--smart-primary-rgb), .1);
  --bs-primary-rgb: var(--smart-primary-rgb);
  /* Grid Styles */
}
.page-database-view .header-nav {
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.page-database-view smart-button[active], .page-database-view smart-button.primary,
.page-database-view smart-toggle-button[active],
.page-database-view smart-toggle-button.primary,
.page-database-view smart-repeat-button[active],
.page-database-view smart-repeat-button.primary {
  --smart-ui-state-hover: var(--smart-primary);
  --smart-ui-state-border-hover: var(--smart-primary);
  --smart-ui-state-active: var(--smart-primary);
  --smart-ui-state-border-active: var(--smart-primary);
  --smart-ui-state-focus: var(--smart-primary);
  --smart-ui-state-border-focus: var(--smart-primary);
}
.page-database-view .smart-grid.smart-container .smart-grid-column-header, .page-database-view .smart-grid > .smart-container .smart-grid-column-header {
  z-index: 0;
}
.page-database-view main {
  overflow: hidden;
  height: 100vh;
  height: -webkit-fill-available;
}
.page-database-view main .logo {
  max-width: 145px;
  filter: brightness(0) invert(1);
}
.page-database-view main .js-panel {
  overflow: hidden;
  height: calc(100% - 77px) !important;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.page-database-view main .js-panel .js-header-left .contributors {
  display: flex;
  height: 20px;
}
@media screen and (max-width: 991px) {
  .page-database-view main .js-panel .js-header-left .contributors {
    display: none;
  }
}
.page-database-view main .js-panel .js-header-left .contributors .contributor {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: static;
  width: 20px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  border: 1px solid var(--bs-gray-400);
}
.page-database-view main .js-panel .js-header-left .contributors .contributor:not(.current) {
  cursor: pointer;
}
.page-database-view main .js-panel .js-header-left .contributors .contributor .current {
  opacity: 30%;
}
.page-database-view main .js-panel .js-header-left .contributors .contributor:not(:first-of-type) {
  margin-left: -20px;
}
.page-database-view main .js-panel .js-header-left .contributors .contributor:hover {
  position: relative;
  border: 1px solid var(--primary);
}
.page-database-view main .js-panel.js-opened .js-header-left,
.page-database-view main .js-panel.js-opened .js-left {
  width: calc(100% - 420px);
}
.page-database-view main .js-panel.js-opened .js-header-right,
.page-database-view main .js-panel.js-opened .js-right {
  width: 420px;
}
.page-database-view main .js-panel.js-opened .js-header-right #pills-tab,
.page-database-view main .js-panel.js-opened .js-right #pills-tab {
  /*button.active {
    color: #000 !important;
    background-color: #f2f2f2 !important;
    border-color: #f1f1f1 !important;
    box-shadow: unset !important;
    outline: 0 !important;

    &:focus {
      box-shadow: unset !important;
      outline: 0 !important;
    }
  }*/
}
@media screen and (max-width: 1199px) {
  .page-database-view main .js-panel.js-opened .js-header-right {
    width: auto;
  }
  .page-database-view main .js-panel.js-opened .js-left {
    width: 100%;
  }
  .page-database-view main .js-panel.js-opened .js-right {
    right: 0;
    position: absolute;
    width: 380px;
  }
}
.page-database-view main .js-panel .js-left .content-holder {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.page-database-view main .js-panel .js-left .content-holder > div:first-child {
  height: 100%;
}
.page-database-view main .js-panel .js-left > .card {
  border-radius: 4px;
}
.page-database-view main .js-panel .js-left .list-unstyled {
  display: inline-flex;
}
.page-database-view main .js-panel .js-left .list-unstyled li {
  margin-right: 10px;
}
.page-database-view main .js-panel .js-left .list-unstyled li span {
  padding-right: 1px;
  border: 0;
  border-style: solid;
}
.page-database-view main .js-panel .js-left .list-unstyled li.active span {
  border-bottom-width: 1px;
}
.page-database-view main .js-panel .js-right a:not(.text-danger):not(.text-warning):not(.text-success):not(.text-muted) {
  color: var(--smart-primary) !important;
}
.page-database-view main .js-panel .js-right > .card {
  border-radius: 4px;
}
.page-database-view main .js-panel .js-right smart-tabs {
  min-width: unset;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .page-database-view main .js-panel .js-header-right,
.page-database-view main .js-panel .js-right {
    display: none !important;
  }
}
.page-database-view main .js-panel .content {
  top: 40px;
  bottom: 10px;
  left: 0;
  right: 0;
  position: absolute;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
}
.page-database-view main .js-panel .content .content-inner {
  display: flex;
  height: calc(100% - 15px);
  flex-flow: column;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: calc(var(--bs-gutter-x) / 2);
}
.page-database-view main .js-panel .content .content-inner a {
  color: var(--smart-primary);
}
.page-database-view main .js-panel .content .content-inner .text-primary {
  color: var(--smart-primary) !important;
}
.page-database-view main .js-panel .base-datatables-holder {
  border-top: 10px solid var(--smart-primary);
  position: absolute;
  bottom: 0;
  z-index: 8;
  background: #fff;
  left: 0;
  right: 0;
  padding: 0px 10px 9px 10px;
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container {
  border: 1px solid var(--smart-primary-color);
  border-top: 0;
  border-radius: 0 0 7px 7px;
  padding: 6px 0.5rem 6px 0.5rem;
  background: var(--smart-primary-color);
  color: var(--smart-primary);
  text-decoration: none;
  vertical-align: top;
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab .smart-tab-label-text-wrapper,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container .smart-tab-label-text-wrapper {
  padding: 5px 0.5rem 6px 0.5rem;
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab:hover,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container:hover {
  border-color: var(--smart-primary);
  color: var(--smart-primary);
  background: var(--smart-primary-color);
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab.smart-tab-selected, .page-database-view main .js-panel .base-datatables-holder .btn-tab.active,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.smart-tab-selected,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.active {
  border-color: var(--smart-primary);
  color: var(--smart-primary-color);
  background: var(--smart-primary);
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab.smart-tab-selected:focus, .page-database-view main .js-panel .base-datatables-holder .btn-tab.smart-tab-selected:hover, .page-database-view main .js-panel .base-datatables-holder .btn-tab.active:focus, .page-database-view main .js-panel .base-datatables-holder .btn-tab.active:hover,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.smart-tab-selected:focus,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.smart-tab-selected:hover,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.active:focus,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.active:hover {
  color: var(--smart-primary-color);
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab.btn-link,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.btn-link {
  color: var(--smart-primary);
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab.btn-link:hover,
.page-database-view main .js-panel .base-datatables-holder .smart-tab-label-container.btn-link:hover {
  border-color: var(--smart-primary);
  color: var(--smart-primary);
  background: var(--smart-primary-color);
}
.page-database-view main .js-panel .base-datatables-holder .btn-tab {
  padding: 5px 0.5rem 5px 0.5rem;
}
.page-database-view main .js-panel .base-datatables-holder .tabs {
  height: auto !important;
  min-height: 40px !important;
  max-width: calc(100% - 50px);
  min-width: auto;
  padding: 0;
  width: auto;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-add-new-tab .smart-tab-label-text-wrapper {
  padding: 2px 3px 3px 3px;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-add-new-tab .smart-tab-label-text-wrapper .smart-tab-label-text-container {
  font-size: 25px;
  line-height: 1;
  margin-top: -3px;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-tabs-header-items .smart-tab-strip {
  height: 42px;
}
.page-database-view main .js-panel .base-datatables-holder .tabs smart-tab-item {
  display: none;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-header {
  background: transparent;
  border: 0;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-header .smart-tab-label-text-container i {
  margin-right: 7px;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-tabs-content-section {
  display: none;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-tabs-selection-bar {
  display: none;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-resize-trigger-container {
  min-height: 0px !important;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-tabs-scroll-button {
  margin: 0 5px;
}
.page-database-view main .js-panel .base-datatables-holder .tabs .smart-tabs-scroll-button .smart-arrow {
  padding: 5px;
  font-size: 20px;
}
.page-database-view main .modal a {
  color: var(--smart-primary);
}
.page-database-view main .modal .text-primary {
  color: var(--smart-primary) !important;
}
.page-database-view main .form-check-input:checked {
  background-color: var(--smart-primary);
  border-color: var(--smart-primary);
}
.page-database-view main .form-check-input:focus {
  border-color: var(--smart-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--smart-primary-rgb), 0.25);
}
.page-database-view main .form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
}
.page-database-view main .nav-link {
  color: var(--smart-primary);
}
.page-database-view main .btn-primary {
  background-color: var(--smart-primary);
  border-color: var(--smart-primary);
}
.page-database-view main .btn-primary:focus {
  background-color: rgba(var(--smart-primary-rgb), 0.8);
  border-color: var(--smart-primary);
  color: var(--smart-primary);
}
.page-database-view main .btn-primary:hover {
  background-color: rgba(var(--smart-primary-rgb), 0.8);
  border-color: var(--smart-primary);
  color: var(--smart-light);
}
.page-database-view main .btn-outline-primary {
  color: var(--smart-primary);
  border-color: var(--smart-primary);
}
.page-database-view main .btn-outline-primary:focus {
  background-color: var(--smart-primary);
  border-color: var(--smart-primary);
  box-shadow: 0 0 0 0.25rem rgba(var(--smart-primary-rgb), 0.8);
}
.page-database-view main .btn-outline-primary:hover {
  background-color: var(--smart-primary);
  border-color: var(--smart-primary);
  color: var(--smart-primary-color);
}
.page-database-view main .btn-check:focus + .btn-primary, .page-database-view main .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(var(--smart-primary-rgb), 0.5);
}
.page-database-view main .embed .js-panel {
  height: 100% !important;
}
.page-database-view main .embed .js-panel > .content {
  top: var(--bs-gutter-y, 0.75rem);
  bottom: 20px;
}
.page-database-view main .embed .js-panel > .content .embed-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.page-database-view main .embed .js-panel > .content .embed-link a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}
.page-database-view .database-settings-panel {
  max-width: 280px;
}
.page-database-view .smart-drop-down-button.database-settings-panel {
  box-shadow: initial !important;
  background: transparent;
}
.page-database-view .smart-drop-down-button.database-settings-panel .smart-drop-down.smart-drop-down-container {
  left: -92px;
}
.page-database-view .smart-drop-down-button.database-settings-panel .smart-drop-down-button,
.page-database-view .smart-drop-down-button.database-settings-panel .smart-action-button {
  color: var(--main-text-color) !important;
  font-size: 1.25rem !important;
  border: 0 !important;
  background: transparent !important;
}
.page-database-view .smart-drop-down-button.database-settings-panel .smart-drop-down-button {
  opacity: 0.7;
}
.page-database-view .database-settings-panel-styled .mdi {
  font-size: 20px;
}
.page-database-view .database-settings-panel-styled .smart-button-group .smart-button-group-items .smart-button-group-item {
  border: 1px solid var(--smart-ui-state-border-selected);
}
.page-database-view .database-settings-panel-styled .smart-button-group .smart-button-group-items .smart-button-group-item:not(:last-of-type) {
  border-right: 0;
}
.page-database-view .database-settings-panel-styled .js-alternation-count-colors a,
.page-database-view .database-settings-panel-styled .js-grid-styles a {
  border: 2px solid var(--smart-border);
  margin-bottom: 1rem;
  display: block;
}
.page-database-view .database-settings-panel-styled .js-alternation-count-colors a.active,
.page-database-view .database-settings-panel-styled .js-grid-styles a.active {
  border-color: var(--smart-primary);
}
.page-database-view .database-settings-panel-styled .js-alternation-count-colors a img,
.page-database-view .database-settings-panel-styled .js-grid-styles a img {
  max-width: 100%;
}
.page-database-view .database-settings-panel-styled .js-alternation-count-colors .table-example,
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example {
  margin: 0;
  border: 0;
  --smart-border: #c0c0c0;
}
.page-database-view .database-settings-panel-styled .js-alternation-count-colors .table-example th, .page-database-view .database-settings-panel-styled .js-alternation-count-colors .table-example td,
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example th,
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example td {
  padding: 7px;
}
.page-database-view .database-settings-panel-styled .js-alternation-count-colors .table-example tr, .page-database-view .database-settings-panel-styled .js-alternation-count-colors .table-example td, .page-database-view .database-settings-panel-styled .js-alternation-count-colors .table-example th,
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example tr,
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example td,
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .carousel {
  min-height: 130px;
}
@media screen and (max-width: 1199px) {
  .page-database-view .database-settings-panel-styled .js-grid-styles .carousel {
    min-height: 230px;
  }
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-1 {
  --smart-border: #ABABAB;
  --grid-header-background: #BEC0BF;
  --grid-header-background-color: #000;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-1 thead {
  background-color: var(--grid-header-background);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-1 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-1 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-1 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-2 {
  --smart-border: #ABABAB;
  --grid-header-background: #BEC0BF;
  --grid-header-background-color: #000;
  --grid-first-col-background: #DCDCDC;
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-2 thead {
  background-color: var(--grid-header-background);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-2 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-2 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-2 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-2 tbody td:first-of-type {
  background-color: var(--grid-first-col-background);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-3 {
  --smart-border: #e0e0e0;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-3 thead {
  background: var(--smart-primary);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-3 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-3 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-3 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-4 {
  --smart-border: #c0c0c0;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
  --grid-first-col-background: #DCDCDC;
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-4 thead {
  background: var(--smart-primary);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-4 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-4 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-4 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-4 tbody td:first-of-type {
  background-color: var(--grid-first-col-background);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-5 {
  --smart-border: #c0c0c0;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
  --grid-first-col-background: rgba(var(--smart-primary-rgb), .1);
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-5 thead {
  background: var(--smart-primary);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-5 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-5 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-5 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-5 tbody td:first-of-type {
  background-color: var(--grid-first-col-background);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-6 {
  --smart-border: #e0e0e0;
  --grid-header-background: #E74A2E;
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-6 thead {
  background: #E74A2E;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-6 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-6 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-6 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-7 {
  --smart-border: #e0e0e0;
  --grid-header-background: #5BB339;
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-7 thead {
  background: #5BB339;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-7 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-7 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-7 th {
  border-color: var(--smart-border);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-8 {
  --smart-border: #e0e0e0;
  --grid-header-background: #EDB343;
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-8 thead {
  background: #EDB343;
}
.page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-8 tr, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-8 td, .page-database-view .database-settings-panel-styled .js-grid-styles .table-example.style-8 th {
  border-color: var(--smart-border);
}
.page-database-view smart-grid smart-scroll-bar[show-buttons] .smart-scroll-button {
  display: none;
}
.page-database-view smart-grid smart-scroll-bar[show-buttons] .smart-track {
  width: 100%;
}
.page-database-view smart-grid-row smart-grid-cell.smart-add-new-column {
  background: #fff !important;
  border-left: 1px solid var(--smart-border);
}
.page-database-view smart-grid-row smart-grid-cell.smart-add-new-column > div {
  background: #fff !important;
}
.page-database-view .smart-grid[data-style=style-1] {
  --smart-border: #ABABAB;
  --grid-header-background: #BEC0BF;
  --grid-header-background-color: #000;
}
.page-database-view .smart-grid[data-style=style-1] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-1] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-1] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
}
.page-database-view .smart-grid[data-style=style-1] .smart-grid-column-header-cell-container {
  --smart-background: var(--grid-header-background);
}
.page-database-view .smart-grid[data-style=style-1] .smart-grid-column-header-cell-container smart-grid-column {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-1] smart-grid-column.top-far-corner {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-2] {
  --smart-border: #ABABAB;
  --grid-header-background: #BEC0BF;
  --grid-header-background-color: #000;
  --grid-first-col-background: #DCDCDC;
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
}
.page-database-view .smart-grid[data-style=style-2] .smart-grid-column-header-cell-container {
  --smart-background: var(--grid-header-background);
}
.page-database-view .smart-grid[data-style=style-2] .smart-grid-column-header-cell-container smart-grid-column {
  background: var(--grid-header-background);
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-column.top-far-corner {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header] {
  --smart-background: var(--grid-first-col-background);
  color: var(--grid-first-col-background-color) !important;
  background-color: var(--grid-first-col-background) !important;
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-2] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze] {
  --smart-background: var(--grid-first-col-background);
  color: var(--grid-first-col-background-color) !important;
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header] .smart-label:not(.smart-input),
.page-database-view .smart-grid[data-style=style-2] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze] .smart-label:not(.smart-input) {
  color: var(--grid-first-col-background-color);
  background-color: transparent !important;
}
.page-database-view .smart-grid[data-style=style-2] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-2] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze] {
  background-color: var(--grid-first-col-background);
}
.page-database-view .smart-grid[data-style=style-3] {
  --smart-border: #e0e0e0;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-4] {
  --smart-border: #c0c0c0;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
  --grid-first-col-background: #DCDCDC;
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
}
.page-database-view .smart-grid[data-style=style-4] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-4] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-4] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-5] {
  --smart-border: #c0c0c0;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
  --grid-first-col-background: #f2e9ff;
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
}
.page-database-view .smart-grid[data-style=style-5] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-5] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-5] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-6] {
  --smart-border: #e0e0e0;
  --smart-primary: #E74A2E;
  --smart-primary-rgb: 231, 74, 46;
  --grid-header-background: #E74A2E;
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-6] .smart-grid-column-header-cell-container {
  --smart-background: var(--grid-header-background);
}
.page-database-view .smart-grid[data-style=style-6] .smart-grid-column-header-cell-container smart-grid-column {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-6] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-6] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-6] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-7] {
  --smart-border: #e0e0e0;
  --smart-primary: #5BB339;
  --smart-primary-rgb: 91, 179, 57;
  --grid-header-background: #5BB339;
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-7] .smart-grid-column-header-cell-container {
  --smart-background: var(--grid-header-background);
}
.page-database-view .smart-grid[data-style=style-7] .smart-grid-column-header-cell-container smart-grid-column {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-7] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-7] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-7] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-8] {
  --smart-border: #e0e0e0;
  --grid-header-background: #EDB343;
  --smart-primary: #EDB343;
  --smart-primary-rgb: 237, 179, 67;
  --grid-header-background-color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-8] .smart-grid-column-header-cell-container {
  --smart-background: var(--grid-header-background);
}
.page-database-view .smart-grid[data-style=style-8] .smart-grid-column-header-cell-container smart-grid-column {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-8] smart-grid-toolbar {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-selected: rgba(var(--smart-primary-color-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-8] smart-grid-toolbar .smart-data-view-header-button[aria-expanded=true] {
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-8] smart-grid-toolbar .smart-data-view-header {
  background: var(--smart-background);
  color: var(--smart-primary-color);
}
.page-database-view .smart-grid[data-style=style-3], .page-database-view .smart-grid[data-style=style-4], .page-database-view .smart-grid[data-style=style-5], .page-database-view .smart-grid[data-style=style-6], .page-database-view .smart-grid[data-style=style-7], .page-database-view .smart-grid[data-style=style-8] {
  --smart-ui-state-selected: rgba(var(--smart-primary-rgb), 0.2);
  --smart-ui-state-color-selected: var(--smart-primary);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after, .page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after, .page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after, .page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after, .page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after, .page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([selected]) smart-grid-cell[selected]:not([selected=indeterminate]):not([header]):not(.smart-grid-column-border):after {
  background: var(--smart-primary);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-cell[selected]:not([editor]),
.page-database-view .smart-grid[data-style=style-3] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]), .page-database-view .smart-grid[data-style=style-4] smart-grid-cell[selected]:not([editor]),
.page-database-view .smart-grid[data-style=style-4] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]), .page-database-view .smart-grid[data-style=style-5] smart-grid-cell[selected]:not([editor]),
.page-database-view .smart-grid[data-style=style-5] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]), .page-database-view .smart-grid[data-style=style-6] smart-grid-cell[selected]:not([editor]),
.page-database-view .smart-grid[data-style=style-6] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]), .page-database-view .smart-grid[data-style=style-7] smart-grid-cell[selected]:not([editor]),
.page-database-view .smart-grid[data-style=style-7] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]), .page-database-view .smart-grid[data-style=style-8] smart-grid-cell[selected]:not([editor]),
.page-database-view .smart-grid[data-style=style-8] smart-grid-cell[selected][focus]:not([editor]):not([rowspan]):not([colspan]) {
  background: var(--smart-ui-state-selected);
  color: var(--smart-ui-state-color-selected);
}
.page-database-view .smart-grid[data-style=style-3] .smart-grid-column-header-cell-container, .page-database-view .smart-grid[data-style=style-4] .smart-grid-column-header-cell-container, .page-database-view .smart-grid[data-style=style-5] .smart-grid-column-header-cell-container, .page-database-view .smart-grid[data-style=style-6] .smart-grid-column-header-cell-container, .page-database-view .smart-grid[data-style=style-7] .smart-grid-column-header-cell-container, .page-database-view .smart-grid[data-style=style-8] .smart-grid-column-header-cell-container {
  --smart-background: var(--grid-header-background);
  --smart-ui-state-hover: #e4d1ff;
  --smart-ui-state-hover: rgba(var(--smart-primary-rgb), 0.2);
  --smart-border: rgba(var(--smart-primary-rgb), 0.2);
}
.page-database-view .smart-grid[data-style=style-3] .smart-grid-column-header-cell-container smart-grid-column, .page-database-view .smart-grid[data-style=style-4] .smart-grid-column-header-cell-container smart-grid-column, .page-database-view .smart-grid[data-style=style-5] .smart-grid-column-header-cell-container smart-grid-column, .page-database-view .smart-grid[data-style=style-6] .smart-grid-column-header-cell-container smart-grid-column, .page-database-view .smart-grid[data-style=style-7] .smart-grid-column-header-cell-container smart-grid-column, .page-database-view .smart-grid[data-style=style-8] .smart-grid-column-header-cell-container smart-grid-column {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-column:hover .smart-action-button, .page-database-view .smart-grid[data-style=style-4] smart-grid-column:hover .smart-action-button, .page-database-view .smart-grid[data-style=style-5] smart-grid-column:hover .smart-action-button, .page-database-view .smart-grid[data-style=style-6] smart-grid-column:hover .smart-action-button, .page-database-view .smart-grid[data-style=style-7] smart-grid-column:hover .smart-action-button, .page-database-view .smart-grid[data-style=style-8] smart-grid-column:hover .smart-action-button {
  border-color: rgba(var(--smart-primary-rgb), 0.8);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header], .page-database-view .smart-grid[data-style=style-4] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header], .page-database-view .smart-grid[data-style=style-5] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header], .page-database-view .smart-grid[data-style=style-6] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header], .page-database-view .smart-grid[data-style=style-7] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header], .page-database-view .smart-grid[data-style=style-8] smart-grid-row div.smart-grid-cell-container.near smart-grid-cell[header] {
  --smart-background: var(--grid-first-col-background);
  color: var(--grid-first-col-background-color) !important;
  background-color: var(--grid-first-col-background) !important;
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row),
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row), .page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row),
.page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row), .page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row),
.page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row), .page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row),
.page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row), .page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row),
.page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row), .page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row),
.page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) {
  --smart-background: var(--grid-first-col-background);
  color: var(--grid-first-col-background-color) !important;
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]),
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]), .page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]),
.page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]), .page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]),
.page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]), .page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]),
.page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]), .page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]),
.page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]), .page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]),
.page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]) {
  color: var(--grid-first-col-background-color);
  background-color: transparent !important;
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before,
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before, .page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before,
.page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before, .page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before,
.page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before, .page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before,
.page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before, .page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before,
.page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before, .page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[header]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before,
.page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([focus]) div.smart-grid-cell-container smart-grid-cell[freeze]:not(.smart-add-new-row) .smart-label:not(.smart-input):not([data-field=_rowHeaderColumn]):not([data-field=_rowDetailColumn]):before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ffffff !important;
  z-index: -1;
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-3] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze], .page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-4] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze], .page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-5] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze], .page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-6] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze], .page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-7] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze], .page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[header],
.page-database-view .smart-grid[data-style=style-8] smart-grid-row:not([selected]) div.smart-grid-cell-container smart-grid-cell[freeze] {
  background-color: var(--grid-first-col-background);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-column.top-far-corner, .page-database-view .smart-grid[data-style=style-4] smart-grid-column.top-far-corner, .page-database-view .smart-grid[data-style=style-5] smart-grid-column.top-far-corner, .page-database-view .smart-grid[data-style=style-6] smart-grid-column.top-far-corner, .page-database-view .smart-grid[data-style=style-7] smart-grid-column.top-far-corner, .page-database-view .smart-grid[data-style=style-8] smart-grid-column.top-far-corner {
  background: var(--grid-header-background);
  color: var(--grid-header-background-color);
}
.page-database-view .smart-grid[data-style=style-3] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before, .page-database-view .smart-grid[data-style=style-4] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before, .page-database-view .smart-grid[data-style=style-5] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before, .page-database-view .smart-grid[data-style=style-6] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before, .page-database-view .smart-grid[data-style=style-7] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before, .page-database-view .smart-grid[data-style=style-8] smart-grid-column:not(.smart-grid-column-border):not(.smart-grid-column-border-collapse):before {
  background: var(--smart-primary-color);
  opacity: 0.2;
}
.page-database-view .smart-grid[data-style=style-3] .smart-grid-header, .page-database-view .smart-grid[data-style=style-4] .smart-grid-header, .page-database-view .smart-grid[data-style=style-5] .smart-grid-header, .page-database-view .smart-grid[data-style=style-6] .smart-grid-header, .page-database-view .smart-grid[data-style=style-7] .smart-grid-header, .page-database-view .smart-grid[data-style=style-8] .smart-grid-header {
  border-color: rgba(var(--smart-primary-rgb), 0.8);
}
.page-database-view .smart-grid[data-style=style-3] .smart-data-view-sort-button.hidden, .page-database-view .smart-grid[data-style=style-3] .smart-data-view-sort-button.filtered, .page-database-view .smart-grid[data-style=style-3] .smart-data-view-sort-button.sorted, .page-database-view .smart-grid[data-style=style-3] .smart-data-view-sort-button.grouped, .page-database-view .smart-grid[data-style=style-4] .smart-data-view-sort-button.hidden, .page-database-view .smart-grid[data-style=style-4] .smart-data-view-sort-button.filtered, .page-database-view .smart-grid[data-style=style-4] .smart-data-view-sort-button.sorted, .page-database-view .smart-grid[data-style=style-4] .smart-data-view-sort-button.grouped, .page-database-view .smart-grid[data-style=style-5] .smart-data-view-sort-button.hidden, .page-database-view .smart-grid[data-style=style-5] .smart-data-view-sort-button.filtered, .page-database-view .smart-grid[data-style=style-5] .smart-data-view-sort-button.sorted, .page-database-view .smart-grid[data-style=style-5] .smart-data-view-sort-button.grouped, .page-database-view .smart-grid[data-style=style-6] .smart-data-view-sort-button.hidden, .page-database-view .smart-grid[data-style=style-6] .smart-data-view-sort-button.filtered, .page-database-view .smart-grid[data-style=style-6] .smart-data-view-sort-button.sorted, .page-database-view .smart-grid[data-style=style-6] .smart-data-view-sort-button.grouped, .page-database-view .smart-grid[data-style=style-7] .smart-data-view-sort-button.hidden, .page-database-view .smart-grid[data-style=style-7] .smart-data-view-sort-button.filtered, .page-database-view .smart-grid[data-style=style-7] .smart-data-view-sort-button.sorted, .page-database-view .smart-grid[data-style=style-7] .smart-data-view-sort-button.grouped, .page-database-view .smart-grid[data-style=style-8] .smart-data-view-sort-button.hidden, .page-database-view .smart-grid[data-style=style-8] .smart-data-view-sort-button.filtered, .page-database-view .smart-grid[data-style=style-8] .smart-data-view-sort-button.sorted, .page-database-view .smart-grid[data-style=style-8] .smart-data-view-sort-button.grouped {
  color: var(--smart-ui-state-color-hover);
  background-color: var(--smart-ui-state-hover);
}
.page-database-view .smart-grid[data-style=style-5] smart-grid-row {
  --grid-first-col-background: rgba(var(--smart-primary-rgb), .1);
}
.page-database-view[light-colors=true] {
  --main-text-color: #252324;
}
.page-database-view[light-colors=true] main .logo {
  filter: unset;
}
.page-database-view[light-colors=true] main .js-panel .js-right a {
  color: var(--main-text-color) !important;
}
.page-database-view[light-colors=true] .header-nav a,
.page-database-view[light-colors=true] .text-light {
  color: var(--main-text-color) !important;
}
.page-database-view[light-colors=true] .btn-outline-light {
  border-color: var(--main-text-color) !important;
  color: var(--main-text-color) !important;
  box-shadow: unset !important;
}
.page-database-view[light-colors=true] .btn-primary:focus {
  color: var(--smart-primary-color-color);
}
.page-database-view[light-colors=true] .btn-primary:hover {
  color: var(--smart-primary-color);
}
.page-database-view[light-colors=true] .smart-grid {
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-1] {
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-2] {
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-3] {
  --smart-border: #ABABAB;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: #000;
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-4] {
  --smart-border: #ABABAB;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
  --grid-first-col-background: #DCDCDC;
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-5] {
  --smart-border: #ABABAB;
  --grid-header-background: var(--smart-primary);
  --grid-header-background-color: var(--smart-primary-color);
  --grid-first-col-background: rgba(var(--smart-primary-rgb), .4);
  --grid-first-col-background-color: #000;
  --grid-background: #fff;
  --grid-background-color: #000;
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-6] {
  --smart-border: #ABABAB;
  --grid-header-background: #E74A2E;
  --grid-header-background-color: #000;
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-7] {
  --smart-border: #ABABAB;
  --grid-header-background: #5BB339;
  --grid-header-background-color: #000;
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view[light-colors=true] .smart-grid[data-style=style-8] {
  --smart-border: #ABABAB;
  --grid-header-background: #EDB343;
  --grid-header-background-color: #000;
  --smart-ui-state-color-selected: #000;
  --smart-primary-color: #000;
}
.page-database-view .smart-window.smart-kanban-window .history-table table th {
  background-color: var(--primary);
}

.js-title[contenteditable] {
  cursor: pointer;
}

.js-title[contenteditable=true]:focus {
  background: #e9ecef;
  padding: 3px 10px;
  outline: unset;
  font-size: 1.45rem;
  border-radius: 0.25rem;
}
.js-title[contenteditable=true]:focus:before {
  content: "Press ENTER to save";
  position: absolute;
  font-size: 8px;
  margin-top: -18px;
}

.discussions-members {
  display: flex;
  height: 100%;
  flex-flow: column;
  position: relative;
}
.discussions-members .chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--smart-primary);
  padding: 0.5rem 0.75rem;
  color: #fff;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.discussions-members .chat-header i,
.discussions-members .chat-header a {
  color: #fff !important;
  text-decoration: none;
}
.discussions-members.floated {
  position: fixed;
  bottom: 0;
  right: 30px;
  height: 370px;
  width: 180px;
  z-index: 9;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.1);
  background: var(--white);
}
.discussions-members.floated .avatar-wrapper.w-40px {
  width: 30px !important;
}
.discussions-members.floated a {
  font-size: 80%;
}
.discussions-members.floated .text-dark.ms-2 {
  margin-left: 0.25rem !important;
}

.discussions {
  display: flex;
  height: 100%;
  flex-flow: column;
  position: relative;
}
.discussions img {
  max-width: 100%;
}
.discussions .chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--smart-primary);
  padding: 0.5rem 0.75rem;
  color: #fff;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  z-index: 2;
}
.discussions .chat-header i,
.discussions .chat-header a {
  color: #fff !important;
  text-decoration: none;
}
.discussions .messages-holder {
  width: 100%;
  background: #fff;
}
.discussions .messages-holder .messages {
  padding: 15px 15px 0 15px;
  margin-top: 35px;
  height: 100%;
  max-height: calc(100% - 100px);
  overflow-y: auto;
}
.discussions .messages-holder .messages .incoming-msg .img-holder {
  display: inline-block;
  max-width: 45px;
  width: 6%;
}
.discussions .messages-holder .messages .incoming-msg .img-holder .square {
  display: flex;
  background: var(--smart-primary);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: var(--smart-primary-color);
  text-transform: uppercase;
}
.discussions .messages-holder .messages .incoming-msg .received-msg {
  display: inline-block;
  padding: 0 0 0 10px;
  vertical-align: top;
  width: 92%;
  position: relative;
  margin: 0px 0 20px;
}
.discussions .messages-holder .messages .incoming-msg .received-msg .msg-holder {
  width: 57%;
  word-break: break-all;
}
.discussions .messages-holder .messages .incoming-msg .received-msg .msg-holder a {
  text-decoration: none;
}
.discussions .messages-holder .messages .incoming-msg .received-msg .msg-holder p {
  position: relative;
  background: #ebebeb none repeat scroll 0 0;
  border-radius: 7px;
  color: #646464;
  font-size: 14px;
  margin: 0;
  padding: 5px 20px 5px 12px;
  width: 100%;
}
.discussions .messages-holder .messages .outgoing-msg {
  overflow: hidden;
  margin: 0px 0 20px;
  display: flex;
  justify-content: flex-end;
}
.discussions .messages-holder .messages .outgoing-msg .img-holder {
  display: inline-block;
  max-width: 45px;
  min-width: 25px;
  width: 6%;
}
.discussions .messages-holder .messages .outgoing-msg .img-holder .square {
  display: flex;
  background: var(--smart-primary);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  color: var(--smart-primary-color);
  text-transform: uppercase;
  background-size: 100%;
  background-position: center center;
  min-width: 30px;
}
.discussions .messages-holder .messages .outgoing-msg .sent-msg {
  width: 46%;
  position: relative;
  word-break: break-all;
  padding: 0 0 0 10px;
}
.discussions .messages-holder .messages .outgoing-msg .sent-msg a {
  color: #fff;
  text-decoration: none;
}
.discussions .messages-holder .messages .outgoing-msg .sent-msg p {
  position: relative;
  background: var(--smart-primary) none repeat scroll 0 0;
  border-radius: 7px;
  font-size: 14px;
  margin: 0;
  color: #fff;
  padding: 5px 10px 5px 12px;
  width: 100%;
}
.discussions .messages-holder .messages .remove-message {
  color: #fff;
  text-decoration: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
}
.discussions .messages-holder .messages .time-date {
  color: #747474;
  display: block;
  font-size: 12px;
  margin: 8px 0 0;
}
.discussions .inbox {
  border: 1px solid #c4c4c4;
  clear: both;
  overflow: hidden;
}
.discussions .top-space {
  margin: 20px 0 0;
}
.discussions .type-msg {
  z-index: 2;
  border-top: 1px solid #c4c4c4;
  position: relative;
  padding: 10px 70px 10px 10px;
}
.discussions .type-msg .input-msg textarea,
.discussions .type-msg .input-msg input {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: medium none;
  color: #4c4c4c;
  height: 35px !important;
  width: 100%;
  overflow-x: hidden;
  resize: none;
  line-height: 1.2;
  font-size: 15px;
  padding: 0;
}
.discussions .type-msg .input-msg textarea:focus,
.discussions .type-msg .input-msg input:focus {
  outline: unset;
}
.discussions .type-msg .input-msg > button {
  position: absolute;
  right: 0;
  top: 12px;
}
.discussions .type-msg .input-msg .emoticons-holder {
  position: absolute;
  right: 35px;
  top: 12px;
}
.discussions .type-msg .input-msg .emoticons-holder button {
  padding: 3.5px 4px;
  line-height: 1;
}
.discussions .type-msg .input-msg .emoticons-holder .dropdown-menu {
  padding: 5px;
}
.discussions .type-msg .input-msg .emoticons-holder .dropdown-menu > .row {
  --bs-gutter-x: 10px;
  width: 190px;
  height: 180px;
  overflow: auto;
}
.discussions .type-msg .input-msg .emoticons-holder .dropdown-toggle:after {
  display: none;
}
.discussions .type-msg .input-msg .mentions-input-box .mentions-autocomplete-list {
  bottom: 0px !important;
  border-radius: 3px !important;
}
.discussions .type-msg .input-msg .mentions-input-box .mentions {
  line-height: 1.2;
  font-size: 15px;
  padding: 0;
}
.discussions .type-msg .input-msg .mentions-input-box .mentions > div > strong {
  background: rgba(var(--smart-primary-rgb), 0.3);
  color: #fff;
  border-radius: 3px;
  line-height: 1.2;
}
.discussions.closed {
  display: none;
}
.discussions:not(.floated) > h3 {
  z-index: 1;
}
.discussions:not(.floated) .messages-holder {
  position: absolute;
  inset: 0;
}
.discussions.floated {
  position: fixed;
  bottom: 0;
  right: 230px;
  height: 370px;
  width: 320px;
  z-index: 10;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.1);
  background: var(--white);
}
.discussions.floated .messages-holder {
  height: calc(100% - 38px);
  max-height: calc(100vh - 38px);
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}
.discussions.floated .messages-holder .messages {
  padding: 30px 15px 0 15px;
  margin-top: 0;
  max-height: calc(100% - 50px);
  overflow-y: auto;
}
.discussions.floated .messages-holder .messages .outgoing-msg .sent-msg {
  max-width: 80%;
  width: auto;
}
.discussions.floated .messages-holder .messages .incoming-msg .received-msg {
  width: 88%;
}
.discussions.floated .messages-holder .messages .incoming-msg .received-msg .msg-holder {
  width: 100%;
}
.discussions.floated .messages-holder .messages .incoming-msg .img-holder {
  width: 12%;
}
.discussions.floated .messages-holder .type-msg .input-msg .emoticons-holder {
  right: 42px;
  top: 10px;
}
.discussions.floated .messages-holder .type-msg .input-msg button {
  right: 6px;
  top: 10px;
}
.discussions.floated .messages-holder .type-msg .input-msg textarea,
.discussions.floated .messages-holder .type-msg .input-msg input {
  height: 35px !important;
  line-height: 1.1;
}

.note-colors .js-note-colors {
  width: 270px;
  margin: 0;
  padding: 0;
}
.note-colors .js-note-colors .color-sample {
  border: 1px solid #e9ecef;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  margin: 0px 1px;
}
.note-colors .js-note-colors .color-sample.selected {
  position: relative;
  border: 1px solid #f8f9fa;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
}
.note-colors .js-note-colors .color-sample.selected::before {
  position: absolute;
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 15px;
  width: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: 2px;
}
.note-colors smart-scroll-viewer {
  min-width: unset;
  min-height: unset;
  width: auto;
  height: auto;
}
.note-colors smart-scroll-viewer .smart-scroll-viewer-content-container {
  padding: 0;
}
.note-colors smart-color-panel {
  margin: 0;
  padding: 0px;
}
.note-colors smart-color-panel .color-sample {
  border: 1px solid #e9ecef;
}
.note-colors smart-color-panel .color-sample.selected {
  position: relative;
  border: 1px solid #f8f9fa;
  padding: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.note-colors smart-color-panel .color-sample.selected::before {
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 15px;
  width: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: 2px;
}
.note-colors smart-color-panel .color-sample,
.note-colors smart-color-panel .user-color-container {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.notes .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 7px;
}
.notes .card.disabled {
  background-color: var(--bs-gray-100);
}
.notes .card.disabled small {
  color: var(--bs-gray-500);
}
.notes .card.disabled i.mdi {
  color: var(--bs-gray-300);
}
.notes .card .decoration-right-panel {
  z-index: 99;
  position: absolute;
  right: 10px;
  top: 10px;
}
.notes .card .card-body {
  flex: 1 1 auto;
  padding: 1.57rem;
  position: relative;
}
.notes .decoration-right-panel .dot,
.notes .color-filter .dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: var(--smart-primary);
  right: 0;
}
.notes .decoration-right-panel .smart-drop-down-button,
.notes .color-filter .smart-drop-down-button {
  background: transparent !important;
  border: 0;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.notes .decoration-right-panel .smart-drop-down-button .smart-drop-down-button-icon,
.notes .color-filter .smart-drop-down-button .smart-drop-down-button-icon {
  display: none;
}
.notes .decoration-right-panel .smart-drop-down.smart-drop-down-container,
.notes .color-filter .smart-drop-down.smart-drop-down-container {
  margin-top: 10px !important;
  min-width: unset !important;
}
.notes .decoration-right-panel .smart-action-button,
.notes .color-filter .smart-action-button {
  visibility: hidden;
  opacity: 0;
}
.notes .decoration-left {
  content: "";
  position: absolute;
  width: 3px;
  height: 35px;
  left: 0;
  top: 10px;
  background-color: var(--smart-primary);
}
.notes .decoration-right {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  right: 10px;
  top: 10px;
  border-radius: 100%;
  background-color: var(--smart-primary);
}
.notes .contributors {
  display: flex;
  min-height: 25px;
}
.notes .contributors .contributor {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: static;
  width: 25px;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
  border: 1px solid var(--bs-gray-400);
}
.notes .contributors .contributor:hover {
  position: relative;
  border: 1px solid var(--primary);
}
.quick-chat-button {
  background: var(--smart-primary);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  position: absolute;
  right: 12px;
  bottom: 13px;
  padding: 9px;
  border-radius: 7px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  z-index: 9;
}
.quick-chat-button:hover {
  color: #fff;
  opacity: 0.7;
}

#editor {
  --smart-editor-toolbar-drop-down-width-large: 120px;
}
#editor img {
  max-width: 100%;
}

.avatar-wrapper {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.3s ease;
}
.avatar-wrapper .ajax-image-holder {
  height: 100%;
  width: 100%;
  transition: all 0.3s ease;
  position: absolute;
  object-fit: cover;
}
.avatar-wrapper .ajax-image-holder:after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "\f0b7e";
  font: normal normal normal 24px/1 "Material Design Icons";
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  font-size: 5rem;
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ecf0f1;
  color: var(--primary);
  text-align: center;
}
.avatar-wrapper .upload-button {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.avatar-wrapper .upload-button .mdi {
  position: absolute;
  font-size: 5rem;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--primary);
}
.avatar-wrapper .upload-button:hover .mdi {
  opacity: 0.9;
}
.avatar-wrapper .ajax-image-field {
  display: none;
}
.avatar-wrapper:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.avatar-wrapper:hover .ajax-image-holder {
  opacity: 0.7;
}

#showImportDataModal .nav-tabs .btn-light.active {
  background: var(--secondary);
  color: var(--smart-primary-color);
}
#showImportDataModal .nav-tabs .btn-light.active i {
  color: var(--smart-primary-color) !important;
}

.text-decoration-none:focus {
  box-shadow: unset !important;
}

.blog-list .card-content {
  background: #ffffff;
  border: 4px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  height: 100%;
  display: flex;
  flex-flow: column;
}
.blog-list .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  z-index: 1;
}
.blog-list .card-img img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-list .card-img > span h4 {
  font-size: 12px;
  margin: 0;
  padding: 10px 5px;
  line-height: 0;
}
.blog-list .card-desc {
  padding: 1.25rem;
  margin-top: auto;
}
.blog-list .card-desc h3 {
  color: #000000;
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1.3em;
  margin-top: 0;
  margin-bottom: 5px;
  padding: 0;
}
.blog-list .card-desc p {
  color: #747373;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  margin: 0px 0px 20px 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}
.blog-list .btn-primary {
  color: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  margin: 0;
  border: 0;
  -webkit-border-radius: 0.125rem;
  border-radius: 0.125rem;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}
.blog-list .no-result {
  display: none;
}
.blog-list .no-result.no-items {
  display: block;
}

.article-clean {
  color: #56585b;
  background-color: #fff;
  font-family: "Lora", serif;
  font-size: 14px;
}
.article-clean .intro {
  font-size: 16px;
  margin: 0 auto 30px;
}
.article-clean .intro h1 {
  font-size: 32px;
  margin-bottom: 15px;
  padding-top: 20px;
  line-height: 1.5;
  color: inherit;
  margin-top: 20px;
}
.article-clean .intro p {
  color: #929292;
  font-size: 12px;
}
.article-clean .intro p .by {
  font-style: italic;
}
.article-clean .intro p .date {
  text-transform: uppercase;
  padding: 4px 0 4px 10px;
  margin-left: 10px;
  border-left: 1px solid #ddd;
}
.article-clean .intro p a {
  color: #333;
  text-transform: uppercase;
  padding-left: 3px;
}
.article-clean .intro img {
  margin-top: 20px;
}
.article-clean .text p {
  margin-bottom: 20px;
  line-height: 1.45;
}

@media (min-width: 768px) {
  .article-clean .text p {
    font-size: 16px;
  }
}
.article-clean .text h2 {
  margin-top: 28px;
  margin-bottom: 20px;
  line-height: 1.45;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

@media (min-width: 768px) {
  .article-clean .text h2 {
    font-size: 20px;
  }
}
.article-clean .text figure {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}
.article-clean .text figure img {
  margin-bottom: 12px;
  max-width: 100%;
}

.modal {
  z-index: 9999 !important;
}

.invoice-view {
  background: #fff;
  padding: 20px;
}
.invoice-view .invoice-company {
  font-size: 20px;
}
.invoice-view .invoice-header {
  margin: 0 -20px;
  background: #f0f3f4;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
.invoice-view .invoice-date,
.invoice-view .invoice-from,
.invoice-view .invoice-to {
  width: 33.333%;
}
.invoice-view .invoice-from,
.invoice-view .invoice-to {
  padding-right: 20px;
}
.invoice-view .invoice-from strong,
.invoice-view .invoice-to strong {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .invoice-view .invoice-from,
.invoice-view .invoice-to {
    order: 2;
    width: 50%;
  }
}
.invoice-view .invoice-date {
  text-align: right;
  padding-left: 20px;
}
.invoice-view .invoice-date .date {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .invoice-view .invoice-date {
    order: 1;
    width: 100%;
    text-align: left;
    padding-left: 0;
    margin-bottom: 25px;
  }
}
.invoice-view .invoice-price {
  background: #f0f3f4;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.invoice-view .invoice-price .invoice-price-left {
  display: table-cell;
  padding: 20px;
  font-size: 20px;
  font-weight: 600;
  width: 75%;
  position: relative;
  vertical-align: middle;
}
@media screen and (max-width: 576px) {
  .invoice-view .invoice-price .invoice-price-left {
    width: 100%;
  }
}
.invoice-view .invoice-price .invoice-price-left .sub-price {
  display: table-cell;
  vertical-align: middle;
  padding: 0 20px;
}
.invoice-view .invoice-price .invoice-price-left small {
  font-size: 12px;
  font-weight: 400;
  display: block;
}
.invoice-view .invoice-price .invoice-price-right {
  display: table-cell;
  padding: 20px 20px 0px 20px;
  width: 25%;
  position: relative;
  background: #2d353c;
  color: #fff;
  font-size: 28px;
  text-align: right;
  vertical-align: bottom;
  font-weight: 300;
}
@media screen and (max-width: 576px) {
  .invoice-view .invoice-price .invoice-price-right {
    width: 100%;
    padding: 10px;
  }
}
.invoice-view .invoice-price .invoice-price-right small {
  display: block;
  opacity: 0.6;
  font-size: 12px;
}
.invoice-view .invoice-price .invoice-price-row {
  display: table;
  float: left;
}
.invoice-view .invoice-footer {
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-size: 10px;
}
.invoice-view .invoice-note {
  color: #999;
  margin-top: 40px;
  font-size: 85%;
}
.invoice-view .invoice > div:not(.invoice-footer) {
  margin-bottom: 20px;
}
.invoice-view .btn.btn-white, .invoice-view .btn.btn-white.disabled, .invoice-view .btn.btn-white.disabled:focus, .invoice-view .btn.btn-white.disabled:hover, .invoice-view .btn.btn-white[disabled], .invoice-view .btn.btn-white[disabled]:focus, .invoice-view .btn.btn-white[disabled]:hover {
  color: #2d353c;
  background: #fff;
  border-color: #d9dfe3;
}

.position-relative-z-index-0 {
  z-index: 0;
  position: relative;
}

.page-blog-post .container-lg .text img {
  width: 600px;
  max-width: 100%;
  border: 4px solid var(--primary);
  border-radius: 10px;
}

smart-grid-cell .images .btn {
  padding-bottom: 0;
  padding-top: 0;
  border-radius: 0;
}

.member-notifications {
  width: 100%;
  min-width: 300px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  overflow-x: hidden;
}
.member-notifications h2 {
  font-size: 0.9rem;
  padding: 0px 10px 10px 10px;
  border-bottom: 1px solid var(--light);
  color: #999;
  margin: 0;
}
.member-notifications .notifications-item {
  display: flex;
  border-bottom: 1px solid var(--light);
  padding: 6px 9px;
  margin-bottom: 0px;
  cursor: pointer;
  width: 100%;
}
.member-notifications .notifications-item:hover:not(.bg-primary-opacity-2) {
  background-color: var(--light);
}
.member-notifications .notifications-item img {
  display: block;
  width: 50px;
  height: 50px;
  margin-right: 9px;
  border-radius: 50%;
  margin-top: 2px;
}
.member-notifications .notifications-item .text {
  width: 100%;
}
.member-notifications .notifications-item .text h4 {
  font-size: 0.9rem;
}
.member-notifications .notifications-item .text p {
  font-size: 0.8rem;
  margin: 0;
}

.button-badge {
  border-radius: 100%;
  position: absolute !important;
  right: -2px;
  top: auto !important;
  bottom: 4px;
  font-size: 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-grid-summary-row-cell .summary-value .placeholder.label {
  background-color: transparent !important;
}

.smart-editor:not([animation=none]) .smart-editor-content-container,
.smart-editor:not([animation=none]) .smart-editor-toolbar:not(.smart-tooltip) {
  transition: none !important;
}

smart-input {
  --smart-primary: var(--primary);
}

.smart-input:not([disabled]) .smart-drop-down-button:active,
.smart-input:not([disabled]) .smart-drop-down-button[open],
.smart-input:not([disabled])[readonly]:active .smart-drop-down-button,
.smart-input:not([disabled])[readonly]:active .smart-input,
.smart-input:not([disabled])[readonly][open] .smart-drop-down-button,
.smart-input:not([disabled])[readonly][open] .smart-input {
  --smart-ui-state-active: var(--primary);
}

.js-database-settings-basic .smart-button-group .smart-button-group-items .smart-button-group-item {
  padding: 5px 10px;
}

.tag-pro:not(.active) {
  position: relative;
}
.tag-pro:not(.active):before {
  position: absolute;
  background: var(--bs-orange);
  color: var(--white);
  border-radius: 15px;
  padding: 0px 1.2px;
  top: -5px;
  right: -10px;
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: 14px;
  line-height: 1.2 !important;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f01c1";
}

.js-base-title-copy {
  display: inline-block;
  border: 0;
  outline: unset;
}
.js-base-title-copy:focus {
  outline: unset !important;
  border: 0;
}

.tooltip.show {
  z-index: 99999;
}

#noteModal .js-editor-list-items,
#noteModal .js-editor.smart-sortable {
  padding: 0 !important;
  margin: 0px;
}
#noteModal .js-editor-list-items .js-drag,
#noteModal .js-editor.smart-sortable .js-drag {
  position: absolute;
  left: 5px;
}
#noteModal .js-editor-list-items .js-item,
#noteModal .js-editor-list-items .smart-sortable-item,
#noteModal .js-editor.smart-sortable .js-item,
#noteModal .js-editor.smart-sortable .smart-sortable-item {
  background: var(--white);
  margin: 0;
  padding: 5px 0px 5px 25px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
#noteModal .js-editor-list-items .js-item:focus-within,
#noteModal .js-editor-list-items .smart-sortable-item:focus-within,
#noteModal .js-editor.smart-sortable .js-item:focus-within,
#noteModal .js-editor.smart-sortable .smart-sortable-item:focus-within {
  border-top: 1px solid silver;
  border-bottom: 1px solid silver;
}
#noteModal .js-editor-list-items .js-item .form-control,
#noteModal .js-editor-list-items .js-item .form-control:focus,
#noteModal .js-editor-list-items .smart-sortable-item .form-control,
#noteModal .js-editor-list-items .smart-sortable-item .form-control:focus,
#noteModal .js-editor.smart-sortable .js-item .form-control,
#noteModal .js-editor.smart-sortable .js-item .form-control:focus,
#noteModal .js-editor.smart-sortable .smart-sortable-item .form-control,
#noteModal .js-editor.smart-sortable .smart-sortable-item .form-control:focus {
  padding-left: 5px;
  border: unset !important;
  outline: unset !important;
  box-shadow: unset !important;
}
#noteModal .js-editor-list-items .js-item::after, #noteModal .js-editor-list-items .js-item::before,
#noteModal .js-editor-list-items .smart-sortable-item::after,
#noteModal .js-editor-list-items .smart-sortable-item::before,
#noteModal .js-editor.smart-sortable .js-item::after,
#noteModal .js-editor.smart-sortable .js-item::before,
#noteModal .js-editor.smart-sortable .smart-sortable-item::after,
#noteModal .js-editor.smart-sortable .smart-sortable-item::before {
  opacity: 1 !important;
  left: -25px !important;
}
#noteModal .js-editor-list-items .js-item .form-check,
#noteModal .js-editor-list-items .smart-sortable-item .form-check,
#noteModal .js-editor.smart-sortable .js-item .form-check,
#noteModal .js-editor.smart-sortable .smart-sortable-item .form-check {
  margin: 0;
  padding: 0;
}
#noteModal .js-editor-list-items .js-item.dragged,
#noteModal .js-editor-list-items .smart-sortable-item.dragged,
#noteModal .js-editor.smart-sortable .js-item.dragged,
#noteModal .js-editor.smart-sortable .smart-sortable-item.dragged {
  box-shadow: unset !important;
}

.js-form-fields-submit .smart-sortable {
  padding: 0 !important;
  margin: 0px;
  background: transparent;
}
.js-form-fields-submit .smart-sortable ul {
  padding: 0;
  margin: 0;
}
.js-form-fields-submit .smart-sortable ul li.js-item {
  margin: 0 0 1rem 2.5rem;
  padding-left: 0;
  list-style: none;
}
.js-form-fields-submit .smart-sortable ul li.js-item::after, .js-form-fields-submit .smart-sortable ul li.js-item::before {
  left: -2.5rem !important;
  display: inline-block;
  font: normal normal normal 24px/1 "Material Design Icons";
  font-size: 24px;
  text-rendering: auto;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f01db";
  bottom: 5px;
  top: 4px;
}
.js-form-fields-submit .smart-sortable ul li.js-item::after, .js-form-fields-submit .smart-sortable ul li.js-item::before {
  opacity: 1 !important;
  visibility: visible;
  position: absolute;
}
.js-form-fields-submit .smart-sortable ul li.js-item.hover-show-holder::after, .js-form-fields-submit .smart-sortable ul li.js-item.hover-show-holder::before {
  opacity: 0 !important;
  visibility: hidden;
}
.js-form-fields-submit .smart-sortable ul li.js-item.hover-show-holder:hover::after, .js-form-fields-submit .smart-sortable ul li.js-item.hover-show-holder:hover::before {
  opacity: 1 !important;
  visibility: visible;
}
.js-form-fields-submit .smart-sortable ul li.js-item::after {
  display: none !important;
}
.js-form-fields-submit .smart-sortable ul li.js-item .form-check {
  margin: 0;
  padding: 0;
}
.js-form-fields-submit .smart-sortable ul li.js-item.dragged {
  box-shadow: unset !important;
}

.modal-open .js-form-fields-submit .smart-sortable ul li.js-item.hover-show-holder::after, .modal-open .js-form-fields-submit .smart-sortable ul li.js-item.hover-show-holder::before {
  width: 0;
}

.smart-icon {
  font-family: var(--smart-font-family-icon);
  margin-right: 5px;
  font-size: 16px;
  position: relative;
  font-weight: 400;
  white-space: nowrap;
  color: var(--smart-background-color);
  font-style: normal;
}
.smart-icon.smart-icon-contains:after {
  content: var(--smart-icon-contains);
}
.smart-icon.smart-icon-starts-with:after {
  content: var(--smart-icon-starts_with);
}
.smart-icon.smart-icon-ends-with:after {
  content: var(--smart-icon-ends_with);
}
.smart-icon.smart-icon-does-not-contain:after {
  content: var(--smart-icon-does_not_contain);
}
.smart-icon.smart-icon-equal:after {
  content: var(--smart-icon-equals);
}
.smart-icon.smart-icon-greater-than:after {
  content: var(--smart-icon-greater-than);
}
.smart-icon.smart-icon-greater-than-equal:after {
  content: var(--smart-icon-greater-than-equal);
}
.smart-icon.smart-icon-less-than:after {
  content: var(--smart-icon-less-than);
}
.smart-icon.smart-icon-less-than-equal:after {
  content: var(--smart-icon-less-than-equal);
}
.smart-icon.smart-icon-not-equal:after {
  content: var(--smart-icon-not-equal);
}
.smart-icon.smart-icon-between:after {
  content: var(--smart-icon-between);
}
.smart-icon.smart-icon-empty:after {
  content: var(--smart-icon-check-empty);
  position: relative;
  top: 1px;
}
.smart-icon.smart-icon-not-empty:after {
  content: var(--smart-icon-check-empty);
  position: relative;
  top: 3px;
}
.smart-icon.smart-icon-not-empty:before {
  content: var(--smart-icon-close);
  font-size: 10px;
  left: calc(50% - 4px);
  top: calc(50% - 5px);
  position: absolute;
}
.smart-icon.smart-icon-null:after {
  content: var(--smart-icon-circle-empty);
}
.smart-icon.smart-icon-not-null:after {
  content: var(--smart-icon-circle);
}

.field-inherit-styles {
  text-align: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  border-width: 0px;
  border-color: transparent;
  box-shadow: unset;
  border-radius: 0;
  background: transparent;
  outline: unset;
  padding: 0;
  width: 100%;
}
.field-inherit-styles:focus {
  outline: unset;
  border-radius: 0.25rem;
}
.field-inherit-styles:empty:before {
  color: var(--bs-gray-500);
  display: block;
  content: attr(data-default-title);
}

.cursor-pointer {
  cursor: pointer;
}

.micro-title {
  opacity: 0.5;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.box-shadow-none {
  box-shadow: unset !important;
  -moz-box-shadow: unset !important;
  -o-box-shadow: unset !important;
  -webkit-box-sizing: unset !important;
}

.color-chooser .smart-scroll-viewer {
  width: 152px !important;
  height: 210px !important;
}
.color-chooser .color-sample {
  border: 1px solid #e9ecef;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: inline-flex;
  margin: 0px 1px;
}
.color-chooser .color-sample.selected {
  position: relative;
  border: 1px solid #f8f9fa;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
}
.color-chooser .color-sample.selected::before {
  position: absolute;
  content: "";
  display: inline-block;
  transform: rotate(45deg);
  height: 15px;
  width: 8px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-top: 2px;
}

.color-chooser-holder {
  position: relative;
  width: 14px;
  height: 14px;
}
.color-chooser-holder .dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: var(--smart-primary);
  right: 0;
}
.color-chooser-holder .smart-drop-down-button {
  background: transparent !important;
  border: 0;
  width: 30px !important;
  height: 30px;
  border-radius: 100%;
  border: 0 !important;
}
.color-chooser-holder .smart-drop-down-button .smart-drop-down-button-icon {
  display: none;
  visibility: hidden !important;
}
.color-chooser-holder .smart-drop-down.smart-drop-down-container {
  margin-top: 10px !important;
  min-width: unset !important;
}
.color-chooser-holder .smart-action-button {
  visibility: hidden;
  opacity: 0;
}

.notifyjs-wrapper.notifyjs-hidable {
  display: flex;
  align-items: center;
}

.logo-light {
  filter: brightness(0) invert(1);
}

#pills-activity strong {
  color: var(--primary);
}

.text-decoration-line-through {
  text-decoration: line-through;
}

@media print {
  footer {
    display: none;
  }
}
.sections .section {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  padding: 10px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.sections .section .container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.sections .section .container.bg-r {
  background-position: right;
}
.sections .section.section-viewport {
  min-height: calc(100% - 2 * 10px);
}
.sections .section.section-viewport .container {
  min-height: calc(100% - 2 * 10px);
}
.sections .section.section-image-bg {
  color: #f2f2f2;
}
.sections .section .section-box {
  background: #fff;
  padding: 3.75rem 2.5rem;
  overflow: hidden;
  color: #444444;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.sections .section .section-touch {
  border-top: solid 0.3125rem #50a1ff;
  z-index: 2;
}
.sections .section img + p, .sections .section img + h3, .sections .section img + h4 {
  margin-top: 1.25rem;
}
.sections .section img + h1, .sections .section img + h2 {
  margin-top: 2.5rem;
}
.sections .section .col-fill-left {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.sections .section .col-fill-left + div {
  position: relative;
  z-index: 2;
}
.sections .section .col-fill-right {
  width: 50%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.sections .section .col-fill-right + div {
  position: relative;
  z-index: 2;
}
.sections .section img.section-icon {
  width: auto;
  width: 3.75rem;
}
.sections .section img.section-icon-round {
  width: auto;
  width: 3.75rem;
}
.sections .section .row-100 {
  height: 6.25rem;
  width: 100%;
}
.sections .section .row-50 {
  height: 3.125rem;
  width: 100%;
}
.sections .section .row-70 {
  height: 4.375rem;
  width: 100%;
}

html {
  --primary: #50a1ff;
  --secondary: #6c757d;
  --success: #198754;
  --info: #0dcaf0;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #212529;
  --white: #fff;
  --black: #000;
}

.row-mx-1 {
  margin-left: -1px !important;
  margin-right: -1px !important;
}

.col-px-1 {
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.row-mx-2 {
  margin-left: -2px !important;
  margin-right: -2px !important;
}

.col-px-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}

.row-mx-3 {
  margin-left: -3px !important;
  margin-right: -3px !important;
}

.col-px-3 {
  padding-left: 3px !important;
  padding-right: 3px !important;
}

.row-mx-4 {
  margin-left: -4px !important;
  margin-right: -4px !important;
}

.col-px-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.row-mx-5 {
  margin-left: -5px !important;
  margin-right: -5px !important;
}

.col-px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.row-mx-6 {
  margin-left: -6px !important;
  margin-right: -6px !important;
}

.col-px-6 {
  padding-left: 6px !important;
  padding-right: 6px !important;
}

.row-mx-7 {
  margin-left: -7px !important;
  margin-right: -7px !important;
}

.col-px-7 {
  padding-left: 7px !important;
  padding-right: 7px !important;
}

.row-mx-8 {
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.col-px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.row-mx-9 {
  margin-left: -9px !important;
  margin-right: -9px !important;
}

.col-px-9 {
  padding-left: 9px !important;
  padding-right: 9px !important;
}

.row-mx-10 {
  margin-left: -10px !important;
  margin-right: -10px !important;
}

.col-px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.row-mx-11 {
  margin-left: -11px !important;
  margin-right: -11px !important;
}

.col-px-11 {
  padding-left: 11px !important;
  padding-right: 11px !important;
}

.row-mx-12 {
  margin-left: -12px !important;
  margin-right: -12px !important;
}

.col-px-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.row-mx-13 {
  margin-left: -13px !important;
  margin-right: -13px !important;
}

.col-px-13 {
  padding-left: 13px !important;
  padding-right: 13px !important;
}

.row-mx-14 {
  margin-left: -14px !important;
  margin-right: -14px !important;
}

.col-px-14 {
  padding-left: 14px !important;
  padding-right: 14px !important;
}

.row-mx-15 {
  margin-left: -15px !important;
  margin-right: -15px !important;
}

.col-px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.row-mx-16 {
  margin-left: -16px !important;
  margin-right: -16px !important;
}

.col-px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.row-mx-17 {
  margin-left: -17px !important;
  margin-right: -17px !important;
}

.col-px-17 {
  padding-left: 17px !important;
  padding-right: 17px !important;
}

.row-mx-18 {
  margin-left: -18px !important;
  margin-right: -18px !important;
}

.col-px-18 {
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.row-mx-19 {
  margin-left: -19px !important;
  margin-right: -19px !important;
}

.col-px-19 {
  padding-left: 19px !important;
  padding-right: 19px !important;
}

.row-mx-20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.col-px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.row-mx-21 {
  margin-left: -21px !important;
  margin-right: -21px !important;
}

.col-px-21 {
  padding-left: 21px !important;
  padding-right: 21px !important;
}

.row-mx-22 {
  margin-left: -22px !important;
  margin-right: -22px !important;
}

.col-px-22 {
  padding-left: 22px !important;
  padding-right: 22px !important;
}

.row-mx-23 {
  margin-left: -23px !important;
  margin-right: -23px !important;
}

.col-px-23 {
  padding-left: 23px !important;
  padding-right: 23px !important;
}

.row-mx-24 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.col-px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.row-mx-25 {
  margin-left: -25px !important;
  margin-right: -25px !important;
}

.col-px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.row-mx-26 {
  margin-left: -26px !important;
  margin-right: -26px !important;
}

.col-px-26 {
  padding-left: 26px !important;
  padding-right: 26px !important;
}

.row-mx-27 {
  margin-left: -27px !important;
  margin-right: -27px !important;
}

.col-px-27 {
  padding-left: 27px !important;
  padding-right: 27px !important;
}

.row-mx-28 {
  margin-left: -28px !important;
  margin-right: -28px !important;
}

.col-px-28 {
  padding-left: 28px !important;
  padding-right: 28px !important;
}

.row-mx-29 {
  margin-left: -29px !important;
  margin-right: -29px !important;
}

.col-px-29 {
  padding-left: 29px !important;
  padding-right: 29px !important;
}

.row-mx-30 {
  margin-left: -30px !important;
  margin-right: -30px !important;
}

.col-px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.w-125 {
  width: 125px !important;
}

.h-125 {
  height: 125px !important;
}

.mw-125 {
  min-width: 125px !important;
}

.maxw-125 {
  max-width: 125px !important;
}

.mh-125 {
  min-height: 125px !important;
}

.maxh-125 {
  max-height: 125px !important;
}

.w-150 {
  width: 150px !important;
}

.h-150 {
  height: 150px !important;
}

.mw-150 {
  min-width: 150px !important;
}

.maxw-150 {
  max-width: 150px !important;
}

.mh-150 {
  min-height: 150px !important;
}

.maxh-150 {
  max-height: 150px !important;
}

.w-175 {
  width: 175px !important;
}

.h-175 {
  height: 175px !important;
}

.mw-175 {
  min-width: 175px !important;
}

.maxw-175 {
  max-width: 175px !important;
}

.mh-175 {
  min-height: 175px !important;
}

.maxh-175 {
  max-height: 175px !important;
}

.w-200 {
  width: 200px !important;
}

.h-200 {
  height: 200px !important;
}

.mw-200 {
  min-width: 200px !important;
}

.maxw-200 {
  max-width: 200px !important;
}

.mh-200 {
  min-height: 200px !important;
}

.maxh-200 {
  max-height: 200px !important;
}

.w-250 {
  width: 250px !important;
}

.h-250 {
  height: 250px !important;
}

.mw-250 {
  min-width: 250px !important;
}

.maxw-250 {
  max-width: 250px !important;
}

.mh-250 {
  min-height: 250px !important;
}

.maxh-250 {
  max-height: 250px !important;
}

.w-300 {
  width: 300px !important;
}

.h-300 {
  height: 300px !important;
}

.mw-300 {
  min-width: 300px !important;
}

.maxw-300 {
  max-width: 300px !important;
}

.mh-300 {
  min-height: 300px !important;
}

.maxh-300 {
  max-height: 300px !important;
}

.w-350 {
  width: 350px !important;
}

.h-350 {
  height: 350px !important;
}

.mw-350 {
  min-width: 350px !important;
}

.maxw-350 {
  max-width: 350px !important;
}

.mh-350 {
  min-height: 350px !important;
}

.maxh-350 {
  max-height: 350px !important;
}

.w-400 {
  width: 400px !important;
}

.h-400 {
  height: 400px !important;
}

.mw-400 {
  min-width: 400px !important;
}

.maxw-400 {
  max-width: 400px !important;
}

.mh-400 {
  min-height: 400px !important;
}

.maxh-400 {
  max-height: 400px !important;
}

.w-450 {
  width: 450px !important;
}

.h-450 {
  height: 450px !important;
}

.mw-450 {
  min-width: 450px !important;
}

.maxw-450 {
  max-width: 450px !important;
}

.mh-450 {
  min-height: 450px !important;
}

.maxh-450 {
  max-height: 450px !important;
}

.w-500 {
  width: 500px !important;
}

.h-500 {
  height: 500px !important;
}

.mw-500 {
  min-width: 500px !important;
}

.maxw-500 {
  max-width: 500px !important;
}

.mh-500 {
  min-height: 500px !important;
}

.maxh-500 {
  max-height: 500px !important;
}

.w-550 {
  width: 550px !important;
}

.h-550 {
  height: 550px !important;
}

.mw-550 {
  min-width: 550px !important;
}

.maxw-550 {
  max-width: 550px !important;
}

.mh-550 {
  min-height: 550px !important;
}

.maxh-550 {
  max-height: 550px !important;
}

.w-600 {
  width: 600px !important;
}

.h-600 {
  height: 600px !important;
}

.mw-600 {
  min-width: 600px !important;
}

.maxw-600 {
  max-width: 600px !important;
}

.mh-600 {
  min-height: 600px !important;
}

.maxh-600 {
  max-height: 600px !important;
}

.w-650 {
  width: 650px !important;
}

.h-650 {
  height: 650px !important;
}

.mw-650 {
  min-width: 650px !important;
}

.maxw-650 {
  max-width: 650px !important;
}

.mh-650 {
  min-height: 650px !important;
}

.maxh-650 {
  max-height: 650px !important;
}

.w-700 {
  width: 700px !important;
}

.h-700 {
  height: 700px !important;
}

.mw-700 {
  min-width: 700px !important;
}

.maxw-700 {
  max-width: 700px !important;
}

.mh-700 {
  min-height: 700px !important;
}

.maxh-700 {
  max-height: 700px !important;
}

.w-750 {
  width: 750px !important;
}

.h-750 {
  height: 750px !important;
}

.mw-750 {
  min-width: 750px !important;
}

.maxw-750 {
  max-width: 750px !important;
}

.mh-750 {
  min-height: 750px !important;
}

.maxh-750 {
  max-height: 750px !important;
}

.w-800 {
  width: 800px !important;
}

.h-800 {
  height: 800px !important;
}

.mw-800 {
  min-width: 800px !important;
}

.maxw-800 {
  max-width: 800px !important;
}

.mh-800 {
  min-height: 800px !important;
}

.maxh-800 {
  max-height: 800px !important;
}

.w-850 {
  width: 850px !important;
}

.h-850 {
  height: 850px !important;
}

.mw-850 {
  min-width: 850px !important;
}

.maxw-850 {
  max-width: 850px !important;
}

.mh-850 {
  min-height: 850px !important;
}

.maxh-850 {
  max-height: 850px !important;
}

.w-900 {
  width: 900px !important;
}

.h-900 {
  height: 900px !important;
}

.mw-900 {
  min-width: 900px !important;
}

.maxw-900 {
  max-width: 900px !important;
}

.mh-900 {
  min-height: 900px !important;
}

.maxh-900 {
  max-height: 900px !important;
}

.w-5px {
  width: 5px !important;
}

.h-5px {
  height: 5px !important;
}

.w-10px {
  width: 10px !important;
}

.h-10px {
  height: 10px !important;
}

.w-15px {
  width: 15px !important;
}

.h-15px {
  height: 15px !important;
}

.w-20px {
  width: 20px !important;
}

.h-20px {
  height: 20px !important;
}

.w-25px {
  width: 25px !important;
}

.h-25px {
  height: 25px !important;
}

.w-30px {
  width: 30px !important;
}

.h-30px {
  height: 30px !important;
}

.w-35px {
  width: 35px !important;
}

.h-35px {
  height: 35px !important;
}

.w-40px {
  width: 40px !important;
}

.h-40px {
  height: 40px !important;
}

.w-45px {
  width: 45px !important;
}

.h-45px {
  height: 45px !important;
}

.w-50px {
  width: 50px !important;
}

.h-50px {
  height: 50px !important;
}

.w-55px {
  width: 55px !important;
}

.h-55px {
  height: 55px !important;
}

.w-60px {
  width: 60px !important;
}

.h-60px {
  height: 60px !important;
}

.w-65px {
  width: 65px !important;
}

.h-65px {
  height: 65px !important;
}

.w-70px {
  width: 70px !important;
}

.h-70px {
  height: 70px !important;
}

.w-75px {
  width: 75px !important;
}

.h-75px {
  height: 75px !important;
}

.w-80px {
  width: 80px !important;
}

.h-80px {
  height: 80px !important;
}

.w-85px {
  width: 85px !important;
}

.h-85px {
  height: 85px !important;
}

.w-90px {
  width: 90px !important;
}

.h-90px {
  height: 90px !important;
}

.w-95px {
  width: 95px !important;
}

.h-95px {
  height: 95px !important;
}

.w-100px {
  width: 100px !important;
}

.h-100px {
  height: 100px !important;
}

.h-auto {
  height: auto;
}

.w-auto {
  width: auto;
}

.w-fullscreen, .w-100vw {
  width: 100vw !important;
}

.h-fullscreen, .h-100vh {
  height: 100vh !important;
}

.h-50vh {
  height: 50vh !important;
}

.mw-fullscreen, .mw-100vw {
  min-width: 100vw !important;
}

.mh-fullscreen, .mh-100vh {
  min-height: 100vh !important;
}

.mh-50vh {
  min-height: 50vh !important;
}

@media (max-height: 640px) {
  .h-fullscreen {
    height: auto !important;
  }
}
a.hover-text-primary:hover,
.hover-text-primary:hover {
  color: var(--primary) !important;
}

a.hover-text-secondary:hover,
.hover-text-secondary:hover {
  color: var(--secondary) !important;
}

a.hover-text-success:hover,
.hover-text-success:hover {
  color: var(--success) !important;
}

a.hover-text-danger:hover,
.hover-text-danger:hover {
  color: var(--danger) !important;
}

a.hover-text-info:hover,
.hover-text-info:hover {
  color: var(--info) !important;
}

a.hover-text-warning:hover,
.hover-text-warning:hover {
  color: var(--warning) !important;
}

a.hover-text-light:hover,
.hover-text-light:hover {
  color: var(--light) !important;
}

a.hover-text-dark:hover,
.hover-text-dark:hover {
  color: var(--dark) !important;
}

a.hover-text-white:hover,
.hover-text-white:hover {
  color: var(--white) !important;
}

a.hover-text-black:hover,
.hover-text-black:hover {
  color: var(--black) !important;
}

.hover-opacity-1:hover {
  opacity: 0.1 !important;
}

.hover-opacity-2:hover {
  opacity: 0.2 !important;
}

.hover-opacity-3:hover {
  opacity: 0.3 !important;
}

.hover-opacity-4:hover {
  opacity: 0.4 !important;
}

.hover-opacity-5:hover {
  opacity: 0.5 !important;
}

.hover-opacity-6:hover {
  opacity: 0.6 !important;
}

.hover-opacity-7:hover {
  opacity: 0.7 !important;
}

.hover-opacity-8:hover {
  opacity: 0.8 !important;
}

.hover-opacity-9:hover {
  opacity: 0.9 !important;
}

.hover-opacity-10:hover {
  opacity: 1 !important;
}

.border-color-primary {
  border-color: var(--primary) !important;
}

.border-color-secondary {
  border-color: var(--secondary) !important;
}

.border-color-success {
  border-color: var(--success) !important;
}

.border-color-danger {
  border-color: var(--danger) !important;
}

.border-color-info {
  border-color: var(--info) !important;
}

.border-color-warning {
  border-color: var(--warning) !important;
}

.border-color-light {
  border-color: var(--light) !important;
}

.border-color-dark {
  border-color: var(--dark) !important;
}

.border-color-white {
  border-color: var(--white) !important;
}

.border-color-black {
  border-color: var(--black) !important;
}

.hover-border-color-primary:hover {
  border-color: var(--primary) !important;
}

.hover-border-color-secondary:hover {
  border-color: var(--secondary) !important;
}

.hover-border-color-success:hover {
  border-color: var(--success) !important;
}

.hover-border-color-danger:hover {
  border-color: var(--danger) !important;
}

.hover-border-color-info:hover {
  border-color: var(--info) !important;
}

.hover-border-color-warning:hover {
  border-color: var(--warning) !important;
}

.hover-border-color-light:hover {
  border-color: var(--light) !important;
}

.hover-border-color-dark:hover {
  border-color: var(--dark) !important;
}

.hover-border-color-white:hover {
  border-color: var(--white) !important;
}

.hover-border-color-black:hover {
  border-color: var(--black) !important;
}

.hover-bg-primary:hover {
  background-color: var(--primary) !important;
}

.hover-bg-secondary:hover {
  background-color: var(--secondary) !important;
}

.hover-bg-success:hover {
  background-color: var(--success) !important;
}

.hover-bg-danger:hover {
  background-color: var(--danger) !important;
}

.hover-bg-info:hover {
  background-color: var(--info) !important;
}

.hover-bg-warning:hover {
  background-color: var(--warning) !important;
}

.hover-bg-light:hover {
  background-color: var(--light) !important;
}

.hover-bg-dark:hover {
  background-color: var(--dark) !important;
}

.hover-bg-white:hover {
  background-color: var(--white) !important;
}

.hover-bg-black:hover {
  background-color: var(--black) !important;
}

.hover-bg-primary.hover-text-light:hover .text-primary {
  color: var(--light) !important;
}
.hover-bg-primary.hover-text-dark:hover .text-primary {
  color: var(--dark) !important;
}

.hover-bg-secondary:hover.hover-text-light:hover .text-primary {
  color: var(--light) !important;
}
.hover-bg-secondary:hover.hover-text-dark:hover .text-primary {
  color: var(--dark) !important;
}

.bg-primary-opacity-1 {
  background: rgba(80, 161, 255, 0.1);
}

.bg-secondary-opacity-1 {
  background: rgba(108, 117, 125, 0.1);
}

.bg-success-opacity-1 {
  background: rgba(25, 135, 84, 0.1);
}

.bg-danger-opacity-1 {
  background: rgba(220, 53, 69, 0.1);
}

.bg-info-opacity-1 {
  background: rgba(13, 202, 240, 0.1);
}

.bg-warning-opacity-1 {
  background: rgba(255, 193, 7, 0.1);
}

.bg-white-opacity-1 {
  background: rgba(255, 255, 255, 0.1);
}

.bg-dark-opacity-1 {
  background: rgba(33, 37, 41, 0.1);
}

.bg-primary-opacity-2 {
  background: rgba(80, 161, 255, 0.2);
}

.bg-secondary-opacity-2 {
  background: rgba(108, 117, 125, 0.2);
}

.bg-success-opacity-2 {
  background: rgba(25, 135, 84, 0.2);
}

.bg-danger-opacity-2 {
  background: rgba(220, 53, 69, 0.2);
}

.bg-info-opacity-2 {
  background: rgba(13, 202, 240, 0.2);
}

.bg-warning-opacity-2 {
  background: rgba(255, 193, 7, 0.2);
}

.bg-white-opacity-2 {
  background: rgba(255, 255, 255, 0.2);
}

.bg-dark-opacity-2 {
  background: rgba(33, 37, 41, 0.2);
}

.bg-primary-opacity-3 {
  background: rgba(80, 161, 255, 0.3);
}

.bg-secondary-opacity-3 {
  background: rgba(108, 117, 125, 0.3);
}

.bg-success-opacity-3 {
  background: rgba(25, 135, 84, 0.3);
}

.bg-danger-opacity-3 {
  background: rgba(220, 53, 69, 0.3);
}

.bg-info-opacity-3 {
  background: rgba(13, 202, 240, 0.3);
}

.bg-warning-opacity-3 {
  background: rgba(255, 193, 7, 0.3);
}

.bg-white-opacity-3 {
  background: rgba(255, 255, 255, 0.3);
}

.bg-dark-opacity-3 {
  background: rgba(33, 37, 41, 0.3);
}

.bg-primary-opacity-4 {
  background: rgba(80, 161, 255, 0.4);
}

.bg-secondary-opacity-4 {
  background: rgba(108, 117, 125, 0.4);
}

.bg-success-opacity-4 {
  background: rgba(25, 135, 84, 0.4);
}

.bg-danger-opacity-4 {
  background: rgba(220, 53, 69, 0.4);
}

.bg-info-opacity-4 {
  background: rgba(13, 202, 240, 0.4);
}

.bg-warning-opacity-4 {
  background: rgba(255, 193, 7, 0.4);
}

.bg-white-opacity-4 {
  background: rgba(255, 255, 255, 0.4);
}

.bg-dark-opacity-4 {
  background: rgba(33, 37, 41, 0.4);
}

.bg-primary-opacity-5 {
  background: rgba(80, 161, 255, 0.5);
}

.bg-secondary-opacity-5 {
  background: rgba(108, 117, 125, 0.5);
}

.bg-success-opacity-5 {
  background: rgba(25, 135, 84, 0.5);
}

.bg-danger-opacity-5 {
  background: rgba(220, 53, 69, 0.5);
}

.bg-info-opacity-5 {
  background: rgba(13, 202, 240, 0.5);
}

.bg-warning-opacity-5 {
  background: rgba(255, 193, 7, 0.5);
}

.bg-white-opacity-5 {
  background: rgba(255, 255, 255, 0.5);
}

.bg-dark-opacity-5 {
  background: rgba(33, 37, 41, 0.5);
}

.bg-primary-opacity-6 {
  background: rgba(80, 161, 255, 0.6);
}

.bg-secondary-opacity-6 {
  background: rgba(108, 117, 125, 0.6);
}

.bg-success-opacity-6 {
  background: rgba(25, 135, 84, 0.6);
}

.bg-danger-opacity-6 {
  background: rgba(220, 53, 69, 0.6);
}

.bg-info-opacity-6 {
  background: rgba(13, 202, 240, 0.6);
}

.bg-warning-opacity-6 {
  background: rgba(255, 193, 7, 0.6);
}

.bg-white-opacity-6 {
  background: rgba(255, 255, 255, 0.6);
}

.bg-dark-opacity-6 {
  background: rgba(33, 37, 41, 0.6);
}

.bg-primary-opacity-7 {
  background: rgba(80, 161, 255, 0.7);
}

.bg-secondary-opacity-7 {
  background: rgba(108, 117, 125, 0.7);
}

.bg-success-opacity-7 {
  background: rgba(25, 135, 84, 0.7);
}

.bg-danger-opacity-7 {
  background: rgba(220, 53, 69, 0.7);
}

.bg-info-opacity-7 {
  background: rgba(13, 202, 240, 0.7);
}

.bg-warning-opacity-7 {
  background: rgba(255, 193, 7, 0.7);
}

.bg-white-opacity-7 {
  background: rgba(255, 255, 255, 0.7);
}

.bg-dark-opacity-7 {
  background: rgba(33, 37, 41, 0.7);
}

.bg-primary-opacity-8 {
  background: rgba(80, 161, 255, 0.8);
}

.bg-secondary-opacity-8 {
  background: rgba(108, 117, 125, 0.8);
}

.bg-success-opacity-8 {
  background: rgba(25, 135, 84, 0.8);
}

.bg-danger-opacity-8 {
  background: rgba(220, 53, 69, 0.8);
}

.bg-info-opacity-8 {
  background: rgba(13, 202, 240, 0.8);
}

.bg-warning-opacity-8 {
  background: rgba(255, 193, 7, 0.8);
}

.bg-white-opacity-8 {
  background: rgba(255, 255, 255, 0.8);
}

.bg-dark-opacity-8 {
  background: rgba(33, 37, 41, 0.8);
}

.bg-primary-opacity-9 {
  background: rgba(80, 161, 255, 0.9);
}

.bg-secondary-opacity-9 {
  background: rgba(108, 117, 125, 0.9);
}

.bg-success-opacity-9 {
  background: rgba(25, 135, 84, 0.9);
}

.bg-danger-opacity-9 {
  background: rgba(220, 53, 69, 0.9);
}

.bg-info-opacity-9 {
  background: rgba(13, 202, 240, 0.9);
}

.bg-warning-opacity-9 {
  background: rgba(255, 193, 7, 0.9);
}

.bg-white-opacity-9 {
  background: rgba(255, 255, 255, 0.9);
}

.bg-dark-opacity-9 {
  background: rgba(33, 37, 41, 0.9);
}

.text-opacity-1 {
  opacity: 0.1;
}

.hover-text-opacity-1:hover {
  opacity: 0.1;
}

.text-opacity-2 {
  opacity: 0.2;
}

.hover-text-opacity-2:hover {
  opacity: 0.2;
}

.text-opacity-3 {
  opacity: 0.3;
}

.hover-text-opacity-3:hover {
  opacity: 0.3;
}

.text-opacity-4 {
  opacity: 0.4;
}

.hover-text-opacity-4:hover {
  opacity: 0.4;
}

.text-opacity-5 {
  opacity: 0.5;
}

.hover-text-opacity-5:hover {
  opacity: 0.5;
}

.text-opacity-6 {
  opacity: 0.6;
}

.hover-text-opacity-6:hover {
  opacity: 0.6;
}

.text-opacity-7 {
  opacity: 0.7;
}

.hover-text-opacity-7:hover {
  opacity: 0.7;
}

.text-opacity-8 {
  opacity: 0.8;
}

.hover-text-opacity-8:hover {
  opacity: 0.8;
}

.text-opacity-9 {
  opacity: 0.9;
}

.hover-text-opacity-9:hover {
  opacity: 0.9;
}

.text-opacity-10 {
  opacity: 1;
}

.hover-text-opacity-10:hover {
  opacity: 1;
}

.text-break-line-1 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  padding: 1px 0px;
  text-align: left;
}

.text-break-line-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  padding: 1px 0px;
  text-align: left;
}

.text-break-line-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding: 1px 0px;
  text-align: left;
}

.text-break-line-4 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  padding: 1px 0px;
  text-align: left;
}

.font-size-12px {
  font-size: 12px !important;
}

.font-size-13px {
  font-size: 13px !important;
}

.font-size-14px {
  font-size: 14px !important;
}

.font-size-15px {
  font-size: 15px !important;
}

.font-size-16px {
  font-size: 16px !important;
}

.font-size-17px {
  font-size: 17px !important;
}

.font-size-18px {
  font-size: 18px !important;
}

.font-size-19px {
  font-size: 19px !important;
}

.font-size-20px {
  font-size: 20px !important;
}

.font-size-21px {
  font-size: 21px !important;
}

.font-size-22px {
  font-size: 22px !important;
}

.font-size-23px {
  font-size: 23px !important;
}

.font-size-24px {
  font-size: 24px !important;
}

.font-size-25px {
  font-size: 25px !important;
}

.font-size-26px {
  font-size: 26px !important;
}

.font-size-27px {
  font-size: 27px !important;
}

.font-size-28px {
  font-size: 28px !important;
}

.font-size-29px {
  font-size: 29px !important;
}

.font-size-30px {
  font-size: 30px !important;
}

.font-size-31px {
  font-size: 31px !important;
}

.font-size-32px {
  font-size: 32px !important;
}

.font-size-33px {
  font-size: 33px !important;
}

.font-size-34px {
  font-size: 34px !important;
}

.font-size-35px {
  font-size: 35px !important;
}

.font-size-36px {
  font-size: 36px !important;
}

.font-size-37px {
  font-size: 37px !important;
}

.font-size-38px {
  font-size: 38px !important;
}

.font-size-39px {
  font-size: 39px !important;
}

.font-size-40px {
  font-size: 40px !important;
}

.font-size-41px {
  font-size: 41px !important;
}

.font-size-42px {
  font-size: 42px !important;
}

.font-size-43px {
  font-size: 43px !important;
}

.font-size-44px {
  font-size: 44px !important;
}

.font-size-45px {
  font-size: 45px !important;
}

.font-size-46px {
  font-size: 46px !important;
}

.font-size-47px {
  font-size: 47px !important;
}

.font-size-48px {
  font-size: 48px !important;
}

.font-size-49px {
  font-size: 49px !important;
}

.font-size-50px {
  font-size: 50px !important;
}

.font-size-51px {
  font-size: 51px !important;
}

.font-size-52px {
  font-size: 52px !important;
}

.font-size-53px {
  font-size: 53px !important;
}

.font-size-54px {
  font-size: 54px !important;
}

.font-size-55px {
  font-size: 55px !important;
}

.font-size-56px {
  font-size: 56px !important;
}

.font-size-57px {
  font-size: 57px !important;
}

.font-size-58px {
  font-size: 58px !important;
}

.font-size-59px {
  font-size: 59px !important;
}

.font-size-60px {
  font-size: 60px !important;
}

.font-size-61px {
  font-size: 61px !important;
}

.font-size-62px {
  font-size: 62px !important;
}

.font-size-63px {
  font-size: 63px !important;
}

.font-size-64px {
  font-size: 64px !important;
}

.font-weight-100 {
  font-weight: 100 !important;
}

.font-weight-200 {
  font-weight: 200 !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

/* Background */
.background-image-holder {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: static;
}
.background-image-holder > div {
  z-index: 3;
  position: relative;
}

.background-video-holder {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.background-video-holder > div {
  z-index: 3;
}
.background-video-holder .video {
  padding: 56.34% 0 0 0;
  position: relative;
  height: 100%;
  pointer-events: none;
}
.background-video-holder .placeholder {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

[data-bg-contain] .background-image-holder {
  background-size: contain;
}

[data-parallax] .background-image-holder {
  background-attachment: fixed;
}

@media screen and (max-width: 767px) {
  [data-parallax] .background-image-holder {
    background-attachment: scroll;
  }
}
[data-background-position="center top"] .background-image-holder {
  background-position: center top;
}

[data-background-position="center bottom"] .background-image-holder {
  background-position: center bottom;
}

[background-position="center center"] .background-image-holder {
  background-position: center center;
}

[background-position="right center"] .background-image-holder {
  background-position: right center;
}

[background-position="left center"] .background-image-holder {
  background-position: left center;
}

[data-overlay] {
  position: relative;
}
[data-overlay] .background-image-holder:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #6c757d;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
[data-overlay] .background-image-holder.rounded-xl:after {
  border-radius: 10px;
}
[data-overlay] .background-video-holder:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #6c757d;
  opacity: 0.5;
  z-index: 9;
  pointer-events: none;
}

[data-overlay-black] .background-image-holder:after,
[data-overlay-black] .background-video-holder:after {
  background-color: #000;
}

[data-overlay-primary] .background-image-holder:after,
[data-overlay-primary] .background-video-holder:after {
  background-color: #50a1ff;
}

[data-overlay="1"] .background-image-holder:after,
[data-overlay="1"] .background-video-holder:after {
  opacity: 0.1;
}

[data-overlay="2"] .background-image-holder:after,
[data-overlay="2"] .background-video-holder:after {
  opacity: 0.2;
}

[data-overlay="3"] .background-image-holder:after,
[data-overlay="3"] .background-video-holder:after {
  opacity: 0.3;
}

[data-overlay="4"] .background-image-holder:after,
[data-overlay="4"] .background-video-holder:after {
  opacity: 0.4;
}

[data-overlay="5"] .background-image-holder:after,
[data-overlay="5"] .background-video-holder:after {
  opacity: 0.5;
}

[data-overlay="6"] .background-image-holder:after,
[data-overlay="6"] .background-video-holder:after {
  opacity: 0.6;
}

[data-overlay="7"] .background-image-holder:after,
[data-overlay="7"] .background-video-holder:after {
  opacity: 0.7;
}

[data-overlay="8"] .background-image-holder:after,
[data-overlay="8"] .background-video-holder:after {
  opacity: 0.8;
}

[data-overlay="9"] .background-image-holder:after,
[data-overlay="9"] .background-video-holder:after {
  opacity: 0.9;
}

[data-overlay="10"] .background-image-holder:after,
[data-overlay="10"] .background-video-holder:after {
  opacity: 1;
}

[data-overlay-half-gradient] .background-image-holder:after,
[data-overlay-half-gradient] .background-video-holder:after {
  width: 50vw;
  background: linear-gradient(to right, #fff 0%, rgba(0, 0, 0, 0) 100%);
  mix-blend-mode: multiply;
}
[data-overlay-half-gradient][data-overlay-black] .background-image-holder:after,
[data-overlay-half-gradient][data-overlay-black] .background-video-holder:after {
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0) 100%);
}
[data-overlay-half-gradient][data-overlay-primary] .background-image-holder:after,
[data-overlay-half-gradient][data-overlay-primary] .background-video-holder:after {
  background: linear-gradient(to right, #50a1ff 0%, rgba(0, 0, 0, 0) 100%);
}

.shadow-0, .hover-shadow-0:hover {
  box-shadow: none;
}

.shadow-1, .hover-shadow-1:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

.shadow-2, .hover-shadow-2:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.shadow-3, .hover-shadow-3:hover {
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.shadow-4, .hover-shadow-4:hover {
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
}

.shadow-5, .hover-shadow-5:hover {
  box-shadow: 0 0 26px rgba(0, 0, 0, 0.1);
}

.shadow-6, .hover-shadow-6:hover {
  box-shadow: 0 0 36px rgba(0, 0, 0, 0.1);
}

.shadow-7, .hover-shadow-7:hover {
  box-shadow: 0 0 48px rgba(0, 0, 0, 0.1);
}

.shadow-8, .hover-shadow-8:hover {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
}

.shadow-9, .hover-shadow-9:hover {
  box-shadow: 0 0 74px rgba(0, 0, 0, 0.1);
}

/* Square */
.square:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.square-75:after {
  content: "";
  display: block;
  padding-bottom: 75%;
}

.square-50:after {
  content: "";
  display: block;
  padding-bottom: 50%;
}

/* Image as background */
.img-as-background {
  position: relative;
  overflow: hidden;
}
.img-as-background img {
  object-fit: cover;
  position: absolute;
  left: -1px;
  right: 0;
  z-index: 0;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  min-width: calc(100% + 2px);
  min-height: 100%;
  max-width: 105%;
}

/* Borders */
.border-width-1 {
  border-width: 1px !important;
}

.border-width-2 {
  border-width: 2px !important;
}

.border-width-3 {
  border-width: 3px !important;
}

.border-width-4 {
  border-width: 4px !important;
}

.border-left-1 {
  border-left-width: 1px !important;
}

.border-left-2 {
  border-left-width: 2px !important;
}

.border-left-3 {
  border-left-width: 3px !important;
}

.border-left-4 {
  border-left-width: 4px !important;
}

.border-left-5 {
  border-left-width: 5px !important;
}

/* Reset positions of elements */
.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

/* HR line */
hr {
  border-color: rgba(33, 37, 41, 0.1);
}

.element-hr {
  display: block;
  content: "";
  min-width: 65px;
  width: 10%;
  height: 4px;
  background-color: var(--primary);
  margin-top: 15px;
  margin-bottom: 15px;
}

.element-hr-underlined {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  width: 100%;
  display: block;
  clear: both;
}
.element-hr-underlined:before {
  display: block;
  content: "";
  width: 65px;
  height: 4px;
  background-color: var(--primary);
  position: absolute;
}
.element-hr-underlined:after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(33, 37, 41, 0.1);
}

/* Lead */
.container-fluid-right-col-in-container {
  padding-right: calc((100vw - 1140px) / 2);
}

.text-decoration-none,
.text-decoration-no {
  text-decoration: none !important;
  outline: unset !important;
}

.btn-rounded {
  border-radius: 30px;
}

.rounded-xl {
  border-radius: 10px;
}

.hover-show-holder .hover-show {
  visibility: hidden;
}
.hover-show-holder:hover .hover-show {
  visibility: visible;
}
.hover-show-holder.hover-show-effect .hover-show {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 200ms, opacity 200ms;
}
.hover-show-holder.hover-show-effect:hover .hover-show {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 200ms;
}

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