html body .auth-page .auth-side-wrapper {
  width: 100%;
  height: 100%;
  background-image: url("/img/login-side.jpg") !important;
  background-size: cover;
  background-position: center center;
}
html body .loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 95vh;
}
html body .loader-wrapper .loader {
  width: 35px;
  height: 35px;
  border: 5px solid #344767;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html body .btn-transparent {
  border: none;
  background-color: transparent;
  padding: 0 !important;
}

html body .search-result-gls{
  padding: 10px 20px;
  padding-bottom: 0px;
  border: 1px solid #e9ecef;
  margin-top: 3px;
}
html body .search-result-gls ul{
  padding-left: 0;
  list-style: none;
}
html body .search-result-gls ul li{
  padding-left: 0;
  list-style: none;
  color: var(--bs-gray-500);
  padding: 10px;
  border-radius: 3px;
}
html body .search-result-gls ul li:hover{
  background-color: var(--bs-gray-500);
  color: white;
  cursor: pointer;
}
html body .logo-preview{
  border: 1px dashed var(--bs-gray-400);
  height: 250px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
html body .logo-preview img{
  width: 200px;
  height: 200px;
  object-fit: cover;
}
html body .logo-preview span {
  font-size: 12px;
  color: var(--bs-gray-400);
}
html body .logo-preview i{
  font-size: 45px;
}

html body .documents-preview{
  border: 1px dashed var(--bs-gray-400);
  min-height: 250px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow-y: scroll;
}
html body .documents-preview img{
  width: 200px;
  height: 200px;
  object-fit: cover;
}
html body .documents-preview span {
  font-size: 12px;
  color: var(--bs-gray-400);
}
html body .documents-preview .font45{
  font-size: 45px;
}

html body .documents-preview .document{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
html body .documents-preview .document > i{
  font-size: 50px;
  width: 10%;
}
html body .documents-preview .document > div{
  width: 70%;
}
html body .documents-preview .document > a{
  height: 35px;
  width: 20%;
}

html body .profileImage-container{
  margin-right: 25px;
}
html body .profileImage-container,
html body .profileImage-container label i,
html body .profileImage-container label img{
  cursor: pointer;
}
html body .profileImage-container label{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
html body .profileImage-container label i{
  font-size: 25px !important;
  margin-left: -60px;
  opacity: 0;
  transition: 0.5s;
}
html body .profileImage-container label:hover i{
  font-size: 25px !important;
  margin-left: -60px;
  opacity: 1;
}
html body .profileImage-container label:hover img{
  opacity: 0.5;
}
html body .notfications-list li{
  cursor: pointer;
}
html body .notfications-list li.muted{
  opacity: 0.35;
  transition: 0.7s;
}
html body .notfications-list li.muted:hover{
  opacity: 1;
}
html body .avatar{
  background-color: #344767;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 25px;
}
html body .avatar i{
  color: white;
}
html body .input-errors-message{
  font-size: 11px;
  margin-top: 10px;
}
html body .cursor-pointer{
  cursor: pointer !important;
}