/*
Theme Name: The Second Opinion
Version: 1.0
Description: Custom theme.
Author: DigiSage, Inc.
Author URI: https://digisage.com
template: bb-theme
*/

:root {
   --tso-pagewidth: 1200px;
   --tso-red: #c92228;
   --tso-gray: #8d8b8b;
   --tso-black: #111111;
   --tso-green: #006d6f;
   --atc-svg-swoosh: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 169.8625 16.591248'><g transform='translate(-19.84375,-77.335835)'><path d='M19.84375,84.666666 c 40.269252,-8.512529 110.92702,-12.359119 169.8625,3.96875 L 166.6875,93.927082 C 109.84309,79.18532 76.444772,80.572367 19.84375,84.666666 Z' style='fill:%23003b4d;'/></g></svg>");
   --atc-svg-person: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 81'><path d='M39.11 21.69s24.03 1.13 33.32-.68 37.63-14.96 37.63-14.96-28.11 17.91-29.47 23.12C79.23 34.38 99.4 66.12 99.4 66.12L74.01 47.53 41.14 77s30.38-38.99 24.48-44.66C61.34 28.23 39.1 21.69 39.1 21.69Z'><path d='M70.27 8.88c-2.47 3.69-2.48 7.63-.01 8.81 2.46 1.18 6.47-.85 8.94-4.54 2.47-3.69 2.48-7.63.01-8.81-2.47-1.18-6.47.85-8.94 4.54ZM4.5 60.34s24.96-6.24 75.1-6.24 79.26 10.17 79.26 10.17l-20.11 4.62S98.54 58.03 64.57 58.03 4.49 60.34 4.49 60.34Z'></svg>");
}

/* general */

/* full-row padding to equalize content width */
.pad-left-pagewidth > .fl-col-content {
   padding-left: calc((100vw - var(--tso-pagewidth)) / 2);
}
.pad-right-pagewidth > .fl-col-content {
   padding-right: calc((100vw - var(--tso-pagewidth)) / 2);
}
@media(max-width:1200px) {
   .pad-left-pagewidth > .fl-col-content {
      padding-left: 0px;
   }
   .pad-right-pagewidth > .fl-col-content {
      padding-right: 0px;
   }
}

/* layering helpers */
.z-index-1 {
   position: relative;
   z-index: 1;
}
.z-index-5 {
   position: relative;
   z-index: 5;
}
.z-index-10 {
   position: relative;
   z-index: 10;
}

/* alter all bold text to use lighter than 700 */
.fl-builder-content .fl-rich-text strong {
   font-weight: 600;
}

/* general accent in site name */
.red-text {
   color: var(--tso-red);
}

/* displays the thesecondopinion with the word "second" in red */
span.site-name {
   font-family: "Libertinus Serif", serif !important;
   font-size: 1.15em !important;
   font-weight: 600 !important;
}
span.site-name span.black {
   font-style: normal !important;
}
span.site-name span.red {
   color: var(--tso-red) !important;
   font-style: italic !important;
}


/* masthead */
ul li.donate a {
   background: var(--tso-green);
   color: #fff !important;
   padding-left: 22px;
   padding-right: 22px;
}
ul li.donate a:hover {
   background: var(--tso-black);
}




