@import url('https://fonts.googleapis.com/css?family=Martel:200,300,400,600,700,800,900');

:root {
  --blue: #50a1ff;
  --green: ;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

/* text styles */

a, h5 a {
  color: blue;
}

a:hover {
  text-decoration: underline;
}

.left a, .right p a {
  color: inherit;
  text-decoration: underline;
}

.left a:hover, .right p a:hover {
  color: black;
}

a[target="_blank"]:not(.nav-link):after {
    font-family: 'FontAwesome';
    content: "\00a0\00a0\f08e";
}

b, .b {
  font-weight: 800;
}

.underlined{
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, body, .p {
  font-family: 'Martel', Georgia, serif;
}

.p {
  font-size: 1.2rem;
}

.fancy-and {
  font-family: 'Baskerville', serif;
  font-size: 3rem;
  line-height: 1em;
  font-weight: 100;
}

nav, .btn {
  font-family: Helvetica, sans-serif;
}

.bold{
  font-weight: 700;
}

::-webkit-input-placeholder, ::-webkit-input-border { /* WebKit browsers */
  color: #323d47 !important;
  opacity: 1 !important;
}

::selection, {
  background-color: #323d47;
}

.text-white {
  color: rgba(255,255,255,1) !important;
}

ol.A {
  list-style-type: upper-alpha;
}

ol.a {
  list-style-type: lower-alpha;
}

ol.i {
  list-style-type: lower-roman;
}

li {
  padding-left: 10px;
  padding-top: 10px;
}

ol li {
  padding-bottom: 6px;
}

.intro-p {
  max-width: 500px;
}

.mw-50 {
    max-width: 50%!important;
}

.terms .section .right p, .terms .section .right ul, .terms .section .right ol, .modal-content p, .large-intro {
  font-size: 24px !important;
  line-height: 1.5em;
}

.large-intro {
  max-width: 800px;
}

.basically, h6 {
  padding-bottom: 20px !important;
  font-size: 14px !important;
  line-height: 1.4em;
}

.terms .section .left .ol {
  font-size: 14px;
  text-indent: -1.3em;
}

.text-strike {
  text-decoration: line-through;
}

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

.text-green {
  color: #28a745!important;
  font-weight: 600;
}

.text-purple {
  color: #8B008B!important;
  text-decoration: underline;
  font-weight: 600;
}

.bullet-only-primary::before {
  color: primary;
}

/* containers */

/* .scrolling-wrapper {
  -webkit-overflow-scrolling: touch!important;
} */

.scrolling-wrapper-flexbox {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: scroll;
  margin: 0 -1rem;
}

.scroll-wrapper-flexbox.card {
    flex: 0 0 auto;
}

.progress-bar {
  background: #eee;

}

.card {
  height: fit-content;
  padding: 1rem 1rem;
  margin: 1rem;
  border-radius: 5px;
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 .1rem .5rem rgba(0,0,0,.15)!important;
}

/* interactive */

.navbar, .navbar-scrolled [data-navbar="fixed"] {
  background-color: rgba(255,255,255,0.95);
  min-height: 56px;
  top: 0;
}

a.btn:hover, button.btn:hover {
  box-shadow: 0 0 .5rem var(--blue)!important;
}

.btn.status {
  cursor: default!important;
  border-radius: 50px;
}

.btn {
  font-size: .9rem;
  width: fit-content;
}

.btn-blue {
  color: white;
  background-color: var(--blue);
}

.btn-blue:hover {
  color: white;
  background-color: black;
}

.social a { /* this overrides its styles in social.scss */
    width: auto;
}

.status {
  width: fit-content;
}

.status-green {
  background-color: var(--success);
  color: white;
}

.status-red {
  background-color: var(--danger);
  color: white;
}


/* images */

.avatar {
  border-radius: inherit;
}

.headshot {
  max-width: 105px !important;
  border-radius: 100px !important;
  box-shadow: 0 0 .5rem rgba(0,0,0,.5)!important;
  border: 2px solid white;
}

/* 60/40 format */

.main-section {
  border-bottom: 1px solid #ccc;
  padding-bottom: 0!important;
}

.terms .section {
  padding: 4rem 0 2rem 0 !important;
  border-top: 1px solid #ccc;
}

.terms .section ol .subsection {
  border-bottom: 1px solid #ccc !important;
}

.border-top {
  border-top: 1px solid #ccc !important;
}

.popup {
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.popup div div .section {
  border-bottom: none !important;
  padding-bottom: 10px;
}

.left {
  width: 60%;
  float: left;
  padding: 0 5% 0 0;
}

.right {
  width: 40%;
  float: left;
  padding: 0 0 0 5%;
}

@media (max-width:800px) {
  h1 {
    font-size: 2em;
  }

  h3 {
    font-size: 1.5rem;
  }

  .card-lead {
    font-size: auto;
  }

  /* .terms .section {
    width: 200vw;
    white-space: nowrap;
  	overflow-y: hidden;
  	overflow-x: scroll;
  	-webkit-overflow-scrolling: touch;
  } */

  .terms .section .left {
    display: block;
    width: 100%;
    float: left;
    padding: 0 1% 0 0;
  }

  .terms .section .right {
    display: inline;
    width: 100%;
    float: left;
    padding: 0 0 0 1%;
  }
}

@media (min-width: 992px) {
  .navbar {
    padding: inherit;
  }
  .container {
    padding: 0 10%;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100% !important;
  }
}
