html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

.

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.task_doc_img_def {

  width: 100%;
  cursor: pointer;
}

.task_doc_img {
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  cursor: pointer;
}

.clickable-item {
  cursor: pointer;
}


.sp-image-card {

  width: 100% !important;
  max-height: 250px !important;
  object-fit: contain;
}

.ticket-row-pending {

  border: 2px solid black
}

.ticket-row-active {

  border: 2px solid green
}

.project-area {

  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 15px;

}

.list-thumbnail-letters {

  text-transform: uppercase;

}

.fixed-background-admin {
  background: url(../img/login/bgg.jpg) no-repeat center center fixed;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}


.auth-card .image-side-2 {
  background: url(../img/login/bgg.jpg) no-repeat center top !important;
  background-size: cover !important;
}

.auth-card-sp {

  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
}

.scroll-content-extended {

  width: 100% !important;
  
}

.chat-card {

  max-width: 60%;

}