/* CSS */
:root {
    --blue: #3257db;
    --green: #43C801;
    --red: #f64c3c;
    --red-dark: #db1c0b;

    --primary: var(--green);

    --button-bg: var(--red);
    --button-bg-hover: var(--red);
    --button-shadow: var(--red-dark);
}

/*Header*/
#possibly-svg-logo {
    max-width: 8rem;
}
@media (min-width: 576px) {
    #possibly-svg-logo {
        max-width: 10rem;
    }
}
.masthead {
    margin-bottom: 1.5rem;
    background-color: white;
    border-bottom: 5px solid var(--primary);
    box-shadow: 0 4px 0 0 var(--bs-gray-100);
}

/*Social Media Links*/
.social-box {
    display: block;
    width: 100%;
    max-width: 145px;
    text-align: center;
    color: var(--bs-gray-400);
}
.social-box-mobile {
    display: flex;
    margin: 1rem 0;
}
.social-box a {
    text-decoration: none !important;
}
.social-box-mobile a {
    display: inline-block;
    margin: 0 0.25rem;
}
.social-box i {
  display: block;
}
.social_popup {
    display: flex;
    width: 100%;
    height: 52px;
    margin: 0 0 9px;
    padding: 15px 15px 15px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    background: #8fa1b5;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.5s ease-in-out;
          transition: 0.5s ease-in-out;
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.05);
}
.social_popup img {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}
.social_popup:hover, 
.social_popup:focus {
  color: #fff;
  text-decoration: none;
}
.social_popup:hover {
  background: #9aaabc;
}
.social_popup:focus {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  background: #68809b;
}
.social_popup.fb-btn {
  background: #738ec9;
}
.social_popup.fb-btn:hover {
  background: #8199ce;
}
.social_popup.fb-btn:focus {
  background: #466ab6;
}
.social_popup.tw-btn {
  background: #5eaae4;
}
.social_popup.tw-btn:hover {
  background: #6eb3e7;
}
.social_popup.tw-btn:focus {
  background: #278ddb;
}
.social_popup.gplus-btn {
  background: #d06b62;
}
.social_popup.gplus-btn:hover {
  background: #d98981;
}
.social_popup.gplus-btn:focus {
  background: #bc4338;
}


/*Main*/
.content-wrap hr {
    margin: 2.5rem auto;
    border-color: var(--bs-gray-600);
}
.toc-title {
    margin-bottom: 1.5rem;
    margin-left: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}
.numbering {
  position: absolute;
  display: inline-block;
  margin-left: -2.5rem;
  width: 2.25rem;
  height: 2.25rem;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  line-height: 2.25rem;
  background-color: var(--bs-gray-500);
  border-radius: 100px;
}

/*CTA Button*/
.cta-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: white !important;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
    line-height: normal;
    background: var(--button-bg);
    border: 0;
    border-radius: 0.25rem;
    box-shadow: 0 3px 0 0 var(--button-shadow);
}
.cta-button-lg {
    margin: auto;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.1;
    border-radius: 4rem;
}

/*Quizbox*/
.quiz-box {
    background-color: white;
    box-shadow: 0 5px 5px var(--bs-gray-200);
}
.quiz-box .question {
    padding: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    background-color: var(--blue);
}
.quiz-box .answers {
    padding: 0.5rem;
    border: 1px solid var(--bs-gray-200);
}
.quiz-box .answer-button {
    margin-bottom: 0.5rem;
}
.quiz-box .cta-button {
    width: 100%;
}

