/* HTML tag styles */
body {
  padding: 0;
  margin: 0;
  --red: #b91a14;
  --light_red: #e71d16;
  --blue: #468bdb;
  --green: #1c7b4f;
  --orange: #d9903b;
  --grey: rgb(105, 109, 112);
  --lighter: #faf9f9;
  --light: #f0edec;
  --light2: #e6dfdf;
  --dark: #374047;
  --darker: #1d2124;
  --medium: #757677;
  --black: black;
  --bg: white;
  --white: white;
  font-family: "Lato";
  /* font-family: "Lato", -apple-system, BlinkMacSystemFont; */
  font-weight: 500;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  background: var(--bg);
  color: black;
  overflow-x: hidden;
}
a:visited {
  color: inherit;
}
p {
  font-size: 16px;
  font-family: Lora;
  line-height: 1.8;
  font-weight: 500;
}
header {
  height: 138px;
  margin-bottom: 0px;
  background: white;
  /* box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05); */
  z-index: 1000;
  position: relative;
}
nav {
  width: 100vw;
  height: 60px;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-60px);
  color: white;
  transition: transform 0.1s;
  z-index: 1000;
  will-change: transform;
}
.fr-inner {
  font-style: italic;
  font-size: 14px;
  justify-content: center;
  width: 100%;
  display: flex;
}
.news_team_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 50px;
}
.news_team_card {
  display: grid;
  place-content: center;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .news_team_card {
    display: flex;
    text-align: left;
  }
}
@media screen and (min-width: 950px) {
  .news_team_list {
    grid-template-columns: 1fr 1fr;
  }
}
.floating_header_title {
  font-family: "Lato";
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 1.3px;
  word-spacing: 3px;
}
.trending_bar_container {
  display: flex;
  width: calc(100vw - 60px);
  max-width: 1400px;
}
.scrolling_trending_bar {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: auto;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  width: auto;
  height: 56px;
}
.scrolling_trending_bar > a {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.trending_bar_item {
  margin: 0 10px;
  font-family: Lato;
  font-weight: 600;
  font-size: 12px;
}
.trending_float {
  margin-top: 0px;
}
.trending_float .top_block_title {
  /* color: var(--white) !important; */
  /* font-size: 15px !important;
line-height: 20px !important; */
}
.trending_float .featured_block_author {
  /* display: none; */
}
.trending_float img {
  /* display: none; */
}
.trending_float .trending_block {
  margin-bottom: 3px !important;
}
.nav_visible {
  transform: translateY(0);
}
.nav_full {
  height: 130px;
  position: relative;
  background: transparent;
}
.nav_menu_button {
  display: none;
}

nav a {
  color: white;
}
footer {
  position: relative;
  background: black;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 100000;
}
h2 {
  font-size: 32px;
  font-weight: 800;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
h1 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
  font-weight: 800;
  font-size: 36px !important;
  line-height: 1.4 !important;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.spokespeople_h1 {
  line-height: 1.1 !important;
}
button {
  font-size: 16px;
  background: transparent;
  border: 1px solid black;
  padding: 10px 20px 10px 20px;
  border-radius: 3px;
}
button:hover {
  cursor: pointer;
  opacity: 0.8;
}
button:focus,
button:active {
  outline: none;
}

/* .neumorphic_button {
  border: none;
  border-radius: 21px;
background: #f5f5f5;
box-shadow:  5px 5px 10px #e4e4e4, 
             -5px -5px 10px #ffffff;
  color: var(--dark);
}
.neumorphic_button:active{
  border-radius: 32px;
  background: #f3f3f3;
  box-shadow: inset 6px 6px 12px #e0e0e0, 
              inset -6px -6px 12px #ffffff;
} */
.modal {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: var(--red);
  cursor: pointer;
  opacity: 1;
}
img {
  width: 100%;
}
p img {
  width: calc(100% - 30px) !important;
  max-width: calc(100% - 30px) !important;
}
.about_morton_p img {
  width: 250px !important;
}
.profile_media_section iframe {
  width: 80% !important;
}
/* Global classes */
.remove_scrollbar {
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.remove_scrollbar::-webkit-scrollbar {
  /* Hide scrollbar for Chrome, Safari and Opera */
  display: none;
}
.profile_card {
  border: 5px solid var(--red) !important;
  border-radius: 10px !important;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4) !important;
}
.trending_block {
  margin-top: 10px;
  /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); */
  /* background: white; */
  /* border-radius: 10px; */
  /* overflow: hidden; */
  padding: 0px;
  margin-bottom: 10px;
}
.trending_block {
  height: auto !important;
}
.trending_block .top_block_image {
  /* height: calc(100% + 10px); */
  width: 50px;
  height: 50px;
}
.video_page_container .popular_block_img {
  min-height: 35vh;
}
.video_page .trending_block .top_block_title {
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  transform: none !important;
}
.video_page .trending_block {
  margin-bottom: 20px;
}
.video_page .trending_block .top_block_title div {
  height: 2px;
}
.video_block_small .video_image {
  /* height: calc(100% + 10px); */
  width: 100% !important;
  height: 170px !important;
}
.trending_block .top_block_title_container,
.video_block_small .top_block_title_container {
  /* width: 100%; */
  padding: 0px;
  /* padding-right: 10px; */
  display: flex;
  height: 80px;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 0px);
}
.trending_block .top_block_title_container .top_block_title,
.video_block_small .top_block_title_container .top_block_title {
  transform: translateY(5px);
  font-weight: 700;
  color: black;
  line-height: 17.9px;
  font-size: 14px;
  /* margin-bottom: 10px;; */
}
.trending_block .top_block_title_container .top_block_title strong,
.video_block_small .top_block_title_container .top_block_title strong {
  font-weight: 700;
  /* color: var(--darker); */
}
.video_block_small .top_block_title_container {
  height: 120px;
  width: calc(100% - 20px);
}
.video_block_small .top_block_title_container .top_block_title {
  font-size: 16px;
}
.video_block_small .video_block_small_bottom {
  display: flex;
}
.page_background {
  position: absolute;
  top: 0px;
  /* left: -1px; */
  width: calc(100vw);
  height: calc(100%);
  z-index: -1;
  background: url("/static/campus_bw.jpeg");
  background-size: cover;
  background-position: center;
  /* object-position: center; */
  /* background: rgb(208, 24, 24); */
}
.page_background_lecture {
  background: url("/static/lecture_bw.jpg");
  background-position: bottom;
  background-size: cover;
  /* object-position: center; */
  /* background: rgb(208, 24, 24); */
}
.page_background_correspondent {
  background: url("/static/correspondent.jpeg");
  background-position: bottom;
  background-size: cover;
  /* object-position: center; */
  /* background: rgb(208, 24, 24); */
}
.stripe {
  /* transform: translateY(-50px); */
  width: 100vw;
  /* background: url('/static/lecture_hall.jpeg'); */
  clip-path: fill-box;
  opacity: 0.7;
  display: none;
}
.overlay {
  background: black;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}
.about_nav {
  width: 220px;
  padding-top: 30px;
  font-size: 16px;
  font-weight: 400;
}
.about_nav_item {
  height: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.about_nav_item:hover {
  cursor: pointer;
  opacity: 0.7;
}
.about_nav_item_active {
  border-left: 5px solid black;
  padding-left: 5px;
  transform: translateX(-10px);
}
.split_page_title {
  margin-top: 70px;
  width: 100%;
}
.text_left {
  text-align: left;
}
.invert {
  filter: invert(100%);
}
.red {
  color: var(--red);
}
.main_container {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.main_container_article {
  /* max-width: 1700px; */
}
.mid_container {
  max-width: 1024px;
  margin: 0 auto;
}
.full_height {
  height: 100%;
}
.flex {
  height: 100%;
  display: flex;
}
.inline_between {
  justify-content: space-between;
}
.inline_start {
  justify-content: flex-start;
}
.inline_end {
  justify-content: flex-end;
}
.inline_center {
  justify-content: center;
}
.inline_around {
  justify-content: space-around;
}
.inline_evenly {
  justify-content: space-evenly;
}
.align_center {
  align-items: center;
}
.align_start {
  align-items: flex-start;
}
.align_end {
  align-items: flex-end;
}
.grid {
  display: grid;
}
.grid_3 {
  grid-template-columns: auto auto auto;
  grid-gap: 40px;
}
.grid_4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 40px;
}
.grid_2 {
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
}
.grid_2_1 {
  grid-template-columns: 2fr 1fr;
  grid-gap: 40px;
}
.grid_3_1 {
  grid-template-columns: 3fr 1fr;
  grid-gap: 40px;
}
.grid_4_1 {
  grid-template-columns: 3.5fr 1fr;
  grid-gap: 40px;
}
.grid_5_1 {
  grid-template-columns: 5fr 1fr;
  grid-gap: 40px;
}
.grid_3_home {
  grid-template-columns: 1fr 2fr 1fr;
  row-gap: 0px;
  row-gap: 0px;
}
.article_subtitle {
  margin-top: 20px !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  max-width: 1000px !important;
}
.progress_tracker {
  position: fixed;
  top: 50px;
  left: 0;
  height: 10px;
  background: transparent;
  width: 100vw;
  z-index: 4;
}
.progress_tracker_left {
  transition: transform 0.1s;
  height: 5px;
  width: 100vw;
  margin-left: -100vw;
  background: var(--red);
  z-index: 10000;
}
.article_grid {
  grid-template-columns: 3fr 1fr;
  background: white;
}
.article_container {
  margin: 0 auto;
}
.grid_2_top_block {
  grid-gap: 15px;
}
.border_top {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.border_bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.border_right {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.small_story.border_top {
  padding-top: 15px;
  margin-bottom: 0px;
  padding-bottom: 0;
}
/* Component Classes */
.header_top {
  padding-top: 10px;
  height: 120px;
  z-index: 1000;
  /* border-bottom: 1px solid rgba(0,0,0,.1); */
}
.header_bottom {
  height: 40px;
  z-index: 1000;

  /* color: white; */
}
.header_bottom_outer {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  font-size: 13px;
  z-index: 1000;
}
p #twitter-widget-0 {
  height: 25px !important;
  margin-top: 10px !important;
}
p #twitter-widget-1 {
  height: 25px !important;
  margin-top: 10px !important;
}
p #twitter-widget-2 {
  height: 25px !important;
  margin-top: 10px !important;
}
p #twitter-widget-3 {
  height: 25px !important;
  margin-top: 10px !important;
}
.logo {
  font-family: "Cormorant Garamond";
  font-size: 28px;
  letter-spacing: 1.1px;
  font-weight: 900;
}
.logo img {
  width: 300px;
}
.li_logo {
  width: 140px;
}
.nav_item {
  text-transform: uppercase;
  font-size: 11px;
  margin-right: 30px;
  letter-spacing: 1.5px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.mobile_search {
  margin: 0 0 30px 30px;
  padding: 7px 10px;
  border: none;
  border-radius: 5px;
  width: 70%;
  height: 35px;
  font-size: 16px;
}
.section_header {
  font-size: 18px;
  border-left: 3px solid black;
  height: 26px;
  font-weight: 900;
  padding-left: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: var(--nord-dark2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_header_large {
  font-size: 28px;
  height: 42px;
  padding-left: 0px;
  margin-bottom: 25px;
}
.top_block {
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 20px;
  row-gap: 20px;
}
.top_block_title {
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 20px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.top_block_line_clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.top_block_image {
  width: 70px;
  min-width: 70px;
  min-height: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 10px;
  background: rgba(0, 0, 0, 0.05);
}

.featured_block {
  line-height: 15px;
  margin-bottom: 0px;
  margin-top: 15px;
  /* box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.1); */
  /* background: white; */
  /* border-radius: 10px; */
  overflow: hidden;
  padding: 0px;
}
.featured_block h2 {
  margin-bottom: 0;
  font-size: 36px;
  line-height: 44px !important;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.featured_block_image {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
}
.feature_block_bottom {
  padding: 0px;
  padding-top: 0px;
}
.featured_block_subtitle {
  font-size: 16px;
  opacity: 0.7;
  line-height: 1.5;
  font-family: Lora;
  font-weight: 500;
}
.featured_block h2 {
  margin-bottom: 10px;
  margin-top: 15px;
  line-height: 32px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.featured_block_author {
  letter-spacing: 1.6px;
  font-size: 10px;
  color: var(--red) !important;
  text-transform: uppercase;
}
.featured_block_author a {
  color: var(--red) !important;
}
.trending_block_author a {
  color: var(--grey) !important;
}
.half_block_image {
  width: 100% !important;
}
.video_block_large .video_block_overlay {
  height: 500px;
}
.video_block_large .top_block_title {
  font-size: 28px !important;
  font-weight: 700 !important;
  margin-top: 20px;
  line-height: 1.2;
}
.video_block_overlay {
  position: absolute;
  left: 0px;
  top: 0px;
  color: white;
  background: rgba(0, 0, 0, 0.2);
  z-index: 11;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#popular_stories {
  grid-column-start: 1;
  grid-column-end: 5;
}
.round_image {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50px;
  display: none;
}
.popular_block {
  margin-top: 5px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  background: white;
  border-radius: 10px; */
  /* overflow: hidden; */
}
.popular_block .featured_block_subtitle {
  font-size: 14px;
}
.popular_block_bottom {
  width: calc(100% - 30px);
  padding: 15px;
  padding-top: 5px;
  padding-left: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 0px;
}
.popular_block h3 {
  margin-top: 0px;
  font-size: 18px;
  margin-bottom: 5px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.popular_block_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.more_stories_container {
  transform: translateY(-200px);
}
.ad_home_center_lg_container {
  overflow: hidden;
  height: 200px;
  transform: translateY(-250px);
  margin-top: 10px;
  margin-bottom: 10px;
  display: none;
}
.ad_home_center_lg_container_visible {
  display: block;
  transform: translateY(0px);
}
.ad_home_center_lg {
  display: block;
}
.ad_home_center_lg_none {
  height: 0px;
  /* display: none; */
  transform: translateY(-250px);
}
.ad_home_center_lg_visible {
  transform: translateY(0px);
  animation: slide-fwd-top 1s forwards;
  transform: translateY(0px);
}
_::-webkit-full-page-media,
_:future,
:root .ad_home_center_lg_visible {
  animation: none !important;
  transform: none !important;
}
.profile_article_section {
  flex-direction: row !important;
  flex-wrap: wrap;
  max-width: 850px !important;
}
.profile_block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 380px;
  padding: 20px;
}
.half_block .image_container {
  background: var(--light);
  width: 400px;
  height: 180px;
  margin-right: 20px;
}
.half_block {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  /* height: 200px; */
}
.half_block_image {
  width: 400px;
  height: 180px;
  object-fit: cover;
}
.half_block_title {
  margin: 0 0 10px 0;
  font-weight: 700;
  font-size: 20px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.half_block_right {
  width: calc(100% - 270px);
}
.instagram-media {
  margin-left: 30px !important;
  margin-bottom: 30px !important;
  margin-top: 30px !important;
}
.signup_card {
  width: calc(100% - 10px);
  position: relative;
  height: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--darker);
  margin-top: 20px;
  border: 6px solid var(--red);
}
.signup_card_inner {
  z-index: 1;
  padding: 20px;
  padding-top: 0;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  letter-spacing: 0.06em;
  width: calc(100% - 40px);
}
.signup_card_title {
  background: var(--bg);
  transform: translateY(-52px);
  width: 200px;
  margin: 0 auto;
}
.signup_card_inner h1 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Yeseva One" !important;
  line-height: 38px;
  text-align: center;
  margin-bottom: -30px;
}
.signup_card_inner span {
  line-height: 22px;
  font-size: 16px;
  font-weight: 400;
}
.signup_card_inner form {
  padding: 0px;
  margin-bottom: 0px;
}
.signup_card_inner form * {
  margin-left: 0px;
}
.signup_card_inner input {
  width: calc(100% - 35px);
  border: 1px solid rgba(255, 255, 255, 0.66);
  font-size: 14px;
  height: 36px;
  margin-bottom: 20px;
  background: transparent;
  color: var(--darker);
  margin-top: 5px;
  padding-left: 10px;
  border: 1px solid var(--darker);
  box-sizing: border-box;
  border-radius: 1px;
  margin-left: 17px;
}
.signup_card_inner label {
  font-size: 13px;
}
.signup_card_inner button {
  width: calc(100% - 35px);
  font-size: 15px;
  color: white;
  background: var(--red);
  border: 1px solid var(--red);
  height: 36px;
  border-radius: 5px;
  margin-top: 10px;
  padding: 0;
  margin-left: 17px;
  margin-bottom: 40px;
}
.editorials {
  /* width: 100%; */
  min-height: 400px;
  /* margin-top: 30px; */
  /* grid-column-start: 5;
  grid-column-end: 5; */
}
#editorials {
  grid-template-columns: 2fr 1fr 1fr;
  position: relative;
  /* z-index: 100 !important; */
}
.Toastify__close-button--light {
  display: none !important;
}
/* .video_block_large_container h2{
  font-size: 20px;
} */
.video_block_large,
.video_block_small {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  /* box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); */
  /* background: white; */
  /* border-radius: 10px; */
  /* overflow: hidden; */
  padding: 0px;
  display: flex;
  flex-direction: column;
}
.video_block_large_container h2 {
  margin: 10px 0px 10px 0px;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.video_block_small {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.video_block_large_iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.video_block_large img {
  height: 500px;
}
iframe {
  width: 1000px;
  border: none !important;
}
.captchaContainer iframe,
.form_page iframe {
  width: 310px !important;
}
#hs-form-iframe-0 {
  max-width: 100% !important;
}
p iframe {
  max-width: 800px;
  /* height: 10vh !important; */
}
.article_vid_container iframe {
  height: 560px !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.15);
}

p iframe {
  max-height: 450px !important;
}
.video_image {
  width: 100%;
  object-fit: cover;
  margin: 0;
}
.video_image_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "a";
}
.video_play_icon {
  width: 70px;
  height: 70px;
  position: absolute;
  left: calc(50% - 35px);
  top: calc(50% - 35px);
  z-index: 1;
  color: white;
}
.video_block_small .video_image {
  width: 100%;
  height: 70px;
  min-width: 70px;
  min-height: 70px;
  background: rgba(0, 0, 0, 0.05);
  object-fit: cover;
  margin: 0;
  margin-right: 10px;
}
.footer_li_logo {
  width: 200px;
}
.footer_list {
  line-height: 1.8;
  font-weight: 400;
  text-align: right;
}
.copyright {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}
.white_button {
  color: var(--lighter);
  border-color: var(--lighter);
}
.red_button {
  color: var(--red);
  border-color: var(--red);
}
.blue_button {
  color: var(--blue);
  border-color: var(--blue);
}
.small_button {
  height: 28px;
  padding: 5px 10px 5px 10px;
  font-size: 12px;
  letter-spacing: 0.7px;
}
/* .hs-form-field{
  display: flex;
  width: calc(100% - 40px);
  flex-direction: column;
} */
.hs-form-field label span {
  font-size: 14px;
  line-height: 14px;
}
.hs-form-field input[type="text"],
.hs-form-field input[type="email"] {
  margin-left: 0px;
  width: 100%;
}
.hs-form-field input[type="checkbox"] {
  margin-left: 0px;
  height: 14px;
  width: 20px;
}
.hs-submit input[type="submit"] {
  font-size: 14px;
  background: var(--red);
  padding: 10px 20px 10px 20px;
  border-radius: 3px;
  border: none;
  color: var(--white);
}
.hs-submit input[type="submit"]:hover {
  cursor: pointer;
  opacity: 0.8;
}
.inputs-list {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
*:active,
*:focus {
  outline: none;
}
.header_search_container input {
  transition: width 0.3s;
}
.header_search_container:focus-within input {
  background: var(--white) !important;
  width: 277px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.search_dropdown {
  /* width: 200px;
  transition: width .3s;
  height: 0px;
  overflow: hidden; */
}
.header_search_container:focus-within .search_dropdown {
  display: block;
  width: calc(290px - 40px);
  height: 400px;
  background: white;
  position: absolute;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000000;
  top: 43px;
  right: 72px;
  padding: 20px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow-y: scroll;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  animation: search-width 0.3s forwards;
}
.large-search-input {
  width: 400px;
  height: 44px;
  border: none;
  border-bottom: 1px solid var(--dark);
  font-size: 24px;
  opacity: 0.7;
}

/*******************
** IFRAME RULESET **
*******************/

.scribd_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.datawrapper_iframe_embed {
  height: 650px !important;
  width: 100% !important;
}
.rumble_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.air_iframe_embed {
  height: 10vh !important;
  width: 100% !important;
}
.brightcove_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.vimeo_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.charlotteobserver_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.msnbc_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.washingtonpost_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.cnbc_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.nbc_iframe_embed {
  height: 60vh !important;
  width: 100% !important;
}
.infogram_iframe_embed {
  height: 750px !important;
  width: 100% !important;
}
.mrctv_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.carto_iframe_embed {
  height: 50vh !important;
  width: 100% !important;
}
.googlemaps_iframe_embed {
  height: 600px !important;
}
.giphy_iframe_embed {
  width: 100% !important;
}
.google_iframe_embed {
  width: 100% !important;
}
.storify_iframe_embed {
  width: 100% !important;
}
.imgur_iframe_embed {
  width: 100% !important;
}
.youtube_iframe_embed {
  width: 100% !important;
  height: 55vh !important;
}

.search_input {
  color: black;
  width: 200px;
  border: none;
  background-color: transparent;
  height: 30px;
  font-size: 14px;
  padding: 3px;
  border-radius: 4px;
  padding-left: 10px;
  opacity: 0.5;
  transition: all 0.2s cubic-bezier();
}
/* .header_search_container:focus-within .search_input{
  display: block;
  transition: all .2s;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
  background-color: white !important;
  opacity: 1;
  width: 300px;
  height: 40px;
} */
.search_dropdown {
  display: none;
}
nav {
  height: 50px;
}

nav .search_input {
  background: var(--darker);
  opacity: 1;
  color: white;
}
.nav_item:hover > .nav_item_dropdown {
  display: block;
}
.nav_item_dropdown {
  display: none;
  position: absolute;
  top: 50px;
  left: -10px;
  background: white;
  padding: 10px 15px 10px 15px;
  /* border-top: none; */
  line-height: 40px;
  min-width: 250px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000000;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  /* border-top: 1px solid rgba(0,0,0,.1); */
}
.nav_full .nav_item_dropdown {
  top: 81px;
}
.nav_item_dark:hover {
  color: var(--red) !important;
}
nav .nav_item_dropdown {
  background: black;
  color: white;
  border: none;
  margin-top: 0px;
}
.nav_small .nav_item_dropdown {
  top: 40px;
}
.mobile_nav {
  width: 90vw;
  height: 100vh;
  position: absolute;
  left: -90vw;
  top: 51px;
  background: rgba(0, 0, 0, 1);
  transition: transform 0.2s;
  padding-top: 30px;
  color: white;
}
.invert img {
  filter: invert();
}
.mobile_nav_visible {
  transform: translateX(90vw);
}
.mobile_nav .nav_item {
  height: auto;
  margin-left: 30px;
  font-size: 18px;
  margin-bottom: 20px;
  display: block;
  color: white;
}
.mobile_nav {
  display: block;
}
.mobile_nav a {
  color: white !important;
}
.mobile_nav_visible .nav_item .nav_item_dropdown {
  background: black;
  border: none;
  box-shadow: none;
  display: block;
  position: relative;
  left: 0;
  top: 0;
  color: white;
  width: 100%;
  padding: 0;
  padding-top: 20px;
}
.mobile_nav_visible .nav_item .nav_item_dropdown .nav_sub_item {
  font-size: 14px;
  line-height: 1.2;
  margin-left: 10px;
}
.mobile_nav .nav_item a {
  color: black;
}
.icon_button {
  padding: 2px;
}
.search_button {
  opacity: 0.8;
  border: none;
  background: rgba(230, 230, 230);
  border-radius: 50px;
  margin-left: -30px;
}
nav .search_button {
  background: transparent;
  color: white;
}
nav .red_button {
  border: 1px solid var(--red);
  color: var(--red);
}
.donate_button {
  border: none;
  font-size: 11px;
  text-transform: uppercase;
  transform: translateY(1px);
}
.fancy_card {
  text-align: center;
  font-weight: 400;
  padding: 10px;
}
.fancy_card_extender {
  height: 1px;
  width: auto;
  background: rgb(182, 182, 182);
}
.placeholder_block {
  width: 100%;
  min-height: 130px;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  min-height: 100px;
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 3px 10px #dedadac8;
  border-top: 7px solid var(--red);
}
.card_medium {
  width: 510px;
}
.card_large {
  width: 700px;
  padding: 30px;
}
.card_dark_shadow {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}
.card_no_top {
  border-top: none;
}
.padded_card {
  padding: 20px;
  padding-bottom: 0;
}
form {
  text-align: left;
  padding-top: 20px;
}
.form_input {
  margin-top: 15px;
}
form input {
  width: calc(100% - 60px);
  font-size: 16px;
  color: black;
  height: 32px;
  border: 1px solid #353333;
  margin-left: 30px;
  margin-top: 5px;
  margin-bottom: 10px;
}
form .grid_2 input {
  width: 330px;
}
form .grid_2 textarea {
  width: 330px;
}
form label {
  margin-left: 30px;
  margin-top: 10px;
}
input[type="file"] {
  display: flex;
  align-items: center;
  border: none;
  margin-top: 10px;
}
form textarea {
  background: white;
  width: calc(100% - 60px);
  height: 100px;
  font-size: 16px;
  color: black;
  margin-left: 30px;
  margin-top: 5px;
  border: 1px solid #353333;
}
.text_section h3 {
  margin-bottom: 0px;
  font-size: 20px;
}
.text_section p {
  line-height: 1.6;
  margin-top: 5px;
}
.border_left {
  border-left: 8px solid black;
  padding-left: 15px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.border_left h3 {
  margin-top: 0;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.border_left p {
  margin-bottom: 0;
}
.journalist_card_grid {
  grid-template-columns: 200px auto;
  grid-gap: 30px;
}
.staff_card_image {
  max-width: 200px;
  height: 200px;
  object-fit: cover;
  /* --webkit-filter: grayscale();  */
  filter: grayscale();
  -webkit-filter: grayscale();
}
.staff_card_grid {
  grid-template-columns: 200px auto;
  grid-gap: 30px;
}
.staff_card_grid h3 {
  margin: 0 0 5px 0;
  font-weight: 900;
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}
.page_title {
  border-bottom: 1px solid var(--light2);
  padding-bottom: 20px;
}
.grid_sm_gap_0 {
  row-gap: 10px;
}
#popular_stories {
  padding-top: 20px;
}
.join_img {
  max-height: 500px;
  width: 100%;
}
.form_page {
  padding-top: 40px;
  z-index: 3;
}
p h3 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
}

#tip {
  padding-top: 40px;
}
#tip form {
  margin-top: 30px !important;
}
.tip_form_set_width {
  width: 800px;
}
.banner_container {
  height: 550px;
}
.article_banner {
  max-width: 1000px;
  height: 550px;
  object-fit: cover;
  object-position: center;
  width: calc(100% - 350px);
}
article p a {
  font-weight: 600;
  color: var(--red);
}
article {
}
article p {
  max-width: 800px;
  font-size: 18px;
  font-family: Lora;
  line-height: 1.6;
  font-weight: 500;
}
.articlediv {
  max-width: 800px;
  font-size: 18px;
  font-family: Lora;
  line-height: 1.6;
  font-weight: 500;
}
.articlediv p {
  color: var(--black) !important;
  font-family: Lora !important;
  line-height: 1.6 !important;
  font-size: 18px !important;
}
.articlediv blockquote p {
  font-size: 22px !important;
  font-weight: 700;
  line-height: 1.5 !important;
}

blockquote {
  overflow: hidden;
  font-size: 24px;
  font-family: "lato";
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
  line-height: 1.2;
  max-width: calc(100vw - 60px);
  margin-top: 0;
}

blockquote p {
  font-size: 20px;
}
.header_logo {
  max-width: 240px;
}
.profile_left_img {
  width: 200px;
  height: 200px;
  margin-right: 20px;
  object-fit: cover;
  object-position: center top;
}
.article_page {
  background: var(--white);
}
.article_page h1 {
  font-family: "Lato", -apple-system, BlinkMacSystemFont;
  margin-top: 60px !important;
  max-width: 1000px;
}
.hide_lg {
  display: none;
}
/* Media rules */
/* @media screen and (max-width: 1251px) {
  .mobile_nav {
    display: none;
  }
} */

@media screen and (min-width: 600px) {
  .trending_bar_title {
    display: block !important;
  }
}
@media screen and (min-width: 750px) {
  .trending_bar_container {
    margin: 0 auto !important;
    padding: 0 30px 0 !important;
  }
}

@media screen and (max-width: 1400px) {
  .signup_card {
    /* height: 580px; */
  }
}
@media screen and (max-width: 1304px) {
  .signup_card {
    grid-row-start: 2;
    grid-column-start: 4;
    grid-column-end: 6;
    margin-top: 19px;
  }
  .hide_lg {
    display: block;
  }
  .about_nav {
    width: calc(100vw - 40px);
    overflow-x: scroll;
    padding-top: 0px;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
    padding-left: 10px;
    margin-top: 30px;
  }
  .about_nav_item {
    max-width: none;
    width: 200px;
    max-width: 400px;
    word-wrap: none;
    margin-right: 20px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.122);
  }
  .about_nav_item_active {
    border: none;
    border-bottom: 3px solid black;
  }
  .flex_sm {
    display: flex !important;
    flex-wrap: wrap;
  }
  .devo_card_article {
    width: calc(100% - 50px) !important;
    height: auto !important;
    padding: 20px !important;
    margin-top: 60px !important;
  }
  .article_page_below {
    width: calc(100%) !important;
  }
  /* .logo{
    background-image: url("/static/cro_icon_black.png") !important;
    background-size: contain;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    transform: translateY(3px);
  } */
  /* .video_block_overlay {
    height: 300px !important;
  } */
  .profile_grid {
    width: 100%;
    column-gap: 0;
  }
  .stripe {
    height: 90vh;
    object-fit: cover;
  }

  .profile_left {
    padding: 0 !important;
    width: auto !important;
  }
  .profile_left_img {
    width: 100px;
    height: 100px;
    margin-right: 20px;
    object-fit: "cover";
  }
  .profile_left_inner {
    margin-bottom: 0 !important;
  }

  #tip {
    padding-top: 20px;
  }

  .border_top_sm {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .border_top_sm .page_title {
    padding-top: 20px;
  }
  .card form .page_title {
    padding-left: 30px;
  }
  .profile_card_2 {
    width: calc(100vw - 20px);
    margin-left: 0px;
    box-shadow: none !important;
    border: none !important;
    border-top: none !important;
    margin-top: -40px;
    padding: 10px !important;
  }

  .no_border_sm {
    border: none;
  }
  .large_form {
    width: 100%;
    padding: 0;
    grid-row: 2;
  }
  .form_inner {
    /* width: 400px; */
    padding: 0;
    margin: 0 auto;
    display: block;
  }
  .form_inner input {
    margin-bottom: 25px;
    width: calc(100% - 70px) !important;
  }
  .grid_4_sm {
    grid-template-columns: auto auto auto auto auto;
    grid-gap: 30px;
    row-gap: 20px;
  }
  .grid_2_sm {
    grid-template-columns: auto auto;
    grid-gap: 30px;
  }
  .grid_1_sm {
    grid-template-columns: 1fr !important;
    grid-gap: 30px;
  }
  .grid_3 {
    row-gap: 20px;
  }
  .row_0_sm {
    grid-row: auto !important;
  }
  .join_img {
    width: 300px;
    height: 300px;
  }
  .placeholder_block {
    height: 430px;
  }

  .top_block_image {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .top_block_title {
    grid-column-start: 2;
    grid-column-end: 5;
  }
  .section_header {
    margin-bottom: 0;
  }
  .section_header_large {
    margin-bottom: 10px;
  }
  .section_header_large_more_gap_sm {
    margin-bottom: 20px;
  }
  #top_stories {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 2;
  }
  #featured_stories {
    grid-column-start: 2;
    grid-column-end: 6;
  }
  #popular_stories {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-column-end: 4;
  }
  .editorials {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-column-end: 6;
  }
  #editorials {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #editorials h2 {
    font-size: 26px;
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
  }
  nav .search_input {
    display: none;
  }
  nav .search_button {
    display: none;
  }
  .featured_block_image {
    max-height: 500;
  }
  .hide_sm {
    display: none !important;
  }
  .split_page_title h1 {
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
    font-size: 50px !important;
    letter-spacing: 1.5px !important;
    line-height: 60px !important;
  }
  #editorials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
  }
  .video_block_small .video_image {
    height: 300px !important;
    min-height: 0px;
  }
  .article_top_container_mod {
    width: calc(100vw - 60px);
  }
  .article_banner {
    width: calc(100vw - 60px) !important;
    max-width: none;
  }
  .article_main,
  .article_page_below {
    width: calc(100vw - 60px) !important;
    max-width: none !important;
  }
  .article_page_below .text_section {
    max-width: 1000px;
    margin: 0 auto;
  }
  .devo_card_article {
    max-width: 960px;
    margin: 0 auto;
  }

  p iframe,
  .article_container iframe {
    /* height: auto !important; */
    padding-bottom: 0px !important;
  }
  .article_container iframe {
    /* height: 55vh !important; */
  }

  blockquote {
    padding-bottom: 0px !important;
  }
  .profile_card_2 {
    border-top: none !important;
    width: calc(100vw - 60px);
  }
}
/* Media rules */
@media screen and (max-width: 1250px) {
  .article_subtitle {
    width: 100% !important;
  }
  .article_container h1 {
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
    font-size: 32px;
    margin-bottom: 0px;
    width: 100% !important;
  }
  .banner_container {
    height: 550px;
  }
  .article_banner {
    width: 100%;
    height: 520px;
    object-fit: cover;
  }
  .hide_xs {
    display: none;
  }
  .nav {
    display: block;

    top: 0px;
    left: 0px;
    z-index: 10000;
    position: fixed !important;
  }
  nav {
    display: block !important;
    top: 0px !important;
  }
  .signup_card {
    /* height: 580px; */
  }
  header {
    z-index: 1000;
    display: none;
  }
  .full_xs {
    width: 100% !important;
  }
  nav {
    transform: translateY(0px) !important;
    background: black !important;
    color: white !important;
    transition: transform 0.2s !important;
    position: fixed !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  }
  .nav_full {
    height: 60px;
    z-index: 100;
    top: 0px !important;
    position: fixed;
    background: black;
    color: white;
    z-index: 1000;
  }
  .nav_visible {
    position: fixed;
    top: -60px;
    transform: translateY(60px);
    z-index: 1000000;
  }
  .nav_container {
    display: none;
  }
  .nav_menu_button {
    display: block;
  }
  .main {
    margin-top: 100px;
  }
  .half_block {
    height: auto;
    margin-bottom: 10px !important;
  }
  .half_block .image_container {
    width: 100%;
    height: 200px !important;
  }
  .half_block_right {
    margin-top: 10px;
    width: 100%;
  }
  .half_block_image {
    height: 200px;
  }
  .half_block a {
    height: 250px !important;
  }
}
/* @media screen and (max-width: 1740px) {
  .trending_float{
    display: none;
  }
 } */
@media screen and (max-width: 950px) {
  .article_vid_container iframe {
    height: 25vh !important;
    width: calc(100vw - 30px) !important;
  }
  .article_container iframe {
    height: 25vh !important;
    width: calc(100vw - 30px) !important;
  }
  .grid_1_ms {
    grid-template-columns: 1fr;
  }
  .card .page_title {
    height: 30px;
    padding-top: 20px;
  }
  .banner_container {
    height: 430px;
  }
  .article_banner {
    height: 400px;
  }
  .page_background {
  }
  /* .split_page_title {
    text-align: center;
  } */
  .stripe {
    display: none;
  }

  .form_page {
    padding-top: 0px;
  }
  .form_inner {
    width: calc(100% - 30px);
  }
  body {
    margin-top: 50px !important;
  }

  .split_page_title {
    /* max-width: 90vw;
    color: black !important;
    margin-top: 30px; */
  }
  .split_page_title h1 {
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
    font-size: 40px !important;
    letter-spacing: 1.5px !important;
    line-height: 50px !important;
  }
  #tip form {
    margin-top: 20px !important;
  }
  .join_img {
    display: none;
  }
  .join_us h2 {
    margin-top: 0;
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
  }
  .section_header {
    margin: 0px !important;
    padding: 0px;
    border: none;
  }
  #editorials {
    margin-top: 0px !important;
  }
  #featured_stories {
    grid-column-start: 1;
    grid-column-end: 6;
  }
  #top_stories {
    display: grid;
    grid-column-start: 1;
    grid-column-end: 6;
  }
  #top_stories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-row-start: 4;
  }
  /* #top_stories .section_header {


    padding-left: 0px;
    margin-bottom: 0px;
  } */
  #popular_stories {
    grid-row-start: 6;
    grid-column-start: 1;
    grid-column-end: 6;
  }
  #top_stories .section_header {
    grid-column-start: 1;
    grid-column-end: 6;
  }
  .signup_card {
    grid-row-start: 5;
    grid-column-start: 2;
    grid-column-end: 5;
    margin-top: 20px;
  }
  .top_block {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-template-columns: 1fr 1fr;
  }
  .top_block_image {
    width: 200px;
    height: 200px;
    object-fit: cover;
  }
  .top_block_title {
    display: block;
    font-size: 1.17em;
    margin-block-start: 0;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
  }
  #editorials {
    grid-template-columns: 1fr 1fr;
    grid-row-start: 2;
  }
  #video_block_large_parent {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #video_block_small_parent .top_block_title {
    margin-bottom: 0;
    font-size: 14px;
  }
  #video_block_small_parent .featured_block_author {
    margin-top: 10px !important;
  }
  .nav_container {
    display: none;
  }
  .nav_menu_button {
    display: block;
  }
  #tip {
    padding-top: 0;
  }
  .page_title {
    margin-top: 0;
  }
  .article_subtitle {
    padding-left: 8px !important;
    margin-bottom: 16px !important;
  }
}
@media screen and (max-width: 750px) {
  .hide_xxs {
    display: none;
  }
  .article_top_container_mod {
    width: calc(100vw - 30px);
  }
  .article_page_below {
    width: calc(100vw - 30px) !important;
  }
  .featured_block h2 {
    font-size: 26px;
    line-height: 1.2 !important;
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
  }
  .profile_button {
    margin-top: 10px;
  }
  .article_info_top {
    margin-bottom: 20px;
    margin-top: 0;
  }
  .banner_container {
    height: 280px;
  }
  .article_banner {
    height: 280px;
  }
  .article_banner {
  }
  article p blockquote {
    width: 100%;
    text-align: left;
    float: left;
    padding: 0;
  }
  .staff_card_grid {
    column-gap: 20px;
  }
  .staff_card_grid p {
    display: none;
  }
  .flex_col_sm {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .staff_card_button {
    margin-bottom: 10px;
  }
  .staff_card_image {
    margin-right: 10px;
  }
  #tip .card {
    width: 100%;
    margin: 0;
  }
  #tip form input,
  #tip form textarea {
    width: calc(100% - 70px);
  }
  input[type="radio"] {
    width: 20px !important;
  }
  body {
    margin-top: 80px;
  }
  .grid_3_home {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
  .main_container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .grid_1_xs {
    grid-template-columns: 1fr;
  }

  .popular_block_img {
    height: 300px;
  }

  #popular_stories {
    grid-row-start: 6;
    padding-top: 20px;
  }
  #top_stories {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-start: 4;
    margin-top: 20px;
  }
  .top_block {
    grid-template-columns: 1fr;
  }
  .top_block_image {
    height: 200px;
  }
  .signup_card {
    grid-row-start: 5;
    grid-column-start: 1;
    grid-column-end: 6;
    margin-top: 20px;
  }
  #video_block_large_parent {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  #editorials {
    grid-template-columns: 1fr;
    grid-row-start: 2;
  }
  .editorials {
    margin-top: 0px;
  }
  .profile_article_section {
    flex-direction: column !important;
  }
  .profile_block {
    padding: 0;
    margin-top: 40px;
  }
  .half_block {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .half_block a {
    width: 100%;
  }
  .half_block_image {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .main_container_article {
    margin-top: 70px !important;
  }
  .article_subtitle {
    font-size: 16px !important;
  }
  .articlediv p {
    font-size: 15px;
  }
  .article_vid_container {
    margin-bottom: 20px !important;
  }
  .article_tag_share_container {
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    margin-top: 25px;
  }
  .article_share_bottom_text {
    margin-top: 20px;
  }
  .staff_card_grid {
    grid-template-columns: 1fr !important;
    column-gap: 0px;
    row-gap: 10px;
  }
  .staff_card_image {
    max-width: none;
    height: auto;
    max-height: 250px;
    object-position: top;
  }
  .staff_card_button_container {
    margin-top: 10px !important;
  }
  .devo_card_article {
    margin-top: 10px !important;
  }
  .text_section {
    margin-bottom: 10px !important;
  }
  .devo_card_article h2,
  .devo_card_article h3 {
    font-size: 22px !important;
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
  }
  .devo_card_article svg {
    width: 20px;
    height: 20px;
  }
  .mobile_nav_visible {
    width: 100vw;
    overflow-y: scroll;
    z-index: 1000000000000;
    height: calc(100vh - 81px);
  }
  .article_container h1 {
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
    font-size: 22px !important;
    line-height: 1.3 !important;
  }
  .half_block a,
  /* .video_block_overlay, */
  .popular_block_img,
  .video_block_small .video_image {
    height: 220px !important;
  }
  .half_block_title {
    font-size: 18px;
    line-height: 1.3 !important;
  }
  .featured_block_subtitle {
    font-size: 14px;
  }
  .no_mg_sm {
    margin: 0px !important;
    margin-top: 5px !important;
  }
  .ad_home_center_sm {
    margin-top: 15px !important;
    margin-bottom: 5px !important;
  }
  .featured_block_image {
    height: 220px !important;
  }
  .article_subtitle {
    padding-left: 8px !important;
    margin-bottom: 16px !important;
  }
  .article_banner {
    width: calc(100vw - 30px) !important;
    max-height: 270px;
    margin-top: 10px;
  }
  .scribd_iframe_embed {
    height: 350px !important;
  }
  .staff_card_image {
    width: 250px;
    height: 250px;
    margin: 0 auto;
  }
  .staff_card_grid {
    text-align: center;
  }
  .staff_card_button_container {
    margin-top: 20px !important;
    justify-content: center;
  }
}

@media screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: calc(100vw - 50px) !important;
    margin: 25px !important;
  }
  .Toastify__toast {
    border: 3px solid var(--red);
    border-radius: 8px !important;
  }
}

@media print {
  header,
  nav,
  footer {
    display: none;
  }
  .article_page,
  .article_main {
    margin-top: 0px;
    display: block;
  }
  .article_page p {
    display: block;
  }
  .article_share_bottom_text,
  .article_tags_bottom_text {
    display: none;
  }
  .article_page_below {
    display: none;
  }
  .article_page button {
    display: none;
  }
  .article_page h1 {
    margin-top: 0px !important;
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
  }
  .hide_print {
    display: none;
  }
  .article_banner {
    max-width: none !important;
    width: 100% !important;
  }
  .article_main,
  .article_main div {
    max-width: none !important;
    width: 100% !important;
  }
  .article_main p {
    width: 100% !important;
    max-width: none;
    /* margin-left: 5%; */
  }
  .a2a_kit {
    display: none;
  }
  .progress_tracker {
    display: none;
  }
  .main_container_article {
    margin-top: 25px !important;
  }
  .article_page h1 {
    font-size: 36px;
    font-family: "Lato", -apple-system, BlinkMacSystemFont;
  }
}
body[dark="true"] {
  --nord-dark: rgb(30, 34, 43);
  /* Deep Background */
  --nord-dark5: rgb(38, 43, 54);
  /* Less Deep Background */
  --nord-dark1: #2e3440;
  /* Background */
  --nord-dark2: #3b4252;
  /* Elevated background */
  --nord-dark3: #434c5e;
  /* Target elements */
  --nord-dark4: #4c566a;
  /* Indent, wrap, hr */
  --nord-light1: #d8dee9;
  /* Text */
  --nord-light2: #e5e9f0;
  /* Subtle UI text */
  --nord-light3: #eceff4;
  /* Elevated text */
  --nord-accent1: #88c0d0;
  /* Primary UI elements */
  --nord-accent2: #8fbcbb;
  /* Accented UI elements */
  --nord-accent3: #81a1c1;
  /* Highly accented UI elements */
  --nord-accent5: #5e81ac;
  /* Highest accented UI elements */
  --nord-error: #bf616a;
  /* Errors */
  --nord-danger: #d08770;
  /* Dangerous */
  --nord-warning: #ebcb8b;
  /* Warnings */
  --nord-success: #a3be8c;
  /* Success */
  --nord-uncommon: #b48ead;
  /* Uncommon functionality */
  background: var(--nord-dark5);
  color: var(--nord-light1);
}
body[dark="true"] header {
  background: var(--nord-dark5);
}
body[dark="true"] footer {
  background: var(--nord-dark5);
}
body[dark="true"] .header_top {
  border-bottom: 1px solid var(--nord-dark2);
}
body[dark="true"] .header_bottom {
  border-bottom: 1px solid var(--nord-dark2);
  border-top: 1px solid var(--nord-dark2);
  margin-top: -1px;
}
body[dark="true"] a {
  color: var(--nord-light1);
}
body[dark="true"] .section_header {
  border-left-color: var(--red);
}
body[dark="true"] button,
body[dark="true"] .red_button {
  border-color: var(--nord-accent1);
  color: var(--nord-accent1);
}
body[dark="true"] .search_input {
  background: var(--nord-dark1);
}
body[dark="true"] .li_logo {
  -webkit-filter: invert();
}
body[dark="true"] .search_button {
  background: var(--nord-dark1);
  opacity: 0.3;
}
body[dark="true"] .donate_button {
  color: var(--red);
}
body[dark="true"] .nav_item_dropdown {
  background: var(--nord-dark5);
  border-color: var(--nord-dark1);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}
body[dark="true"] .card {
  background: var(--nord-dark2);
  border-color: var(--nord-dark1);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
}
body[dark="true"] .signup_card {
  border-color: var(--nord-dark1);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}
.spinner {
  animation: spin 1.5s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slide-fwd-top {
  0% {
    transform: translateZ(-100px) translateY(-200px);
  }
  100% {
    transform: translateZ(160px) translateY(0px);
  }
}
@keyframes slide-fwd-top-2 {
  0% {
    transform: translateZ(-100px) translateY(-200px);
  }
  100% {
    transform: translateZ(160px) translateY(30px);
  }
}

@keyframes slide-in-right {
  0% {
    transform: translateX(30px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes search-width {
  0% {
    width: 173px;
  }
  100% {
    width: 250px;
  }
}

.btn-o a {
  background: transparent !important;
  border: 1px solid var(--red) !important;
}

input.hs-button.primary.large,
input.hs-button.primary,
input.hs-button {
  font-family: "Lato";
  height: 42px;
  width: calc(100% - 35px) !important;
  font-size: 16px;
  background: var(--red) !important;
}

p a:visited {
  color: var(--red) !important;
}
/* img[alt] {  
  visibility: collapse;
} */

.mantine-Radio-label,
.mantine-MultiSelect-label,
.mantine-FileInput-label {
  margin-left: 0;
}
.media_appearances_menu {
  border-radius: 2px;
  border: 2px solid white;
  -webkit-box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.48);
  box-shadow: 3px 3px 10px 1px rgba(0, 0, 0, 0.48);
}

.hover-box-shadow:hover {
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}
