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;
}

button.btn.btn-primary {
    padding: 5px;
    background-color: #000;
    border: #000;
}

    button.btn.btn-primary:hover {
        background-color: #E6E6E6;
        border: #E6E6E6;
        color: #000;
    }

.k-grid-header,
.k-grid-content,
.k-spacer,
.k-input-icon.k-icon.k-i-search {
    display: none;
}

.k-widget {
    border: none;
}

.k-toolbar.k-grid-toolbar {
    background-color: unset;
    border: none;
    box-shadow: none;
    background-image: none;
    padding: 10px;
}

.k-searchbox.k-input {
    margin: auto;
    width: 30%;
}

.container {
    max-width: none !important;
}

.input-group.mb-3 {
    padding-top: 10px;
}

header {
    background-color: #242845;
    height: 100%;
    width: 60%;
    margin: auto;
    padding: 15px;
    min-width: 440px;
}

.construction-header {
    height: 100px;
}

.body-mssg {
    height: 100%;
    width: 100%;
    margin: auto;
    padding: 40px;
}

/*CSS for loader dots*/
.loader > span {
    width: 15px;
    height: 15px;
    display: block;
    background: lightgrey;
    border-radius: 50%;
    position: relative;
    margin: 0 5px;
}

.loader-outer {
    padding: 15px;
}

.loader-mssg {
    text-align: center;
    color: grey;
    padding: 10px;
    font-size: 15pt;
    font-weight: 500;
}

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-1 {
    animation: anim 1s linear 0s infinite;
}

.dot-2 {
    animation: anim 1s linear 0.25s infinite;
}

.dot-3 {
    animation: anim 1s linear 0.50s infinite;
}

@keyframes anim {
    0% {
        top: 0;
    }

    50% {
        top: 15px;
        background-color: #000;
    }

    100% {
        top: 0;
    }
}
/**/
