html {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'SpaceGrotesk', sans-serif;
  font-size: 17px;
  line-height: 1.45em;
  font-weight: 300;
  overflow-x: hidden;
  background-color: #012E33;
  color: #F5FCFA;
}
@media only screen and (max-width: 780px) {
  body {
    font-size: 16px;
  }
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../assets/fonts/SpaceGrotesk-VariableFont_wght.ttf");
}
p {
  opacity: 0.9;
}
a {
  text-decoration: none;
  color: #5AAF73;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 2em 0 1em 0;
}
h1 {
  font-size: 56px;
  line-height: 1em;
}
h2 {
  font-size: 30px;
  width: calc(100% + 60px);
  margin-left: -30px;
}
h3 {
  font-size: 23px;
}
.capitalize {
  text-transform: capitalize;
}
@media only screen and (max-width: 780px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 27px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
}
.moneynotmoney_header {
  display: flex;
  flex-direction: row;
}
.moneynotmoney_header .logo {
  width: 120px;
  display: block;
  margin: 24px;
}
.moneynotmoney_header .logo img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(112deg) brightness(110%) contrast(106%);
}
.moneynotmoney_header .main_menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin: 40px 0 0 30px;
}
.moneynotmoney_header .main_menu > li {
  position: relative;
}
.moneynotmoney_header .main_menu > li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
}
.moneynotmoney_header .main_menu > li a:hover {
  color: #6ED88C;
}
.moneynotmoney_header .main_menu > li a.active {
  color: #6ED88C;
  font-weight: 500;
}
.moneynotmoney_header .main_menu > li > ul {
  display: none;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  position: absolute;
  top: 40px;
  left: -20px;
  width: 500px;
  z-index: 3;
  column-count: 2;
  column-gap: 20px;
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 60px;
}
.moneynotmoney_header .main_menu > li > ul:before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
  position: absolute;
  top: -10px;
  left: 75px;
}
.moneynotmoney_header .main_menu > li > ul > li {
  margin-bottom: 20px;
  break-inside: avoid-column;
}
.moneynotmoney_header .main_menu > li > ul > li a {
  color: #012E33;
  font-weight: 600;
}
.moneynotmoney_header .main_menu > li > ul > li ul {
  padding: 0 0 0 15px;
  column-count: 1;
  column-gap: 0;
  -moz-column-count: 1;
  -moz-column-gap: 0;
  -webkit-column-count: 1;
  -webkit-column-gap: 0;
}
.moneynotmoney_header .main_menu > li > ul > li ul li a {
  font-weight: 300;
  font-size: 13px;
}
.moneynotmoney_header .main_menu > li:hover > ul {
  display: inline-block;
}
.moneynotmoney_header nav {
  position: absolute;
  right: 100px;
  top: -10px;
  z-index: 12;
  /* And let's slide it in from the left */
}
.moneynotmoney_header nav #burger {
  display: block;
  position: fixed;
  top: 33px;
  right: 40px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}
.moneynotmoney_header nav #burger a {
  text-decoration: none;
  color: #232323;
  transition: color 0.3s ease;
}
.moneynotmoney_header nav #burger input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
.moneynotmoney_header nav #burger input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
}
.moneynotmoney_header nav #burger input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}
.moneynotmoney_header nav #burger input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.moneynotmoney_header nav #burger span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #fff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.moneynotmoney_header nav #burger span:first-child {
  transform-origin: 0% 0%;
}
.moneynotmoney_header nav #burger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
.moneynotmoney_header nav #menu {
  position: fixed;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  margin: -60px 0 0 0;
  padding: 85px 50px 0 50px;
  background: #5AAF73;
  list-style-type: none;
  right: -110%;
  overflow-y: scroll;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.moneynotmoney_header nav #menu::-webkit-scrollbar {
  width: 10px;
}
.moneynotmoney_header nav #menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}
.moneynotmoney_header nav #menu::-webkit-scrollbar-thumb {
  background: #012E33;
}
.moneynotmoney_header nav #menu::-webkit-scrollbar-thumb:hover {
  background: #012E33;
}
.moneynotmoney_header nav #menu li {
  margin: 5px 0;
}
.moneynotmoney_header nav #menu li a {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}
.moneynotmoney_header nav #menu li a:hover {
  color: #6ED88C;
}
.moneynotmoney_header nav #menu li a.active {
  color: #6ED88C;
  font-weight: 500;
}
.moneynotmoney_header nav #menu .menu_subtitle {
  font-size: 19px;
  font-weight: 700;
  border-bottom: 2px dashed;
  padding-bottom: 8px;
  margin: 15px 0 10px 0;
  text-transform: uppercase;
}
.moneynotmoney_header nav #menu ul {
  padding-left: 20px;
  list-style: square;
}
.moneynotmoney_header nav #menu ul > li {
  position: relative;
}
.moneynotmoney_header nav #menu ul > li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
}
.moneynotmoney_header nav #menu ul > li a:hover {
  color: #6ED88C;
}
.moneynotmoney_header nav #menu ul > li a.active {
  color: #6ED88C;
  font-weight: 500;
}
.moneynotmoney_header nav #menu ul > li > ul {
  list-style: none;
}
.moneynotmoney_header nav #menu ul > li > ul > li {
  break-inside: avoid-column;
}
.moneynotmoney_header nav #menu ul > li > ul > li a {
  color: #fff;
  font-weight: 300;
}
.moneynotmoney_header nav #menu ul > li > ul > li ul {
  padding: 0 0 0 15px;
}
.moneynotmoney_header nav #menu ul > li > ul > li ul li a {
  font-weight: 300;
  font-size: 13px;
}
.moneynotmoney_header nav #burger input:checked ~ ul {
  right: 0;
}
@media only screen and (max-width: 780px) {
  .moneynotmoney_header .logo {
    width: 100px;
    display: block;
    margin: 20px 0 0 24px;
  }
  .moneynotmoney_header .main_menu {
    display: none;
  }
  .moneynotmoney_header nav {
    position: absolute;
    right: 75px;
    top: -23px;
  }
  .moneynotmoney_header nav #burger {
    top: 25px;
    right: 24px;
  }
  .moneynotmoney_header nav #menu {
    margin: -52px 0 0 0;
    padding: 75px 30px 0 30px;
  }
}
footer {
  padding: 30px 30px 15px 30px;
  margin-top: 90px;
  text-align: center;
  background: rgba(110, 216, 140, 0.7);
  background: linear-gradient(180deg, rgba(110, 216, 140, 0) 0%, rgba(110, 216, 140, 0.7) 100%);
  min-height: 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: end;
}
footer .categories {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 90px auto;
  text-align: left;
}
footer .categories ul {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 3;
  column-gap: 100px;
  -moz-column-count: 3;
  -moz-column-gap: 100px;
  -webkit-column-count: 3;
  -webkit-column-gap: 100px;
}
footer .categories ul li {
  -webkit-column-break-inside: avoid;
}
footer .categories ul li a {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
}
footer .categories ul li ul {
  column-count: 1;
  column-gap: 0;
  -moz-column-count: 1;
  -moz-column-gap: 0;
  -webkit-column-count: 1;
  -webkit-column-gap: 0;
  break-inside: avoid-column;
  padding-left: 15px;
  margin-bottom: 20px;
}
footer .categories ul li ul li a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #5AAF73;
}
footer .categories ul li ul li ul {
  padding-left: 10px;
  margin-bottom: 0;
}
footer .categories ul li ul li ul li a {
  color: #5AAF73;
  font-weight: 300;
}
footer .bottom {
  display: block;
  width: 100%;
  font-size: 14px;
  opacity: 0.75;
}
footer .bottom .credits svg {
  width: 31px;
  height: auto;
  margin-bottom: -1.5px;
  margin-left: 1px;
}
footer .bottom .credits svg path {
  fill: #fff;
}
@media only screen and (max-width: 780px) {
  footer .categories {
    margin: 40px auto 50px auto;
  }
  footer .categories ul {
    column-count: 1;
    column-gap: 0;
    -moz-column-count: 1;
    -moz-column-gap: 0;
    -webkit-column-count: 1;
    -webkit-column-gap: 0;
    break-inside: avoid-column;
  }
  footer .bottom {
    font-size: 12px;
  }
}
.cta_button {
  background-color: #6ED88C;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 6px;
}
.cta_button:hover {
  background-color: #5AAF73;
}
.cta_button.xs {
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 2px 10px;
}
.cta_link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.cta_link:after {
  content: '>';
  margin-left: 5px;
}
.cta_link:hover {
  font-weight: 700;
}
.title_n_subtitle {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto 40px auto;
}
.title_n_subtitle h2 {
  width: 100%;
  max-width: 540px;
  margin-left: 0;
  text-align: center;
  font-size: 40px;
  line-height: 1em;
  margin: 0 auto 20px auto;
}
.title_n_subtitle .section_subtitle {
  font-size: 17px;
  line-height: 1.45em;
  opacity: 0.85;
}
@media only screen and (max-width: 780px) {
  .title_n_subtitle h2 {
    font-size: 30px;
  }
  .title_n_subtitle .section_subtitle {
    font-size: 15px;
    line-height: 1.2em;
  }
}
.table {
  width: calc(100% + 60px);
  margin-top: 40px;
  margin-left: -30px;
  font-size: 14px;
}
.table .table_head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-weight: bold;
}
.table .table_row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.table .table_row:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
}
.table .table_cell.align_right {
  text-align: right;
}
.table .table_cell.year {
  width: 40px;
}
.table .table_cell.sentence {
  font-size: 11px;
  opacity: 0.5;
}
.table .table_cell.price {
  width: 45px;
}
@media only screen and (max-width: 780px) {
  .table {
    width: calc(100% + 50px);
    margin-left: -20px;
    overflow-x: scroll;
  }
  .table .table_body {
    min-width: 900px;
  }
}
.product_header {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
  align-items: flex-end;
  padding-bottom: 50px;
}
.product_header .product_cutout {
  width: 50%;
  text-align: center;
}
.product_header .product_cutout img {
  width: auto;
  height: auto;
  max-width: 380px;
  max-height: 380px;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.25));
}
.product_header .right {
  width: calc(50% - 60px);
}
.product_header .right h1 {
  margin: 0;
  color: #fff;
}
.product_header .right .category {
  margin-top: 25px;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 15px;
}
.product_header .right .category a {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 90px;
  padding: 4px 13px;
  line-height: 1em;
}
.product_header .right .category a:hover {
  background-color: #ffffff;
  color: #5AAF73;
}
.product_header:after {
  content: "";
  width: 100%;
  height: 247px;
  background: rgba(110, 216, 140, 0.7);
  background: linear-gradient(180deg, rgba(110, 216, 140, 0) 0%, rgba(110, 216, 140, 0.7) 100%);
  border-radius: 12px;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 780px) {
  .product_header {
    margin: 40px auto 15px auto;
    flex-direction: column;
    padding-bottom: 35px;
  }
  .product_header .product_cutout {
    width: 100%;
  }
  .product_header .product_cutout img {
    max-width: 100%;
    max-height: 40vh;
    filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.25));
  }
  .product_header .right {
    width: 100%;
  }
  .product_header .right h1 {
    font-size: 30px;
    text-align: center;
    margin-top: 20px;
  }
  .product_header .right .category {
    margin-top: 20px;
    justify-content: center;
  }
  .product_header .right .category .tag {
    display: none;
  }
  .product_header:after {
    width: calc(100% + 40px);
    left: -20px;
  }
}
.article_content {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 40px auto;
}
.article_content.with_sidebar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.article_content.with_sidebar .main_column {
  width: calc(100% - 436px);
  margin-right: 70px;
  margin-left: 30px;
}
.article_content.with_sidebar .main_column img {
  width: 100%;
  height: auto;
}
.article_content.with_sidebar .sidebar {
  width: 336px;
}
.article_content.with_sidebar .sidebar .widget:first-of-type h3 {
  margin-top: 15px;
}
@media only screen and (max-width: 780px) {
  .article_content {
    margin: 15px auto 40px auto;
  }
  .article_content.with_sidebar {
    flex-direction: column;
  }
  .article_content.with_sidebar .main_column {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .sidebar.mobile {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
ol.toc-list {
  border-radius: 12px;
  padding: 30px 30px 30px 50px;
  width: calc(100% + 60px);
  margin-left: -30px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.15);
  color: #5AAF73;
  font-weight: bold;
}
ol.toc-list a {
  font-weight: 300;
}
ol.toc-list ol {
  list-style-type: lower-alpha;
}
ol.toc-list li {
  line-height: 1.3em;
  margin: 8px 0;
}
@media only screen and (max-width: 780px) {
  ol.toc-list {
    padding: 24px 22px 22px 43px;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  ol.toc-list ol {
    padding-left: 22px;
  }
}
.faq_block {
  border-bottom: 1px solid #444444;
  padding: 15px 0;
  box-sizing: border-box;
  position: relative;
}
.faq_block:last-child {
  margin-bottom: 0;
}
.faq_block .question {
  width: calc(100% - 40px);
  display: grid;
  font-size: 17px;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
}
.faq_block .question:after {
  content: "+";
  position: absolute;
  right: 0;
}
.faq_block .answer {
  height: 0;
  overflow: hidden;
}
.faq_block input[type="checkbox"] {
  display: none;
}
.faq_block input[type="checkbox"]:checked ~ .question:after {
  content: "-";
}
.faq_block input[type="checkbox"]:checked ~ .answer {
  height: auto;
}
.chart {
  width: calc(100% + 60px);
  height: 350px;
  border-radius: 12px;
  padding: 30px 30px 10px 15px;
  margin-left: -30px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.1);
}
.chart.wide {
  height: 550px;
}
@media only screen and (max-width: 780px) {
  .chart {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 20px 5px 0 5px;
    height: 340px;
  }
  .chart.wide {
    height: 340px;
  }
}
.country-inflation-page .all_chart_elements {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}
.country-inflation-page .all_chart_elements .chart {
  height: 440px;
}
.country-inflation-page #main .article_content .sidebar .widget .cta_link {
  display: block;
  margin-top: 10px;
}
@media only screen and (max-width: 780px) {
  .country-inflation-page .all_chart_elements {
    margin: 0 auto 20px auto;
  }
  .country-inflation-page .all_chart_elements .chart {
    width: calc(100% - 20px);
    margin-left: 10px;
    padding: 20px 5px 0 5px;
    height: 340px;
  }
  .country-inflation-page .all_chart_elements .chart.wide {
    height: 550px;
  }
  .country-inflation-page .table .table_body {
    min-width: 490px;
  }
}
.home #main {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
}
.home #main h1 {
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 100;
  opacity: 0.6;
}
.home #main .subtitle {
  font-size: 50px;
  line-height: 1em;
  text-align: center;
  font-weight: bold;
  max-width: 820px;
  margin: 0 auto;
}
.home #main .inflation_banner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 90px;
}
.home #main .inflation_banner .left {
  width: 50%;
}
.home #main .inflation_banner .left img {
  width: calc(100% - 60px);
  height: auto;
}
.home #main .inflation_banner .right {
  width: 50%;
  font-size: 17px;
}
.home #main .inflation_banner .right .big {
  font-size: 36px;
  font-weight: bold;
  line-height: 1em;
  margin-bottom: 20px;
}
.home #main .inflation_banner .right .normal {
  opacity: 0.85;
}
.home #main .inflation_banner .right .green {
  color: #6ED88C;
}
.home #main .inflation_banner .right .cta_button {
  margin-top: 35px;
}
.home #main .featured_block {
  text-align: center;
  margin-bottom: 80px;
}
.home #main .featured_block .view_more {
  margin-top: 50px;
}
@media only screen and (max-width: 780px) {
  .home #main h1 {
    font-size: 16px;
  }
  .home #main .subtitle {
    font-size: 34px;
  }
  .home #main .inflation_banner {
    flex-direction: column;
    margin-bottom: 70px;
  }
  .home #main .inflation_banner .left {
    width: 100%;
    text-align: center;
  }
  .home #main .inflation_banner .right {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }
  .home #main .inflation_banner .right .big {
    font-size: 26px;
    text-align: center;
    margin-bottom: 15px;
  }
  .home #main .featured_block {
    text-align: center;
  }
}
.about #main {
  width: calc(100% - 60px);
  max-width: 960px;
  margin: 0 auto;
}
.about #main h1 {
  font-size: 50px;
  line-height: 1em;
  text-align: center;
  font-weight: bold;
  max-width: 820px;
  margin: 45px auto 30px auto;
}
.about #main .subtitle {
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 100;
  opacity: 0.6;
  max-width: 760px;
  margin: 20px auto;
}
.about #main blockquote {
  font-weight: bold;
  font-style: italic;
}
@media only screen and (max-width: 780px) {
  .about #main .subtitle {
    font-size: 16px;
  }
  .about #main .h1 {
    font-size: 34px;
  }
}
.single_category #main {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.single_category #main .category_header {
  text-align: center;
  margin-bottom: 50px;
}
.single_category #main .category_header h1 {
  margin-bottom: 16px;
}
.single_category #main .category_header .country_sentence {
  font-size: 19px;
  opacity: 0.6;
}
.single_category #main .category_header .country_sentence .highlight {
  color: #6ED88C;
  font-weight: bold;
}
.single_category #main .anchor_menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.single_category #main .anchor_menu a {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  padding: 5px 20px;
  margin: 0 10px;
}
.single_category #main .anchor_menu a:hover {
  background-color: rgba(255, 255, 255, 0.65);
  color: #012E33;
}
.single_category #main .related_category h2 {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 90px auto 40px auto;
  line-height: 1.1em;
}
.products_grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
}
.products_grid .product_card {
  width: calc(33.333% - 10px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 20px 30px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.15);
  align-items: center;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.products_grid .product_card .left {
  width: 35%;
  min-height: 160px;
  text-align: center;
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.products_grid .product_card .left img {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.15));
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products_grid .product_card .right {
  width: calc(65% - 15px);
  margin-left: 15px;
  text-align: center;
  z-index: 9;
}
.products_grid .product_card .right h3 {
  font-size: 17px;
  line-height: 0.9em;
  margin: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 300;
}
.products_grid .product_card .right .price_evolution_snapshot {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 15px;
}
.products_grid .product_card .right .price_evolution_snapshot .col {
  margin-left: 10px;
}
.products_grid .product_card .right .price_evolution_snapshot .col .year {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1em;
}
.products_grid .product_card .right .price_evolution_snapshot .col .price {
  font-size: 13px;
  color: #012E33;
}
.products_grid .product_card .right .price_evolution_snapshot .col .price.red {
  color: #AA0E0E;
}
.products_grid .product_card .right .price_evolution_snapshot .col .price.red:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-bottom: 5px solid #AA0E0E;
  display: inline-block;
  margin: 0px 2px 3px 0;
}
.products_grid .product_card .right .price_evolution_snapshot .col .price.green {
  color: #012E33;
}
.products_grid .product_card .right .price_evolution_snapshot .col .price.green:before {
  content: '';
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid #012E33;
  display: inline-block;
  margin: 0px 2px 3px 0;
}
.products_grid .product_card .right .price_evolution_snapshot .col.latest {
  margin-left: 0;
  width: 100%;
  margin-bottom: 20px;
}
.products_grid .product_card .right .price_evolution_snapshot .col.latest .price {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
.products_grid .product_card .right .price_evolution_snapshot .col.latest .units {
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.5;
  opacity: 1;
  margin-top: 2px;
}
.products_grid .product_card .right .price_evolution_snapshot .col.latest .units .preposition {
  opacity: 0.4;
}
.products_grid .product_card .right .price_evolution_snapshot .col.latest .units strong {
  opacity: 0.7;
  font-weight: 400;
}
.products_grid .product_card .right .price_evolution_snapshot .col:nth-child(2) {
  margin-left: 0;
}
.products_grid .product_card .right .cta_button {
  margin-top: 0;
  background-color: transparent;
  color: #012E33;
  font-weight: 300;
  line-height: 1em;
  padding: 4px 8px;
  font-size: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.products_grid .product_card .right .cta_button:hover {
  background-color: #ffffff !important;
}
.products_grid .product_card:hover .left img {
  transform: scale(1.3);
}
.products_grid .product_card:hover .right .cta_button {
  background-color: rgba(255, 255, 255, 0.65);
}
.products_grid .product_card .chart {
  background-color: transparent;
  padding: 0;
  border: none;
  width: 100%;
  max-width: none;
  height: 20%;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 78px;
  z-index: 3;
  border-radius: 12px;
}
.products_grid .product_card .chart .bottom_fill {
  height: 78px;
  border-radius: 0 0 12px 12px;
  background: rgba(110, 216, 140, 0.7);
  background: linear-gradient(0deg, rgba(110, 216, 140, 0.1) 0%, rgba(110, 216, 140, 0.7) 100%);
}
.products_grid .product_card.vertical {
  flex-direction: column;
}
.products_grid .product_card.vertical .left {
  width: 100%;
}
.products_grid .product_card.vertical .left img {
  max-width: 70%;
}
.products_grid .product_card.vertical .right {
  width: 100%;
  margin: 0;
}
.products_grid .product_card.vertical .chart {
  bottom: 125px;
}
.products_grid .product_card.vertical .chart .bottom_fill {
  height: 125px;
}
.products_grid.one_col .product_card {
  padding: 20px;
  width: 100%;
}
.products_grid.one_col .product_card .left {
  min-height: 0;
}
.products_grid.one_col .product_card .left img {
  max-height: 100px;
}
.products_grid.one_col .product_card .right h3 {
  font-size: 14px;
  margin: 0;
}
.products_grid.one_col .product_card .right .price_evolution_snapshot .col.latest {
  margin-bottom: 3px;
}
.products_grid.two_col .product_card {
  padding: 20px;
  width: calc(50% - 7px);
}
.products_grid.four_col .product_card {
  padding: 20px;
  width: calc(25% - 11px);
}
@media only screen and (max-width: 780px) {
  .products_grid {
    flex-direction: column;
  }
  .products_grid .product_card {
    width: 100%!important;
  }
  .products_grid .product_card.horizontal {
    padding: 15px 20px;
  }
  .products_grid .product_card.horizontal .left {
    width: 30%;
  }
  .products_grid .product_card.horizontal .left img {
    max-height: 120px;
  }
  .products_grid .product_card.horizontal .right {
    width: calc(70% - 15px);
  }
}
.todays-value-calculator .result {
  width: calc(100% - 60px);
  max-width: 790px;
  margin: 0 auto;
  text-align: center;
}
.todays-value-calculator .result h1 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 100;
  opacity: 0.6;
}
.todays-value-calculator .result .answer {
  font-size: 50px;
  line-height: 1em;
  text-align: center;
  font-weight: bold;
}
.todays-value-calculator form {
  width: calc(100% - 60px);
  max-width: 790px;
  margin: 60px auto 40px auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.todays-value-calculator form label {
  font-size: 30px;
  font-weight: 100;
  opacity: 0.6;
}
.todays-value-calculator form #amount,
.todays-value-calculator form #year {
  font-size: 30px;
  padding: 10px;
  min-width: 150px;
  max-width: 220px;
  text-align: center;
  margin: 0 10px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  color: #fff;
}
.todays-value-calculator form button[type="submit"] {
  box-shadow: none;
  border: none;
  margin-left: 10px;
  padding: 20px 24px;
  cursor: pointer;
}
.todays-value-calculator .explanation {
  width: calc(100% - 60px);
  max-width: 790px;
  margin: 100px auto 40px auto;
}
.todays-value-calculator .prices_in_year {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .todays-value-calculator .result h1 {
    font-size: 16px;
  }
  .todays-value-calculator .result .answer {
    font-size: 34px;
  }
  .todays-value-calculator form .section {
    position: relative;
    margin: 5px 0;
  }
  .todays-value-calculator form .section label {
    position: absolute;
    top: 14px;
    left: -30px;
  }
  .todays-value-calculator form button[type="submit"] {
    width: 170px;
    margin: 5px 0 0 0;
  }
  .todays-value-calculator .explanation {
    margin: 50px auto 40px auto;
  }
}
