html,body {
  margin: 0;
  padding: 0;
}

body {
    display: inline;
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: 1px;
    font-size: 11px;
    line-height: 16px;
    color: #fff;
    justify-content:center;
    height: 100%;
    width: 100%;
    cursor: auto;
}


/* unvisited link */
a:link {
    color: #fff;
    text-decoration: none;
}


/* visited link */
a:visited {
    color: #fff;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: transparent;text-shadow: 0 0 3px #fff;
}


/* If the screen size is 600px wide or less, hide the element */
@media only screen and (max-width: 600px) {
  
    
    .content-text {
    height:auto;
    width: 100% !important;
}


.column-text {
    column-count: 2 !important;
    column-gap: 30px !important;
    width: 100% !important;
}
    
    
}







/* overarching styles */

#wrapper {
    position: relative; 
    height: auto;
    width: 100%;
    height: 100%;
}


h1 {
    font-size: 11px;     /* Here */
    font-weight: normal;
    line-height: 16px;
}


mark.grey {
    color:#707070;
    background-color: transparent;
}


p { margin:0 }




/* top section */

#intro {
    position: relative; 
    width: 100%;
    background-color: #fff;
    color: #000;
    height:6vh;
    display:block;
    overflow: visible;
}





/* collapsible area */

.collapsible {
    background-color: #fff;
    color: #000;
    cursor: url(assets/cursor/questionmark.svg), auto;
    padding: 15px;
    width: 100%;
    border: 0px solid #000;
    text-align: left;
    outline: none;
    font-size: 11px;
    font-family: inherit;
    letter-spacing: inherit;
    height: 6vh;
}


.active, .collapsible:hover {
  background-color: none;
}

.collapsible:after {
  content: 'Information';
  color: #000;
  float: right;
  margin-left: 5px;
    
}

.active:after {
  content: "Close";
}

.content {
  padding: 0 15px 0 15px;
  max-height: 0;
  overflow:auto;
  transition: max-height 0.4s ease-out;
  background-color: transparent;
    color: #000;
    z-index: 99999;
    font-size: 26px;
    line-height: 32px;
}

.content-text {
    height:auto;
    width: 80%;
}


.column-text {
    column-count: 3;
    column-gap: 40px;
    font-size: 11px;
    line-height: 16px;
    margin-top:30px;
    margin-bottom: 50px;
    padding-top: 15px;
    border-top: 1px solid #000;
    width: 80%;
}







/* back to top function */

#back2Top {
    width: 46px;
    line-height: 46px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    position: fixed;
    bottom: 0px;
    right: 0;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-size: 30px;
}

#back2Top:hover {
    background-color: #000;
    color: #fff;
}








/* table styles */

.table-wrapper {
    overflow: scroll;
    height:88vh;
    width: 100%;
}

table {
    position: relative;
    border: 1px solid #FFF;
    border-collapse: collapse;  
    height: 100%;
    width: 100%;
    table-layout: fixed;
}

td, th {
    white-space: normal;
    width: 120px;
    border: 1px solid #FFF;
    padding: 15px;
    text-align: left;
    background-color: #000;
}

th {
    background-color: #fff;
    color: #000;
    position: sticky !important;
    position: -webkit-sticky !important;
    top: 0;
    font-weight: normal;
    box-shadow: 1px 0px 0px 0;
      cursor:url(/assets/cursor/togglecursor.svg), auto;
}

  
  &:first-of-type {
    left: 0;
    z-index: 999;
  }


tbody tr td:first-of-type {
    background-color:#383838;
    min-width: 200px;
    position: sticky !important;
    position: -webkit-sticky !important;
    left: -1px;
    text-align: left;
    box-shadow: 0px 0px 0px 0px black, 1px 0px 0px 0px #FFF;}

th:first-child {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  z-index: 998;
}
thead th:first-child,
tfoot th:first-child {
  z-index: 1000;
}




/* cursor hover thing  */
table tr:hover td  {
    background-color: #FF00FF;}





/* tooltip thing  */
.coupontooltip {
background: #fff;
left: 0;
top:0px;
padding:15px;
position: absolute;
z-index: 1000;
width:auto;
height:auto;
box-shadow: 0px 0px 0px 1px;
}

.couponcode{
cursor: url(assets/cursor/questionmark.svg), auto;
}




