:root {
  --main-fg-color: white;
  /* --main-bg-color: brown;
    --main-dark-accent-color: #771111;
    --main-light-accent-color: indianred; */
  --secondary-fg-color: #dfdfdf;
  --main-bg-color: black;
  --secondary-bg-color: rgb(104, 104, 104);
  --main-dark-accent-color: darkgreen;
  --main-light-accent-color: seagreen;
  --main-accent-border-color: gold;
  --main-accent-highlight-color: darkgreen;
  --info-color: cornflowerblue;
  --warning-color: orange;
  --success-color: #247800;
  --important-color: red;
}
@media print {
  #backtotop {
    display: none;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  font-size: 13pt;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0px;
  left: -25px;
  height: 67px;
  /* background-color: var(--main-dark-accent-color); */
  background-color: var(--main-fg-color);
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 3px outset var(--main-accent-border-color);
  color: var(--main-fg-color);
  z-index: 9999;
}

.hidden {
  display: none !important;
}

.logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 60%;
  justify-content: space-between;
}

#current-upcoming {
  background-color: var(--secondary-fg-color);
  padding: 15px;
  border-radius: 9px;
}


.header-items {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  position: relative;
  left: 20px;
}

.header-logo {
  position: relative;
  width: 100%;
  height: auto;
  top: 3px;
}

footer {
  background-color: white;
  color: var(--main-light-accent-color);
  padding: 10px;
  text-align: center;
  border-top: 3px inset var(--main-accent-border-color);
}

header::after {
  position: relative;
  height: 55px;
}

nav {
  display: flex;
  gap: 20px;
  font-size: 11pt;
  align-items: center;
  width: 100%;
  justify-content: space-between
}

nav a {
  /* color: var(--main-fg-color); */
  color: var(--main-light-accent-color);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid transparent;
}

nav a:hover {
  color: var(--main-dark-accent-color);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 1px solid var(--main-dark-accent-color);
}

#content {
  margin: 0px;
  padding: 0px;
  /* background-color: var(--main-bg-color); */
  background: url('https://gaugerauctions.b-cdn.net/assets/images/background.jpg');
  background-size: 50%;
  background-attachment: fixed;
  background-repeat: repeat;
  flex: 1;
}

#main-content {
  margin: 0px;
  margin-top: 15px;
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 20px;
  background-color: var(--main-fg-color);
}

.pagination {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
}

.page-item {
  margin-right: 5px;
  padding: 5px 10px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 3px;
  cursor: pointer;
  font-size: 10pt;
  text-decoration: none;
}
.go-to-page-item {
  margin-right: 5px;
  padding: 5px 10px;
  background-color: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-size: 10pt;
  text-decoration: none;
}

.page-item.active {
  background-color: darkgreen;
}

.page-item:hover {
  background-color: seagreen;
  transition: 0.5s all;
}

.section {
  margin-left: 1em;
}

.floating-box {
  border: 1px solid var(--main-dark-accent-color);
  padding: 3px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 65px;
  padding: 10px;
}

.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

/* Responsive Columns */
.col-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (max-width: 1300px) {
  .col-xl-auto {
    width: auto;
  }
  .col-xl-1 {
    width: 8.33333333%;
  }
  .col-xl-2 {
    width: 16.66666667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.33333333%;
  }
  .col-xl-5 {
    width: 41.66666667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.33333333%;
  }
  .col-xl-8 {
    width: 66.66666667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.33333333%;
  }
  .col-xl-11 {
    width: 91.66666667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .col-lg-auto {
    width: auto;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-12 {
    width: 100%;
  }
}


@media (max-width: 768px) {
  .col-md-auto {
    width: auto;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-12 {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .small-mobile-hidden {
    display: none !important;
  }

  .col-sm-auto {
    width: auto;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-12 {
    width: 100%;
  }
}


.resize-h {
  resize: horizontal;
}

.resize-v {
  resize: vertical;
}

.resize-both {
  resize: both;
}

/* Text Sizes */
.subtext {
  font-size: 14pt;
  color: var(--secondary-bg-color);
}

.small-text {
  font-size: 10pt;
}

.large-text {
  font-size: 14pt;
}

.large-mobile-small-text {
  font-size: 10pt;
}

/* Text Tools */
.no-wrap-text {
  text-wrap: nowrap;
}

/* Mobile things */
.mobile-hidden {
  display: none;
}
.small-mobile-hidden {
  display: initial;
}


.menu-items li {
  display: block;
  background-color: var(--main-fg-color);
  width: 100%;
  text-align: center;
}

.menu-items {
  display: flex;
  flex-direction: column;
  background-color: var(--main-fg-color);
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  align-items: center;
  z-index: 1;
  transform-origin: top;
  gap: 1.5em;
  font-size: 13pt;
  transition: transform 0.3s ease-in-out;
  transform: scale(1, 0);
  padding: 10px 0px 10px 0px;
}

.menu-icon {
  display: block;
  color: #000;
  font-size: 28px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked~.menu-items {
  transform: scale(1, 1);
}

/* HEADER BREAK */
@media (min-width: 1026px) {
  .menu-items {
    transition: none;
  }
}

@media (min-width: 1025px) {
  nav {
    gap: 20px !important;
    font-size: 11pt !important;
    width: 80% !important;
  }

  .menu-items li {
    display: block !important;
    width: auto !important;
    background-color: var(--main-fg-color) !important;
    padding-left: initial !important;
  }

  .menu-items {
    font-size: 11pt !important;
    transform: none !important;
    flex-direction: row !important;
    position: initial !important;
    align-items: center !important;
    width: auto;
    margin: 0px !important;
    gap: 17px !important;
    padding: 0px !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
  }

  .menu-icon {
    display: none;
  }

  header {
    height: 55px !important;
  }

  .header-logo {
    position: relative !important;
    /* width: 50% !important; */
    height: auto !important;
  }

  .header-items {
    position: initial !important;
    width: 80% !important;
    justify-content: space-between !important;

  }

}

/* DESKTOP SPECIFIC RULES */
@media (min-width: 1700px) {
  .subtext {
    font-size: 9pt !important;
  }
  #current-upcoming {
    float:right;
    max-width: 30%;
    min-width: 15%;
    margin: 10px;
  }
  .mobile-hidden {
    display: initial !important;
  }
  .small-mobile-hidden {
    display: initial !important;
  }

  .desktop-hidden {
    display: none !important;
  }

  
  body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    font-size: 13pt !important;
  }

  .large-mobile-small-text {
    font-size: 14pt !important;
  }

  #main-content {
    margin-left: 10% !important;
    margin-right: 10% !important;
    padding: 1% 5% !important;
    border-radius: 40px !important;
    box-shadow: 2px 2px 4px var(--main-bg-color) !important;
  }

  /* Text Sizes */
  .small-text {
    font-size: 8pt;
  }

  .large-text {
    font-size: 14pt;
  }


}

.print-shown {
	display: none !important;
}

@media print {
  .print-shown {
    display: initial !important;
  }
  .print-hidden {
    display: none !important;
  }
}