html, body { height: 100%; }

body {
  margin: 0;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  background-color: #313131;
  color: #FFF;
  font-size: 16px;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

header{
  /* position: -webkit-sticky;
  position: sticky;
  top: 0; */
  text-align: center;
  width: 100%;
  font-size: 1.2rem;
  padding: 2rem 0 1rem;
}

h3{
  margin-top: 0;
}

.content{
  font-family: Roboto, "Helvetica Neue", sans-serif;
  color: #B1B1B1;
  white-space: pre-wrap;
  word-break: break-word;
  position: relative;
  bottom: 8rem;
  margin-top: 8.5rem;
}

.gap{
  height: 1rem;
}

.horizontal-line{
  height: 0.9rem;
  border-top: 1px solid;
}

footer{
  position: fixed;
  bottom: 0;
  height: 7.3rem;
  font-size: 1.1rem;
  padding: 1.5rem 0 0;
  width: 93%;
  /* border-top: 1px solid; */
  background-color: #313131;
}

.accept-label{
  text-indent: 3rem;
  display: inline-block;
}

.submit-wrapper{
  margin-top: 1.5rem;
}
.submit-btn{
  font-size: 1.2rem;
  background-color: #cc0000;
  color: #FFFFFF;
  border: 0;
  padding: 0.6rem 1rem;
  border-radius: 5px;
}

.disable{
  pointer-events: none;
  opacity: 0.6;
}

.text-center{
  text-align: center;
}

.text-underline{
  text-decoration: underline;
}

.checkbox{
  display:none;
}
.checkbox + label{
  background:url(./checkbox_empty.svg) no-repeat;
  background-size: 1.4rem;
  text-indent: 2rem;
}
.checkbox:checked + label{
  background:url(./checkbox.svg) no-repeat;
  background-size: 1.4rem;
  text-indent: 2rem;
}

.table-wrapper{
  /* max-width: 100%; */
  overflow: auto;
  margin-left: -13px;
}

.table{
  font-size: 1rem;
  width: max-content;
}

.table, .table th, .table td {
  border: 2px solid black;
  padding: 3px;
  border-collapse: collapse;
  font-size: 0.6rem;
}

.table thead{
  background-color: #444;
}

ul{
  padding-inline-start: 1.4em;
}

::-webkit-scrollbar {
    width: 5px !important;
    height: 5px !important;
 }

 /* Track */
::-webkit-scrollbar-track {
   box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important;
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3) !important;
   border-radius: 5px !important;
   -webkit-border-radius: 5px !important;
 }

 /* Handle */
 ::-webkit-scrollbar-thumb {
   border-radius: 5px !important;
   -webkit-border-radius: 5px !important;
   background: #cc0000 !important; 
   box-shadow: inset 0 0 6px rgba(0,0,0,0.5) !important; 
   -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5) !important; 
 }
 ::-webkit-scrollbar-thumb:window-inactive {
   background: #cc0000 !important; 
 }

.email {
  color: yellow;
} 