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;
}

.alertbx, .loader, .loaderbox {
    position: fixed;
}

.bigloader1 {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(119,165,175,.27);
    z-index: 2
}

.loader {
    top: 46%;
    left: 47%;
    margin: auto;
    font-size: 10px;
    text-indent: -9999em;
    border-top: 7px solid #88D7E8;
    border-right: 7px solid #88D7E8;
    border-bottom: 7px solid #88D7E8;
    border-left: 7px solid #00ACDC;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 40px;
        height: 40px
    }

.alertbx {
    top: 15px;
    z-index: 99999;
    text-align: center;
    left: 20%;
    right: 20%;
}
table tbody tr td span {
    word-break: break-all !important;
}

/*.cust-app-table tbody td:nth-child(1) {
    word-break: normal !important;
    overflow-wrap: normal !important;
}
.cust-app-table tbody td {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}*/



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

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