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);
  }
}


/* Customize */
.navbar .lang-selector:hover {
  color: #145388;
  border-color: #145388;
}
.navbar .lang-selector {
  color: #878787;
}
.navbar .empty-notification {
  height: 70px !important;
}

.mouse-over-content {
  display: none;
  position: absolute;
}
.mouse-over-area:hover .mouse-over-content {
  position: absolute;
  display: inline-block;
}
.mouse-over-content .icon-button {
  font-size: 12px;
  height: 23px;
  line-height: 13px;
  background-color: #fff !important;
  border: 1px solid #ececec;
}

.dropzone .dz-preview.dz-file-preview .copy-clipboard {
  position: absolute;
  right: 3px;
  top: 25px;
  color: #145388!important;
}

.custom-tagsinput .bootstrap-tagsinput {
  height: auto;
}
.custom-tagsinput .bootstrap-tagsinput .tag {
  margin: 3px 0;
}

.card-img-top {
  max-height: 175px;
}

.card-menu {
  box-shadow: unset;
  border: solid 1px #d0d0d0;
}

.no-border {
  border: 0;
  box-shadow: none;
}

.outline-none {
  outline: none;
}

#smartWizardValidation .card-body>div {
  height: unset;
}

.force-select {  
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

@media (max-width: 1050px) {
  .navbar .user .name {
    display: none;
  }
}

.select2-container--bootstrap .select2-selection.category-select {
  height: auto !important;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  margin: 0 0 8px 8px;
}

.select-from-library .media-thumb-container.card {
  height: 135px;
  cursor: pointer;
  color: var(--theme-color-6);
}

.media-thumb-container .align-self-stretch i {
  font-size: 45px;
  margin: 0 auto;
  padding-top: 20px;
  color: #145388;
}

.media-thumb-container .card-body {
  bottom: 0;
}

.select-from-library img.list-media-thumbnail {
  border-top-left-radius: .75em;
  border-top-right-radius: .75em;
}

.app-menu {
  z-index: 2;
}