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


@media (min-width: 992px) {
    footer {
        /*margin-left: 25px*/
    }
}

footer {
    background: #fff;
    /*padding: 10px 20px;
    display: block;
    margin-top: auto;
    position: fixed;
    width: 100%;
    bottom: 0;*/
}

/*body {
    padding-bottom: 0px !important;
}*/

.pull-left {
    float: left
}
/*
.pull-right {
    float: right !important;
    margin-right: 5%;
}*/
b, strong {
    font-weight: 700;
}
.clearfix:after, form:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden
}

.main-hidden footer {
    margin-left: 0px;
}

.Manage {
    position: absolute;
    right: 10px;
    display: block;
    bottom: 0px;
}

.headerusername {
    color: #000;
    /*text-shadow:0px 0px 5px #000;*/
    font-size: inherit;
    opacity: 1;
}

h1 {
    font-size: 1.35rem !important;
    padding-top: 10px !important;
    padding-bottom: 2px !important;
}

.h1,
h1{
    line-height: 0.5 !important;
}

*,
*::before,
*::after {
    user-select: none;
}

::-webkit-scrollbar {
    position: relative;
    width: 8px;
    z-index: 1000;
    background: #404040;
    cursor: default;
    top: 0px;
    height: 8px;
    right: 0px;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    background-color: #808080 !important;
    background-clip: padding-box;
    border-radius: 15px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: #00000080;
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}

h1#H_Title {
    text-transform: capitalize;
}

.custom-span {
    display: inline-block;
    width: 31px;
    height: 19px;
    font-size: 0.8rem;
    text-align: center;
    line-height: 17px;
}

.accordion-button {
    height: 40px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #808080;
    border: none;
    color: white;
    font-size: 0.8rem;
    display: block;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}