/* CSS Document */
body {
  font-family: var(--font-primary);
  font-weight: 300;
  color: #333;
}

hr {
  border: none;
  border-bottom: 1px solid var(--mediumgrey);
}

hr.grey {
  border: none;
  border-bottom: 1px solid #D8D8D8;
}

header {
  background-color: rgb(var(--brand-primary));
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 5px;
}

/***************************************************************************************************
*********************************FONTS STYLES & SIZES **********************************************
***************************************************************************************************/
.condensed {
  font-family: var(--font-condensed);
}

.condensed-sm {
  font-family: var(--font-primary);
}

.alert {
  background-color: rgba(var(--brand-primary), 0.3);
  border: 2px solid rgb(var(--brand-primary));
  padding: 10px;
  border-radius: 2px;
}

h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
}

h4 {
  font-family: var(--font-paragraph);
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-family: var(--font-paragraph);
  font-size: 1.2rem;
  font-weight: 500;
}

h6 {
  font-family: var(--font-paragraph);
  font-size: 1rem;
  font-weight: 500;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

hr {
  border: none;
  border-bottom: 1px solid #606060;
  margin: 15px 0;
  padding: 0;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.nodesktop {
  display: none;
}

.nomobile {
  display: block;
}

a, .btn {
  text-decoration: none;
  border: 0;
}

a:hover {
  text-decoration: underline;
}

button:hover, .btn:hover {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2) 0 0);
  transition-duration: 1s;
}

button.close {
  color: #fff;
}

.close {
  float: right;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #353535;
  filter: alpha(opacity=100);
  opacity: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 5px;
}

section {
  background-color: rgb(var(--light));
  color: rgb(var(--dark));
}

.btn-redeem {
  border: 0;
  background-color: #000;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 500;
}

.btn-redeem:hover {
  background-color: #db011c;
  color: #fff;
}

form {
  font-family: var(--font-paragraph);
}

p { /*color:#fff;*/
  line-height: 1.5;
  margin: 5px 4px;
}

form p {
  margin: 20px 0;
}

ol li {
  color: #87888F;
  line-height: 1.8;
  margin-bottom: 10px;
}

ol {
  list-style-position: inside;
}

li ol {
  margin-left: 10px;
}/*# sourceMappingURL=style.css.map */