:root {
  --text-color: #0F0F0F;
  --bg-color: #FFF;
  --adv-bg-color: #23404E;
  --desktop-max-width: 608px;
}

* {
  box-sizing: border-box;
  transition: 0.3s all ease-out;
}

*:focus {
  outline: none;
}

html,
body {
  scroll-behavior: smooth;
}

html {
  font-size: 20px;
}

/* 
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
  font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
*/

body {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  padding: 0;
  margin: 0;
  color: var(--text-color);
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  overflow-x: hidden;
}

div {
  width: 100%;
}

.container_over_skin {
  width: 100%;
  z-index: 5;
  background-color: var(--bg-color);
  /* overflow-x: hidden; */
}

.container_over_skin>* {
  z-index: 5;
  background-color: var(--bg-color);
}

.shrinkable,
.backgroundAdv {
  background-color: var(--bg-color) !important;
  position: relative;
  z-index: 1;
}

/* TOP BAR */

#header-fisso {
  z-index: 99999 !important;
}

.top-bar {
  height: 50px !important;
}

.faN {
  width: 30px !important;
  height: 30px !important;
}


/* ----------------------- SCROLLYTELLING ---------------------- */
.scrolly {
  position: relative;
}

.scrolly_cnt {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 0;
}


.header_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* pointer-events: none; */
  opacity: 1;
  transition: opacity 0.3s ease;
}

.header_overlay.hidden {
  opacity: 0;
}

.steps {
  position: relative;
  z-index: 1;
}

.step {
  height: 170vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.step:nth-child(0),
.step:nth-child(1) {
  height: 100vh;
}

.step_content {
  border-top: 2px solid #B49F64;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 0;
  max-width: 672px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
  text-align: center;
  font-family: "Sole24Sans Number";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4rem;
}

.step.is_active .step_content {
  transform: scale(1.02);
}

/* Hide step content for the first step since header overlay handles it */
.step[data-slide="0"] .step_content {
  display: none;
}

.step_content_title {
  color: var(--text-color);
  text-align: center;
  font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
  font-size: 2.7rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}


/* --- Legenda scrollytelling --- */
.legend_cnt {
  width: 260px;
  color: #000;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 50;

  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;

  --legend-collapsed-offset: 0px;
}

.legend_cnt.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(var(--legend-collapsed-offset));
}

.legend_cnt.is-visible.is-expanded {
  transform: translateY(0);
}

.legend {
  background: #b49f65;
  padding: 20px 10px;
}

.legend_title {
  padding: 8px 20px 4px 10px;
  font-size: 1rem;
  font-weight: bold;
  width: fit-content;
  background: #b49f65;
  cursor: pointer;
}


.legend_title::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
  background-image: url("../img/legenda-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  transition: transform 0.35s ease;
  transform-origin: center;
}

.legend_cnt.is-expanded .legend_title::before {
  transform: rotate(180deg);
}

.legend_border {
  border-top: 3px solid #000;
}

.legend_item {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  font-size: .8rem;
}

.legend_spacer {
  margin-top: 10px;
  border-bottom: 1px solid #000;
  margin-bottom: 10px;
}


.legend_line {
  width: 30px;
  height: 5px;
  margin-right: 10px;
}

.legend_line.yellow {
  background: #f2e400;
}

.legend_line.pink {
  background: #e78bb3;
}

.legend_line.orange {
  background: #f39c34;
}


.legend_circle {
  border-radius: 50%;
  display: inlegend_line-block;
  margin-right: 12px;
  border: 1px solid #000;
}


.legend_circle_small {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  margin-right: 20px;
}


.legend_circle_large {
  width: 28px;
  height: 28px;
}

.blue {
  background: #39a9db;
  border: 1px solid #000;
}

.green {
  background: #6bbf8a;
}

.yellowc {
  background: #f2e400;
}

.purple {
  background: #c96ca9;
}

.red {
  background: #f21c4f;
}

.beige {
  background: #c2aa6a;
}



/* HEADER */


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

.occhiello {
  color: #FFF;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  max-width: 146px;
  padding: 8px 10px;
  background-color: #0D1427;
}

h1 {
  width: 100%;
  font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 800;
  font-size: 4.6rem;
  color: #FFFFFF;
  margin-block-start: 0;
  margin-block-end: 0.1em;
  text-align: center;
}

h1 span {
  background: #B49F64;
  padding: 10px 20px;
  line-height: 6.6rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}



.sommario {
  font-family: "sole_headline", Georgia, Times, "Times New Roman", Serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #0D1427;
  text-align: center;
}

.firma_data {
  margin-top: 20px;
  width: max-content;
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: normal;
  color: #0D1427;
  text-align: center;
}

.firma {
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}

.data {
  color: #6a5c33;
}

.firma_data svg {
  margin-left: 3px;
  margin-right: 3px;
}

/* SCHERMATA DUE COLONNE CON MPU */
.column_right {
  width: 320px;
  background-color: #EBE6D6;
  position: absolute;
  top: 0;
  right: -320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.box_adv_mpu_top {
  position: sticky;
  top: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* SECTIONS */

section {
  width: 100%;
  display: flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}


.box_text_cnt {
  margin: auto;
  width: 100%;
  max-width: var(--desktop-max-width);
  padding: 0;
  position: relative;
}



#second_section {
  margin-top: 50px;
}


.box_text {
  width: 100%;
}

#second_section .box_text {
  padding-right: 10px;
}


.box_text p {
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4rem;
  text-align: left;
}

.box_text p.author {
  font-style: italic;
}


p a:link {
  color: #B49F64;
  font-weight: 600;
  text-decoration: none;
}

p a:visited {
  color: #B49F64;
  font-weight: 600;
  text-decoration: none;
}

p a:hover {
  color: #6a5c33;
  font-weight: 600;
  text-decoration: underline;
}

p a:active {
  color: #6a5c33;
  font-weight: 600;
  text-decoration: underline;
}

.box_text ul {
  padding-inline-start: 35px;
  list-style: none;
}

.box_text li {
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4rem;
  text-align: left;
  padding-bottom: 15px;
  position: relative;
}

.box_text li::before {
  content: url('../img/list-icon.svg');
  position: absolute;
  top: 5px;
  left: -35px;
  width: 12px;
  height: 12px;
}

.section_title {
  width: 100%;
  padding: 20px 0 10px;
}



.section_title h2 {
  color: var(--text-color);
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  text-align: left;
  margin: auto;
}


.box_chart_margins {
  width: 100%;
  margin: 20px auto;
}

.box_chart_inner {
  width: 100%;
  max-width: var(--desktop-max-width);
  margin: auto;
  position: relative;
}

.box_chart_inner_medium {
  max-width: 700px;
}

.box_chart_inner_large {
  max-width: 1024px;
}

.box_chart_inner_extra_large {
  max-width: 1356px;
}



.chart_subtitle {
  max-width: var(--desktop-max-width);
  padding: 10px 0 0;
  margin: auto;
  color: var(--text-color);
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: .9rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: left;
}

.chart_title {
  max-width: var(--desktop-max-width);
  padding: 10px 0;
  margin: auto;
}

.chart_title h3 {
  color: var(--text-color);
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  width: 100%;
  text-align: left;
  margin: auto;
  margin-block-start: 0;
}

.chart_abstract {
  max-width: var(--desktop-max-width);
  color: var(--text-color);
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: left;
  padding: 0 0 20px;
  margin: auto;
}


.box_chart {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto;
}


.chart_source {
  /*   max-width: var(--desktop-max-width); */
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: .8rem;
  line-height: normal;
  color: var(--text-color);
  opacity: .5;
  text-align: left;
  margin: auto;
  padding: 20px 0;
}

.delimiter {
  text-align: center;
  padding: 20px 0;
}

/* STICKERS */

.box_stickers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 30px;
}

.stickers_row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
}

.stickers_row:last-of-type {
  margin-top: 15px;
}

.sticker_column {
  width: calc(50% - 7.5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sticker_column_left {
  margin-right: 7.5px;
  margin-top: 15px;
}

.sticker_column_right {
  margin-top: 15px;
  margin-left: 7.5px;
}

.sticker_column_center {
  width: 100%;
}

.sticker_item {
  border-radius: 10px;
  border: 1.5px solid #FFF;
  height: 200px;
}

.double_sticker {
  height: 200px;
}


.sticker_img {
  text-align: center;
  margin: 20px auto 10px;
}

.sticker_text {
  color: #FFF;
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: .8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  padding: 0 20px 20px;
}

/* VIDEO SWIPER */

.swiper_video {
  width: 100%;
  height: 100%;
}

.swiper_slide_video {
  display: block
}

.swiper_pagination_video .swiper-pagination-bullet {
  background-color: #ffffffbd;
}

.swiper_pagination_video .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFF;
}

.swiper_slide_video {
  position: relative;
  cursor: pointer;
}


.swiper_slide_video video::-webkit-media-controls {
  display: none !important;
}

.swiper_slide_video video::-webkit-media-controls-enclosure {
  display: none !important;
}

.swiper_slide_video video {
  width: 100%;
  height: auto;
}

.play_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}

.play_button .arrow {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  margin-left: 5px;
  transition: all 0.3s ease;
}

.play_button.playing .arrow {
  width: 8px;
  /* Width of a single vertical line */
  height: 20px;
  /* Height of the lines */
  border: none;
  background-color: #fff;
  position: relative;
  margin-left: -12px;
  /* Adjust margin to center the two lines */
}

.play_button.playing .arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12px;
  /* Distance between the two vertical lines */
  width: 8px;
  /* Width of the second vertical line */
  height: 20px;
  background-color: #fff;
}

.swiper_video .caption {
  padding-top: 0px !important;
}

/* FOTO */

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

.box_chart_inner img {
  width: inherit;
  height: auto;
}

.caption {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: .8rem;
  line-height: normal;
  color: var(--text-color);
  opacity: .5;
  text-align: left;
  margin: auto;
  padding: 0;
  padding-top: 10px;
}

.photo_1_cnt {
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo_1_cnt img {
  width: 100%;
  height: auto;
}

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

.photo_2_cnt {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.photo_2_cnt:last-of-type {
  margin-bottom: 0;
}

.photo_2_cnt div {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo_2_cnt div:first-child {
  padding-right: 10px;
}

.photo_2_cnt div:last-child {
  padding-left: 10px;
}

.photo_2_cnt div img {
  width: 100%;
  height: auto;
}

.photo_3_cnt {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.photo_3_cnt div {
  width: 33%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo_3_cnt div:first-child {
  margin-right: 10px;
}

.photo_3_cnt div:nth-child(2) {
  margin-right: 10px;
}

.photo_3_cnt div img {
  width: 100%;
  height: auto;
}


/*--- FOOTER ----*/

aside {
  background-color: #B49F64;
  margin-top: 50px;
}

#backtop {
  position: fixed;
  left: calc(50vw + 450px);
  bottom: 0;
  width: 50px;
  z-index: 10;
  text-align: right;
  display: block;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-color: transparent;
}

body:not(.backgroundAdv) #backtop {
  right: 10px;
}

#backtop img {
  cursor: pointer;
  width: 30px;
  max-width: 30px;
  height: auto;
  margin-right: 10px;
  padding-bottom: 10px;
}

.box_credits {
  width: 100%;
  max-width: var(--desktop-max-width);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding: 32px 0;
}

.box_credits .delimiter {
  width: 100%;
  margin: 32px auto;
  border-top: 1px solid var(--text-color);
  padding: 0;
  display: none;
}

.box_credits .crediti {
  display: flex;
  flex-direction: column;
}

.box_credits h4 {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: normal;
  text-align: left;
  color: var(--text-color);
  font-weight: 400;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  width: 100%;
}


.box_credits h5 {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-size: .8rem;
  line-height: normal;
  text-align: left;
  color: var(--text-color);
  font-weight: 400;
  padding: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  width: 100%;
}

footer {
  z-index: 20;
}

#footer_div {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  line-height: normal;
  background-color: #19171a;
  color: #a19e9e;
  font-size: .7rem;
  text-transform: none;
  padding: 30px 100px;
  text-align: center;
}

.mobile {
  display: none;
}


/* ADV */

#adv-MaxTicker {
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  background-color: var(--adv-bg-color) !important;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

#adv-MaxTicker div {
  width: inherit;
}

#div-gpt-ad-MaxTicker>div {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: auto;
}

#bordo_adv {
  /* padding: 10px 0 10px 10px; */
  padding: 0;
}

#ad-Mpu_Top {
  display: flex;
  justify-content: center;
  width: 320px;
}

#Mpu_Top {
  text-align: center;
  width: fit-content;
}

#ad-Mpu_Top div {
  width: inherit !important;
}

#div-gpt-ad-MPU_Top>div {
  display: flex !important;
  justify-content: center;
}

.advertising {
  display: flex;
  justify-content: center;
}

.backgroundAdv {
  background-attachment: fixed !important;
}

.video-aspect-ratio {
  aspect-ratio: 16 / 9;
}

.box-virgolette {
  width: 100%;
  padding: 24px;
  opacity: 1;
  border-radius: 15px;
  background-color: rgba(50, 61, 82, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}

.box-virgolette-immagine {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: -70px;
  margin-bottom: -50px;
  width: fit-content;
}

.box-virgolette-immagine-cerchio {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #E4E1DB;
}

.box-virgolette-immagine-cerchio img {
  width: 130%;
  transform: translate(-10%, -7%);
}


.box-virgolette-immagine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 23px;
  background-image: url('../img/virgolette.svg');
}

.box-virgolette-nome {
  font-family: "SoleSans", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 28px;
  text-transform: uppercase;
  text-align: center;
}

.box-virgolette-testo {
  font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: center;
}


@media only screen and (max-width: 1540px) {

  h1 {
    font-size: 4.3rem;
    line-height: normal;
  }

  .firma_data span {
    font-size: 1rem !important;
    line-height: normal !important;
  }
}

@media only screen and (min-width: 1021px) {
  #mpu_top_mobile {
    display: none;
  }
}


@media only screen and (max-width: 1020px) {
  .mpu_top_mobile {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    background-color: #EBE6D6 !important;
  }
}



@media only screen and (min-width: 821px) and (max-width: 1540px) {


  /* .box_chart_inner {
    margin: initial;
    margin-left: 50px;
  } */


  /* .box_chart_inner_large,
  .box_chart_inner_extra_large {
    max-width: calc(100% - 50px);
  } */

  .box_chart_inner_medium {
    max-width: 700px;
  }

  /* .chart_subtitle,
  .chart_title,
  .chart_abstract,
  .chart_source {
    margin: initial;
  } */

  /* .box_text_cnt {
    margin-left: 50px;
  }

  .box_credits {
    margin-left: 50px;
  } */
}

@media only screen and (min-width: 481px) and (max-width: 820px) {

  #second_section .box_text {
    padding-right: 10px;
  }

  .section_title h2 {
    font-size: 1.6rem;
  }

  .column_right {
    max-width: 0;
    display: none;
  }

  .box_chart_inner {
    max-width: 100%;
  }

  .step_content {
    max-width: calc(100% - 20px);
    padding: 1.2rem;
  }

  .step_content_title {
    font-size: 2.4rem;
  }

}

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

  #adv-MaxTicker {
    padding: 20px 0;
  }

  #bordo_adv {
    padding: 10px 0;
  }

  #mpu_top_mobile {
    overflow: hidden;
  }

  #ad-Mpu_Top {
    margin-bottom: 10px;
  }

  #adv_middle {
    margin: 40px auto;
    text-align: center;
  }



  .header_cnt {
    padding-left: 15px;
    padding-right: 15px;
    left: 0;
    max-width: 100%;
  }

  h1 {
    margin-block-start: 30px;
    margin-block-end: 30px;
    font-size: 2.1rem;
  }

  h1 span {
    line-height: 4rem;
  }

  .sommario {
    font-size: 1.1rem;
    line-height: 1.3rem;
  }

  .firma_data {
    font-size: 1rem;
    line-height: nromal;
  }

  .step {
    height: 120vh;
  }

  .step:nth-child(0),
  .step:nth-child(1) {
    height: 60vh;
  }

  .step_content {
    max-width: calc(100% - 20px);
    padding: 1.2rem;
  }

  .step_content_title {
    font-size: 2rem;
  }

  .legend_cnt.is-visible.is-expanded {
    width: 100%;
    height: calc(100vh - 50px);
    top: 50px;
    bottom: auto;
    display: flex;
    flex-direction: column;
  }

  .legend {
    flex: 1;
    overflow-y: auto;
  }


  aside,
  section {
    padding-left: 15px;
    padding-right: 15px;
  }

  section#first_section {
    padding-left: 0;
    padding-right: 0;
  }

  .column_right {
    width: 0;
    height: 0;
  }

  .section_title h2 {
    font-size: 1.6rem;
  }

  .box_text_cnt {
    max-width: 100%;
  }

  .box_text {
    max-width: 100%;
  }

  #second_section .box_text {
    padding-right: 0;
  }

  .chart_subtitle,
  .chart_title,
  .chart_abstract,
  .chart_source {
    max-width: 100%;
  }

  .chart_title h3 {
    font-size: 1.5rem;
  }

  .box_chart_inner {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .box_chart_inner_medium,
  .box_chart_inner_large,
  .box_chart_inner_extra_large {
    max-width: 100%;
  }


  .box_credits {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }


  #footer_div {
    padding: 30px 10px;
  }

  #backtop {
    left: initial;
    right: 3px;
    bottom: 3px;
  }

  #backtop img {
    margin-right: 0;
    padding-bottom: 0;
  }

  .mobile {
    display: initial;
  }

  .desktop {
    display: none;
  }
}



/* @media only screen and (min-width: 1110px) and (max-width: 1540px) {}

@media only screen and (min-width: 1020px) and (max-width: 1540px) {
  body.backgroundAdv .column_right {}
}

@media only screen and (min-width: 1541px) and (max-width: 1920px) {

  body.backgroundAdv .column_right {

  }
} */