﻿@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.brand-logo img {
  max-height: 2.25rem;
}

.--loader-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
}
.--loader-container.loader_container_fixed {
  position: fixed !important;
}
.--loader-container .--loader {
  border: 0.8rem solid #E6E6E6;
  border-radius: 50%;
  border-top: 0.8rem solid #FDBD02;
  width: 6.5rem;
  height: 6.5rem;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

.active-projects tbody tr td.dataTables_empty {
  text-align: center !important;
}

.tbl-avatar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.offcanvas {
  background-color: #F5F5F5;
}
.offcanvas.offcanvas-end {
  min-width: 35% !important;
}
.offcanvas.--offcanvas-lg {
  min-width: 65% !important;
}

.--font-xxs {
  font-size: 65%;
}

.--tk-message {
  padding: 10px;
  background-color: #f0f8ff;
  border: 1px solid #f0f8ff;
  border-radius: 6px;
}
.--tk-message svg {
  width: 24px;
  height: 24px;
}
.--tk-message.--dx {
  padding-right: 0;
  border-top-right-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: #ddebf7 5px 3px;
}
.--tk-message.--sx {
  padding-left: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: #ddebf7 -5px 3px;
}
.--tk-message[data-confidential=true] {
  background-color: #eee;
}
.--tk-message[data-confidential=true].--dx {
  box-shadow: #f9e8e8 5px 3px;
}
.--tk-message[data-confidential=true].--sx {
  box-shadow: #f9e8e8 -5px 3px;
}

.avatar.avatar-sm {
  height: 1.5rem;
  width: 1.5rem;
}
.avatar.avatar-xs {
  height: 1rem;
  width: 1rem;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.d-hide {
  opacity: 0;
}

.--validity-check.--invalid {
  background-color: rgba(255, 0, 0, 0.2392156863) !important;
}

.btn-icon-sm.--min-w-40 {
  min-width: 40px !important;
}
