/* ----- Alignment ----- */

.margin-top-1vh, .margin-vertical-1vh, .margin-all-1vh {
  margin-top: 1vh;
}

.margin-bottom-1vh, .margin-vertical-1vh, .margin-all-1vh {
  margin-bottom: 1vh;
}

.margin-left-1vh, .margin-horizontal-1vh, .margin-all-1vh {
  margin-left: 1vh;
}

.margin-right-1vh, .margin-horizontal-1vh, .margin-all-1vh {
  margin-right: 1vh;
}

/* ----- Colors ----- */

/* - Background Colors - */
.bg-sipb-black {
  background-color: #121212;
}

.bg-sipb-white {
  background-color: #F0EDEE;
}

.bg-sipb-gold {
  background-color: #FBC403;
}

.bg-sipb-gray {
  background-color: #484848;
}

.bg-sipb-red {
  background-color: #AD343E;
}

/* - Foreground colors - */

.sipb-black {
  color: #121212;
}

.sipb-white, p, li {
  color: #F0EDEE;
}

.sipb-gold, h1, h2, h3, h4, h5, h6 {
  color: #FBC403;
}

.sipb-gray {
  color: #484848;
}

.sipb-red, .sipb-link {
  color: #AD343E;
}

.sipb-link:hover {
  color: rgb(221, 67, 80);
  text-decoration: none;
}

/** borders*/

.border-sipb-gray, .schedule-box {
  margin-top:4px;
  margin-bottom:4px;
  border-color: #484848;
  border-radius: 10px;
  border-style: solid;
  border-width:5px;
}

/* ----- Image Formatting ----- */

.sipb-icon {
  margin:1vw;
  width: 2em;
  height: 2em;
  display: inline;
  /*vertical-align: baseline;*/
}

/* ----- Text Formatting ----- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Mono', monospace;
}
p, li {
  font-family: 'Fira Code', monospace;
}

/* Button Formatting */

.sipb-button {
  color: #FBC403;
  border: 2px solid #FBC403;
}

.sipb-button:hover {
  color: #121212;
  background-color: #FBC403;
  border: 2px solid #FBC403;
}

.sipb-button:active {
  background-color: #CEA103;
}

/* Div formatting */

.schedule-box {
  padding: 4px 0px 4px 0px;
}

/* Page Structure */

ul {
  list-style-type:none;
}

/* From https://codepen.io/scottzirkel/pen/yNxNME by Scott Zirkel */
.hr-text {
  line-height: 1em;
  position: relative;
  outline: 0;
  border: 0;
  color: #121212;
  text-align: center;
  height: 1.5em;
  opacity: 1;
}
.hr-text:before {
  content: '';
  /* use the linear-gradient for the fading effect
   * use a solid background color for a solid bar */
  background: linear-gradient(to right, transparent, #FBC403, transparent);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 3px;
}
.hr-text:after {
  content: attr(data-content);
  position: relative;
  display: inline-block;
  color: #121212;
  font-size: 1.6em;
  font-family: 'Fira Code', monospace;
  margin:-0.2em;
  padding: 0 .5em;
  line-height: 1.5em;
  /* this is really the only tricky part, you need to specify the background color of the container element... */
  color: #FBC403;
  background-color: #121212;
}

/* Scrollbar */

/* body::-webkit-scrollbar { width: 0 !important }
body { overflow: -moz-scrollbars-none; }
body { -ms-overflow-style: none; }
*/
