html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
#global-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,.7);
    z-index: 99999;
}

    #global-loader img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 120px;
        height: 120px;
        transform: translate(-50%, -50%);
    }

    #global-loader::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 38px;
        height: 38px;
        margin-left: -19px;
        margin-top: -19px;
        border: 5px solid #0d6efd;
        border-top-color: transparent;
        border-radius: 50%;
        animation: spin .8s linear infinite;
    }


@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.table-responsive table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto;
}

#tblwrdrptexl td,
#tblwrdrptexl th {
    vertical-align: top;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}