body {
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  color: #4a4a4a;
  --primary: #ff4477;
  --gray-dark: #4a4a4a;
  --gray: #595959;
  --shadow-half: rgba(0, 0, 0, .1);
}

* {
  box-sizing: border-box;
}

img {
  width: 100%;
}

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

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

a:active, a:hover {
  outline: 0;
}

/* Buttons */

.btn, .panel {
  display: block;
  position: relative;
  margin: auto;
  padding: 1em;
  transition: box-shadow ease 100ms;
  border: 0;
  border-radius: 0.3em;
  background: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 20%), 0 -1px 1px rgb(0 0 0 / 10%);
}

.btn {
  display: inline-block;
  line-height: 1.4em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.btn-small {
  font-size: 1.0em;
  min-width: 2.9em;
  padding: 0.75em 0.6em;
}

.btn-link {
  background: transparent;
  box-shadow: none;
}

.btn-link:active {
  background: transparent;
}

.btn-link:hover {
  box-shadow: none;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-wrap {
  white-space: normal;
  line-height: 1.6em;
}

/* Text */

.text-gray { 
  color: #595959 !important;
}

.text-primary {
  font-weight: 500;
  color: #ff4477;
}

.text-small {
  font-size: 0.9em !important;
}

.bg-gradient {
  color: #fff;
  background: linear-gradient(to bottom right, #FF2F97, #FF9159) !important;
  font-weight: 500;
}

.bg-offwhite {
  background-color: #FAFAFA;
}

/* Container */

.container {
  position: relative;
  margin: 0 auto;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0 30px;
  }
}

@media (min-width: 1500px) {
  .container {
    width: 1440px;
  }
}

/* Flexbox */

.flexbox {
  display: flex;
}

.flexbox.vertically-center {
  align-items: center;
}

.flexbox.space-between {
  justify-content: space-between;
}

/* Padding */

.pad-right {
  padding-right: 0.5em !important;
}

.no-padding {
  padding: 0;
}

/* Show/hide classes */

.when-xs, .when-sm, .when-md, .when-lg {
  display: none;
}

@media (max-width: 767px) {
  
  .when-xs {
    display: block;
  }

  .when-xs.inline {
    display: inline;
  }

  .when-xs.inline-block {
    display: inline-block;
  }

}

@media (min-width: 768px) and (max-width: 991px) {
  
  .when-sm {
    display: block;
  }

  .when-sm.inline {
    display: inline;
  }

  .when-sm.inline-block {
    display: inline-block;
  }

}

@media (min-width: 992px) and (max-width: 1199px) {
  
  .when-md {
    display: block;
  }

  .when-md.inline {
    display: inline;
  }

  .when-md.inline-block {
    display: inline-block;
  }

}

@media (min-width: 1200px) {
  
  .when-lg {
    display: block;
  }

  .when-lg.inline {
    display: inline;
  }

  .when-lg.inline-block {
    display: inline-block;
  }

}

/* Lists Style */

.list-unstyled {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* High Contrast */

.high-contrast-selected {
  visibility: hidden;
}

.high-contrast .text-primary {
  color: #333 !important;
}

.high-contrast .bg-gradient {
  background: #333 !important;
}

.high-contrast .high-contrast-selected {
  visibility: visible;
}
