/*
Theme Name: AML Disease Ed Theme
Author: Navicor [Todd Juro]
Author URI: http://the.oncology.agency
Description: Original custom-designed theme for AML Disease Website
Version 0.0.1
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  display: block;
}
audio {
  display: none;
}
a {
  text-decoration: none;
}
html {
  margin: 0px 0px !important;
}
body {
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0px;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
  color: #161616;
}
b {
  font-weight: bold;
}
i {
  font-style: italic;
}
sup {
  font-size: 60%;
  position: relative;
  top: -6px;
}
.top-menu {
  display: none;
}
.entry-header {
  display: none;
}
#wpadminbar {
  display: none;
}

/* ---------------------------------- */
/* - general width, padding, margin - */
/* ---------------------------------- */
.middle-spacer {
  position: relative;
  margin: 0px auto;
  width: 100%;
  max-width: 1024px;
  height: 100%;
}

.doctor-spacer {
  position: relative;
  width: 100%;
  max-width: 1024px;
  height: 100%;
}

.doctor-spacer h6 {
  font-weight: bold;
}

.width-100-percent {
  width: 100%;
  margin: 0 auto;
}

.width-90-percent {
  width: 90%;
  margin: 0 auto;
}

.width-85-percent {
  width: 85%;
  margin: 0 auto;
}

.width-75-percent {
  width: 75%;
  margin: 0 auto;
}

.width-50-percent {
  width: 50%;
  margin: 0 auto;
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-50 {
  margin-top: 50px;
}

.col-33 {
  width: 33%;
  margin: 10px;
}

.col-50 {
  width: 50%;
  margin: 10px;
}

.col-66 {
  width: 66%;
  margin: 10px;
}

.col-100 {
  width: 100%;
}

.max-width-320 {
  max-width: 320px;
}

.max-width-375 {
  max-width: 375px;
}

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

.max-width-550 {
  max-width: 550px;
}

.max-width-650 {
  max-width: 650px;
}

.zero-auto {
  margin: 0px auto;
}

.pad-20 {
  padding: 20px;
}

.pad-left-20 {
  padding-left: 20px;
}

.pad-left-40 {
  padding-left: 40px;
}

.text-center {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

/* -------------------------------- */
/* --------- Top section ---------- */
/* -------------------------------- */

nav {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 11%;
  min-height: 80px;
  max-height: 100px;
  background-color: rgba(255, 255, 255, 0.9);
}

nav .middle-spacer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#nav-links-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 80px;
  left: 100vw;
  padding: 10px 0px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
}

.nav-link-container {
  margin: 15px;
  font-size: 18px;
  color: #161616;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-bottom 0.1s linear;
  -o-transition: border-bottom 0.1s linear;
  transition: border-bottom 0.1s linear;
  cursor: pointer;
}

#nav_disclaimer {
  position: absolute;
  top: 5px;
  right: 20px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 8px;
  color: #323232;
  text-align: right;
}

#logo-top {
  display: block;
  height: 32px;
  max-width: 200px;
  padding-left: 20px;
}

#logo-top svg {
  pointer-events: none;
}

.social-share {
  margin: 15px;
}

.social-share svg {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  cursor: pointer;
}

.social-share svg path {
  transition: all 0.1s linear;
}

svg {
  width: 100%;
  height: auto;
}

#hamburger-menu-icon {
  width: 9%;
  height: auto;
  padding-right: 20px;
  max-width: 40px;
}

#hamburger-menu-icon img {
  width: 100%;
  height: auto;
  filter: invert(100%) opacity(0.7);
}

#hero-mobile {
  position: absolute;
  top: 0;
  z-index: -5;
  width: 100%;
}

.twitter--popup {
  position: absolute;
  right: -219px;
  top: 40px;
  display: flex;
  transition: right 0.5s;
  width: 246px;
  display: none;
}

.twitter--popup.open {
  right: 0;
}

.twitter--popup-tag {
  width: 27px;
}

.twitter--popup-tag h3 {
  color: white;
  text-transform: capitalize;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  background-color: #bf27ba;
  padding: 20px 4.5px;
  font-size: 15px;
  text-align: center;
}

.twitter--popup-icon {
  width: 29px;
  height: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}
.twitter--popup-svg {
  width: 15px;
  height: 15px;
}

.twitter--popup-inner {
  background-color: black;
  color: white;
  padding: 10px;
  text-align: center;
  display: flex;
  width: 100%;
  align-items: center;
}

.twitter--popup-inner .inline {
  width: 25px;
  height: 25px;
  position: relative;
  top: 5px;
  display: inline;
  margin-right: 3px;
}

.twitter--popup-inner p {
  line-height: 8px;
  padding: 0 !important;
}

.twitter--popup-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin: 10px;
}

section {
  position: relative;
  width: 100%;
}

#section1-hero {
  padding-top: 70px;
  padding-bottom: 20px;
  top: 0px;
  background-image: url("../../../../media.understandingaml.com/wp-content/uploads/2019/02/intro_bkg.png");
  background-position: 0px bottom;
  background-size: cover;
  height: fit-content;
  max-width: unset;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: calc(27px + 0.6vw);
  color: #161616;
  line-height: 1.3;
  text-align: center;
  border-bottom: 4px solid #ffffff;
  padding-bottom: 3px;
  margin: 0 auto;
  /* width: 70%; */
  max-width: 250px;
}

p {
  font-size: calc(11px + 0.9vw);
}

#section1 {
  margin-top: 100px;
}

#section1 p {
  padding: 4% 14%;
  padding-bottom: 0;
  text-align: center;
}

.small-hero-text {
  font-size: 9px !important;
  padding: 2% 24% !important;
  opacity: 0;
}

#video-thumbnail {
  width: 45%;
  margin-bottom: 25px;
}

.w-65 {
  width: 65%;
}

.left-button {
  width: 95% !important;
}

.left-button::after {
  position: absolute;
  content: "Newly Added";
  content: "Newly Added";
  top: -20px;
  background-color: #bd28ba;
  padding: 3px 10px;
  font-weight: bold;
}

@media screen and (max-width: 700px) {
  .left-button::after {
    padding: 2px 10px;
  }
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .flex-hero {
    flex-direction: column;
  }
}

#doc-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down-button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 87%;
  max-width: 300px;
  height: calc(35px + 1vw);
  /* margin: 0 auto; */
  margin: 0 10px;
  margin-bottom: calc(10px + 1vw);
  border-radius: 50px;
  text-align: center;
  font-size: calc(8.5px + 0.5vw);
  background-color: #161616;
  color: #ffffff;
  transition: background-color 0.1s linear;
}

.scroll-down-button span {
  padding-left: 5%;
  font-weight: 600;
  width: 100%;
  pointer-events: none;
}

.button-image-container {
  position: absolute;
  left: 5px;
  top: 3px;
  width: 9%;
  pointer-events: none;
}

.button-image-container img {
  width: 100%;
  pointer-events: none;
}

/* ----------------------------------- */
/* ------- Lockup / callout ? -------- */
/* ----------------------------------- */

#section2 {
  padding: 20px 0;
}

#section2 .image-container {
  width: 75%;
  margin: 0 auto;
}

.desktop-only {
  display: none;
}

.image-container img {
  width: 100%;
  margin: 0 auto;
}

.divider-line-horiz {
  width: 90%;
  height: 1px;
  margin: 20px auto;
}

.divider-line-horiz.purple-bkgd {
  margin: 15px auto;
}

.divider-line-vert {
  height: 100px;
  width: 2px;
  position: relative;
  right: 27px;
}

.black-bkgd {
  background-color: #161616;
}

#callout-desktop {
  max-width: 120px;
}

/* -------------------------------- */
/* ----- Expert Perspectives ------ */
/* -------------------------------- */

#section3,
#stone {
  background-color: #161616;
  color: white;
  padding: 50px 0;
}

#section3 .image-container,
#stone .image-container {
  width: 60%;
  /* margin: 0 auto; */
  float: left;
}

@media (max-width: 440px) {
  #section3 .image-container,
  #stone .image-container {
    padding-bottom: 80px;
  }
}
@media (max-width: 330px) {
  #section3 .image-container,
  #stone .image-container {
    padding-bottom: 170px;
  }
}

.doctor-audio {
  font-style: italic;
  bottom: 0;
  font-size: 10px;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
  font-weight: bold;
}

.hear-the-expert {
  display: inline-block;
  text-align: left !important;
  position: absolute;
  color: #fff;
  /* font-size: 18px; */
}

.image-container.circle-box {
  max-width: 230px;
}

.circle-box img {
  border: 1px solid #ffffff;
  border-radius: 50%;
  /* padding-top: 10px; */
  max-width: 230px;
  margin: 0 15px;
}

.image-caption-center {
  width: 90%;
  /* width: 70%; */
  margin: 10px auto;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}

h6 {
  font-size: calc(8.5px + 0.5vw);
  letter-spacing: 1px;
}

h2 {
  font-size: calc(26px + 0.5vw);
  font-weight: bold;
  letter-spacing: 1px;
}

.serif-font {
  font-family: "PT Serif";
}

p.serif-font {
  font-weight: lighter;
}

#section3 p.serif-font,
#stone p.serif-font {
  color: #cdcdcd;
}

.purple-bkgd {
  /* background-color: #4e35a4; */
  background-color: #323232;
  width: 100%;
}

#see-more-button,
#see-more-button-stone {
  cursor: pointer;
}

.underline {
  border-bottom: 1px solid;
}

.hidden-text {
  display: none;
  opacity: 0;
  height: 0px;
  position: relative;
  z-index: -1;
}

.display-none {
  display: none;
}

#article-title {
  font-size: calc(8px + 2vw);
  font-weight: 700;
}

#section3 .icon-container {
  width: 15%;
  max-width: 50px;
  height: 70px;
  margin: 0 auto;
  padding: 10px;
}

#stone .icon-container {
  width: 15%;
  max-width: 50px;
  height: 70px;
  margin: 0 auto;
  padding: 10px;
}

.primary-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 55%;
  max-width: 175px;
  height: calc(30px + 1vw);
  margin: 0 auto;
  border: 1px solid #ffffff;
  border-radius: 50px;
  text-align: center;
  font-size: calc(10px + 0.7vw);
  color: #ffffff;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.1s linear;
}

/* -------------------------------- */
/* -------- Audio section --------- */
/* -------------------------------- */
.section4 {
  /* padding: 50px 0; */
  /* border-left: 1px solid #fff; */
  /* width: 35%; */
}

.section4 .serif-font {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.icon-container {
  max-width: 160px;
}

.icon-small {
  max-width: 20px;
}

.icon-large {
  max-width: 120px;
}

.divider-horiz-small {
  background-color: #4e35a4;
  height: 2px;
  width: 95px;
  margin: 20px auto;
}

.divider-horiz-full {
  /* background-color: #252525; */
  background-color: #666;
  height: 1px;
  width: 100%;
}

.button-round,
.play-pause-button {
  cursor: pointer;
}

.audio-wrapper {
  position: relative;
}

.audio-player-container {
  position: relative;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
  padding: 0px 10px;
  cursor: pointer;
  width: 100%;
}

.audio-player-container span {
  /* padding: 20px 15px; */
  padding: 10px;
  max-width: 215px;
  font-size: 14px;
}
#transcript-0,
#transcript-1,
#transcript-2 {
  font-style: italic;
  text-decoration: underline;
  font-size: 11px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 10px;
}

#dinardo-transcript-1,
#roboz-transcript-1,
#roboz-transcript-2,
#roboz-transcript-3 {
  font-style: italic;
  text-decoration: underline;
  font-size: 11px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 10px;
}
#stone-transcript-1,
#stone-transcript-2,
#stone-transcript-3 {
  font-style: italic;
  text-decoration: underline;
  font-size: 11px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 10px;
  cursor: pointer;
}
.read-transcript-button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: hidden;
  /* width: 0px; */
  padding: 0px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: 1px solid transparent;
  border-radius: 20px;
  font-size: 0px;
  white-space: nowrap;
  /* font-weight: bold; */
  /* background-color: #f2f2f2; */
}

.read-transcript-button.expand-button {
  padding: 10px;
  width: 120px;
  border: 1px solid #252525;
  font-size: 10px;
  margin: 0 auto 10px;
}

.audio-progress-container {
  height: 0px;
  overflow-y: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.audio-progress-container.expand-progress {
  height: 50px;
}

.time-elapsed-container,
.time-remaining-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 55px;
}

.audio-progress {
  height: 15px;
  width: 80%;
  position: relative;
  margin: 0px 10px;
  cursor: -webkit-grab;
  cursor: grab;
}

.audio-progress:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.audio-bar {
  height: 3px;
  width: 100%;
  background-color: #252525;
}

.audio-progress-fill {
  height: 3px;
  width: 0%;
  /* background-color: #4e35a4; */
  background-color: #fff;
}

.audio-progress-circle {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  /* background-color: #4e35a4; */
  background-color: #fff;

  position: absolute;
  left: -7.5px;
  top: 0;
  pointer-events: none;
}

.transcript-container {
  height: 0px;
  overflow-y: hidden;
  -webkit-transition: all 0.44s ease-in-out;
  -o-transition: all 0.44s ease-in-out;
  transition: all 0.44s ease-in-out;
  padding: 0px;
}

.transcript-container p {
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  padding: 0px 10px;
  font-family: "PT Serif", serif;
  margin: 10px 0;
  font-size: calc(15px + 0.7vw);
}

.transcript-container.show-on-click {
  height: 175px;
  overflow-y: scroll;
  padding: 10px 0px;
}

.transcript-container.show-on-click p {
  opacity: 1;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c2c2c2;
  border-radius: 5px;
}

/* -------------------------------- */
/* ---------- Slide Deck ---------- */
/* -------------------------------- */
.divider-line-horiz-twotone {
  margin-bottom: 10px;
  width: 100%;
  height: 9px;
  background: -webkit-gradient(linear, left top, right top, color-stop(35%, #4e35a4), color-stop(35%, #212121));
  background: -webkit-linear-gradient(left, #4e35a4 35%, #212121 35%);
  background: -o-linear-gradient(left, #4e35a4 35%, #212121 35%);
  background: linear-gradient(to right, #4e35a4 35%, #212121 35%);
}

#section5 {
  background-color: #ffffff;
  padding: 35px 0;
}

#section5 .audio-wrapper span {
  max-width: 520px;
}

#section5 .audio-section {
  width: 70%;
}

@media screen and (max-width: 900px) {
  #section5 .audio-section {
    width: 100%;
  }
}

#section5 .icon-container {
  width: 40%;
  margin: 0 auto;
}

#section5 .serif-font {
  text-align: center;
  font-style: italic;
}

#section5 .audio-player-container {
  padding: 10px 0;
}

@media screen and (max-width: 480px) {
}

#section5 h4 {
  color: #4e35a4;
  max-width: 100%;
  position: relative;
  text-align: center !important;
  display: block;
}

#section5-stone {
  background-color: #eeeeee;
  padding: 35px 0;
}

#section5-stone .icon-container {
  width: 40%;
  margin: 0 auto;
}

#section5 .audio-progress-fill {
  background: black;
}

#section5 .audio-progress-circle {
  background: black;
}

h4 {
  color: #4e35a4;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: calc(15px + 0.7vw);
  text-align: center;
  margin: 10px auto;
}

h5 {
  color: #4e35a4;
  font-weight: 600;
  font-size: calc(11.5px + 0.7vw);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.secondary-button-container img {
  display: none;
}

.secondary-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30%;
  max-width: 100px;
  height: calc(35px + 1vw);
  margin: 20px auto;
  border: 1px solid;
  border-radius: 50px;
  text-align: center;
  font-size: calc(9px + 0.7vw);
  font-weight: 600;
  color: #212121;
  letter-spacing: 1px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.info-section {
  padding: 0 10px;
}

#slide-deck-info p {
  max-width: 320px;
  margin: 0 auto;
}

/* -------------------------------- */
/* ----- AML related articles ----- */
/* -------------------------------- */
#section6 {
  padding: 35px 0;
}

#section6-stone {
  padding: 35px 0;
}

.section4 .icon-container,
#section5 .icon-container,
#section5-stone .icon-container,
#section6 .icon-container,
#section6-stone .icon-container {
  width: 40%;
  margin: 0 auto;
}

.section4 h4,
#section5 h4,
#section5-stone h4,
#section6 h4,
#section6-stone h4 {
  width: 70%;
  margin: 10px auto;
  text-align: center;
}

.divider-line-horiz-short {
  width: 40%;
  background-color: #4e35a4;
  height: 3px;
  margin: 20px auto;
}

#section6 .serif-font,
#section6-stone .serif-font {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

/* #section6-stone .article-section {
	margin-top: -75px;
} */

.icon-flex {
  width: 315px;
  margin-right: -23px;
}

.icon-flex .hear-the-expert {
  position: relative;
}

.icon-subhead {
  font-weight: bold;
  font-size: 16px !important;
  margin-bottom: 50px;
}

.small-footer-text {
  font-family: "PT Serif", serif;
  font-size: 8px;
  font-weight: 700;
  /* font-size: 9px !important; */
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.register-button {
  border: 1px solid #000;
  border-radius: 35px;
  padding: 15px;
  font-weight: bold !important;
  text-transform: uppercase;
  width: 60%;
  text-align: center;
  margin: 0 auto;
  font-family: Montserrat;
  font-size: 13px;
  cursor: pointer;
}

.register-button:hover {
  background-color: #000;
  color: #fff;
}

/* -------------------------------- */
/* ----- Gravity form styling ----- */
/* -------------------------------- */

#updates_form {
  background-color: #323232;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 5%;
  padding-right: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#updates_form .gform_wrapper {
  max-width: 1024px;
  margin: 0 auto !important;
}

.main-content-thankyou {
  background: #000;
}

.form-h1 {
  position: relative;
  font-family: Montserrat;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  width: 100%;
  padding-top: 0px;
  margin: 0px auto 20px auto;
}

.form-h2 {
  font-family: Montserrat;
  font-size: 19px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  padding-top: 30px;
  margin: 20px auto 20px auto;
}

.form-p {
  position: relative;
  font-family: "PT Serif", serif;
  font-size: 14px;
  font-weight: 400;
  color: #c0c0c0;
  text-align: center;
  margin: 0px auto 20px auto;
  width: 80%;
  line-height: unset;
}

.form-link-home {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  color: #ff06ff;
  text-align: center;
  margin: 0px auto 20px auto;
  text-decoration: underline !important;
}

#gform_confirmation_message_1 {
  text-align: center;
}

#gform_confirmation_message_1 .form-p {
  width: 75%;
}

#updates_form input:focus,
textarea:focus,
select:focus {
  outline: none;
}

#gform_wrapper_1 {
  padding-left: 0;
}

.gform_wrapper {
  margin: 0px 0px !important;
}

.gform_wrapper ul li.gfield {
  margin-top: 0 !important;
}

#updates_form .gfield_label {
  display: none;
}

#updates_form .ginput_container input[type="text"],
#updates_form #input_1_4 {
  height: 40px;
  width: 100%;
  /* margin: 0 auto; */
  border: none;
  background-color: #515151;
  border-radius: 4px;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  padding: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: auto !important;
  margin-right: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#updates_form .ginput_container input[type="text"],
#updates_form #input_1_8 {
  height: 54px;
  width: 100%;
  /* margin: 0 auto; */
  border: none;
  background-color: #515151;
  border-radius: 4px;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  padding: 10px;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: auto !important;
  margin-right: auto !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
/*
.gfield_error  input[type=text] {
	border: 1px solid red;
} */

#updates_form .ginput_container input[type="text"]::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

#updates_form .ginput_container input[type="text"]:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

#updates_form .ginput_container input[type="text"]::-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

#updates_form .ginput_container input[type="text"]::placeholder {
  color: #fff;
  opacity: 1;
}

#field_1_1,
#field_1_2 {
  /* display: inline-block; */
  /* width: 48%; */
  /* float: left; */
  /* clear: unset; */
}

#field_1_1 {
  /* margin-right: 10px; */
}

/* select */
.ginput_container.select-items {
  background-color: #000;
}

/* checkbox */
#field_1_8 {
  /* position: absolute; */
  background-color: unset;
  /* margin: 0; */
  /* padding: 0; */
}

.gfield_checkbox li {
  position: absolute !important;
}

#gfield_description_1_5 {
  padding-left: 35px;
}

input#choice_1_5_1 {
  /* display: inline-block; */
  /* float: left; */
  width: 24px !important;
  height: 24px !important;
}

#choice_1_8_1:value {
  field_value: unset;
}

/* text next to checkbox */
#field_1_6 {
  /* font-family: Montserrat;
	font-size: 12px;
	font-weight: 400; */
  color: #fff;
  width: 100%;
  margin: -10px auto 0 auto !important;
  font-family: "PT Serif", serif;
  font-weight: 700i;
  font-size: 8px;
  padding: 30px 0px 10px 40px;
  /* clear: unset; */
  /* margin-left: 50px; */
}

#field_1_6 a {
  color: #fff;
  text-decoration: underline !important;
}

/* gravity forms error checking/feedback */

#gform_submit_button_1 {
  /* Style for "Rounded Re" */
  display: block;
  width: 168px;
  height: 39px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  background-color: #515151;
  margin: 0 auto !important;
  font-weight: 700;
  /* color: #767676; */
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}

.gform_wrapper .gform_footer {
  padding: 0 0 20px 0;
}

/* .validation_message, .validation_error { */
.validation_error {
  font-size: 10px !important;
  color: #ff06ff !important;
  margin-left: 10px;
  margin-bottom: 0 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.gfield_description.validation_message {
  display: none !important;
  /* padding-left: 25px; */
}

.validation_error {
  text-align: left !important;
  border: unset !important;
}

.field_description_below .gfield_description {
  padding-top: unset !important;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  padding: 0;
  background-color: unset;
  border: unset;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required .ginput_container_text input,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required .ginput_container_email input,
.gform_wrapper li.gfield.gfield_error.gfield_contains_required .ginput_container_select select {
  border: 1px solid #ff06ff !important;
}

.checkbox-agreement {
  color: #ffffff;
  font-family: "PT Serif", serif;
  font-size: 12px;
}

.checkbox-agreement label {
  /* pointer-events: none; */
}

.checkbox-agreement a {
  text-decoration: underline !important;
  color: #ffffff;
}

.checkbox-agreement a:visited {
  color: #ffffff;
}

.gform_wrapper li.gfield.gfield_error.gfield_contains_required .ginput_container_checkbox input {
  outline: 1px solid #ff06ff;
}

#gform_confirmation_message_1 {
  color: #ff06ff !important;
}

/* ------------------------------ */
/* --------- SVG icons ---------- */
/* ------------------------------ */

.icon-media {
  /* width: 200px; */
  /* height: 200px; */
}

.left-icon {
  float: left;
}

#section3 .icon-media-circle,
#stone .icon-media-circle {
  stroke: #fff;
}

.icon-media-circle {
  fill: none;
  stroke: #493e8c;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}

.icon-media-path {
  fill: #493e8c;
}

#documents_icon .icon-media-path {
  fill: none;
  /* stroke: #493e8c; */
  stroke-miterlimit: 10;
  stroke-width: 4px;
}

.white {
  stroke: #ffffff;
  fill: #fff;
}

.purple {
  stroke: #4e35a4;
}

.icon-social {
  width: 100px;
  height: 100px;
  fill: #ff0000;
}

.icon-media-fill {
  fill: #ff0000;
}

/* .st0{clip-path:url(#SVGID_2_);fill:#4E35A4;}
.st1{clip-path:url(#SVGID_2_);fill:#FFFFFF;}
.st2{fill:#4E35A4;} */

/* .slide-icon {
	max-width: 116px;
} */

/* ------------------------------ */
/* --------- References --------- */
/* ------------------------------ */

#references_section {
  background-color: #ffffff;
  color: #323232;
  font-family: "PT Serif", serif;
  font-weight: 400i;
  font-size: 14px;
  padding: 20px 0;
}

#references_section p {
  display: block;
  position: relative;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  overflow: visible;
  max-width: 1024px;
  font-size: 12px;
  font-weight: 400;
}

#references_section .divider-line-horiz {
  width: 90%;
  margin: 10px auto 0 auto;
  max-width: 1024px;
}

.refs-ital {
  font-weight: 400;
}

.refs-bold {
  font-weight: 700;
}

/* ------------------------------ */
/* --------- Footer ------------- */
/* ------------------------------ */

#footer_main {
  background-color: #ffffff;
  color: #323232;
  overflow: hidden;
}

#social_icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
  padding-top: 15px;
}

.icon-social-fill {
  fill: #323232;
}

.icon-tag-fill {
  fill: #bf27ba;
}

.icon-social {
  width: 20px;
  height: 20px;
  fill: #ff0000;
  margin: 0 10px;
}
#twitter_icon {
  width: 23px;
  height: 23px;
}
.icon-media-fill {
  fill: #ff0000;
}

#corporate_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 80%;
  margin: 0 auto 25px auto;
  max-width: 700px;
}

.corp-link {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #323232;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
}

.link-divider {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  width: 1px;
  height: 15px;
  background-color: #a7a7a7;
}

#end_matter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 90%;
  max-width: 1024px;
  margin: 0 auto 0 auto;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

#logo-bottom {
  width: 100%;
  margin-right: 20px;
}
#logo-bottom svg {
  width: 236px;
  height: 42px;
}
@media (max-width: 440px) {
  #logo-bottom {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }

  #logo-bottom svg {
    width: 220px;
  }
}

.logo-fill {
  fill: #ffffff;
}

.end-matter-item {
  display: inline-block;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  color: #323232;
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 10px;
  text-align: center;
}

.spacer-end {
  display: none;
}

#corporate_links_end {
  display: none;
}

#social_icons_end_matter {
  display: none;
}

#cookies_warning {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 105px;
  background-color: #494949;
}

#cookies_content {
  margin: 0 auto;
  padding: 0px 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  max-width: 1024px;
}

#cookies_warning p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #fff;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

#cookies_warning a:link,
#cookies_warning a:visited {
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

#cookies_accept_btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  display: block;
  width: 324px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  background-color: #494949;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

#cookies_content .middle-spacer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ------------------------------ */
/* ----- LEAVING SITE MODAL ----- */
/* ------------------------------ */

#leaving_site_modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* right: 0;
	bottom: 0; */
  z-index: 100;
}

#leaving_site_modal .tint-bkg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(127, 127, 127, 0.5);
}

#leaving_site_modal .modal {
  display: block;
  position: fixed;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 300px;
  height: 290px;
  background-color: #4e35a4;
  padding: 50px 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#leaving_site_modal p {
  margin-bottom: 20px;
}

#modal-exit-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

#modal-exit-btn .exit-line {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 7px;
}

#modal-ok-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 40px;
  text-align: center;
  display: block;
  margin: 40px auto;
  width: 160px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid #ffffff;
  background-color: #4e35a4;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.nolink {
  cursor: default;
}

.mobile-only {
  display: none;
}

.bc-iframe,
.bc-iframe body,
.bc-player-j0btagZwyH_default,
.bc-player-j0btagZwyH_default .vjs-poster {
  background-color: transparent !important;
}

.read-transcript,
#play-button {
  cursor: pointer;
}

#dinardo-transcript-1 {
  font-weight: bold;
}
