@charset "UTF-8";
/*###################### Html5 css Reset #############################*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: inherit;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*###################### Animation #############################*/
@-webkit-keyframes imageAnimation {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes imageAnimation {
  0% {
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1.4);
  }
}
@-webkit-keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/*########### Header Main ###############################################*/
header.headerMain {
  z-index: 99998;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #2C2D87;
  transition: height ease-in-out 350ms;
}
header.headerMain .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 980px;
  height: 100%;
  margin: 0 auto;
}
header.headerMain .inner .logo {
  display: block;
  width: 200px;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/03/lk-logo-esteso-w.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  transition: height ease-in-out 350ms;
  transform-origin: top right;
}
header.headerMain .userlogin {
  position: absolute;
  top: 0;
  left: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: all ease-in-out 350ms;
}
header.headerMain .userlogin .userAvatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.headerMain .userlogin .userAvatar .avatar-inner {
  width: 40px;
  height: 40px;
}
header.headerMain .userlogin .userAvatar .avatar-inner img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
header.headerMain .userlogin .avatarLabel {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  padding-right: 20px;
}
header.headerMain .userlogin .cartBTN {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
header.headerMain .userlogin .cartBTN .cartBTN-inner {
  width: 40px;
  height: 40px;
  background-image: url("../img/cart.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
header.headerMain .userlogin .userAvatar .avatar-inner {
  background-image: url("../img/userlogin.svg") !important;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
.navSmall header.headerMain .userlogin {
  height: 50px;
}
.navSmall header.headerMain .userlogin .userAvatar {
  width: 60px;
  height: 50px;
}
.navSmall header.headerMain .userlogin .userAvatar .avatar-inner {
  width: 26px;
  height: 26px;
}
.navSmall header.headerMain .userlogin .cartBTN {
  width: 60px;
  height: 50px;
}
.navSmall header.headerMain .userlogin .cartBTN .cartBTN-inner {
  width: 26px;
  height: 26px;
}
@media only screen and (max-width: 479px) {
  header.headerMain .userlogin .userAvatar {
    width: 50px !important;
  }
  header.headerMain .userlogin .cartBTN {
    width: 50px !important;
  }
  header.headerMain .userlogin .avatarLabel {
    display: none;
  }
}
@media only screen and (max-width: 639px) {
  header.headerMain .userlogin {
    height: 50px;
  }
  header.headerMain .userlogin .userAvatar {
    width: 60px;
    height: 50px;
  }
  header.headerMain .userlogin .userAvatar .avatar-inner {
    width: 26px;
    height: 26px;
  }
  header.headerMain .userlogin .cartBTN {
    width: 60px;
    height: 50px;
  }
  header.headerMain .userlogin .cartBTN .cartBTN-inner {
    width: 26px;
    height: 26px;
  }
}
header.headerMain .navMobileBtn {
  z-index: 9997;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: all ease-in-out 350ms;
}
header.headerMain .navMobileBtn span {
  display: block;
  width: 32px;
  height: 3px;
  margin: 5px 0;
  background-color: #fff;
  border-radius: 1px;
  transition: opacity ease-in-out 350ms, transform ease-in-out 350ms;
}

header.headerLK {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  height: 50px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
}
header.headerLK .logo {
  position: absolute;
  display: block;
  width: 200px;
  height: 20px;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/09/linkiestag2x.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.minisite-has-partner header.headerLK {
  font-size: 16px;
  align-items: baseline;
  padding-top: 14px;
}
.minisite-has-partner header.headerLK .logo {
  width: 120px;
  position: static;
}

.minisite header.headerMain {
  top: 50px;
  background-color: var(--minisitecolor);
}
.minisite header.headerMain .logo {
  width: 240px;
}

.navMobile {
  z-index: 9998;
  position: fixed;
}
.navMobile .inner {
  height: 100%;
  margin: 0 auto;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .navMobile .inner .row + .row {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .navMobile .inner .row + .row {
    margin-top: 20px;
  }
}
.navMobile > div {
  display: none;
  position: fixed;
  top: 50px;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f5f5f5;
  overflow: auto;
}
.minisite .navMobile > div {
  top: 80px;
}
.navMobile .row .row-inner > header h2 {
  left: 20px;
}
.navMobile .search .screen-reader-text {
  display: none;
}
.navMobile .search .search-field {
  width: calc(100% - 80px);
  font-size: 1.6em;
  padding: 10px;
  -webkit-appearance: none;
  border: 1px solid #ddd;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}
.navMobile .search .search-submit {
  position: relative;
  width: 70px;
  height: 70px;
  text-indent: -10000px;
  background-color: transparent;
  border: none;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/09/search.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}
.navMobile .trend {
  display: flex;
  flex-wrap: wrap;
}
.navMobile .trend a {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  border: 1px dotted #bbb;
  border-radius: 10px;
  margin: 0 6px 6px 0;
}
.navMobile .call2action {
  display: flex;
}
.navMobile .call2action a {
  flex: 1;
  display: flex;
  background-color: #f5f5f5;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1em;
}
.navMobile .call2action a:hover {
  background-color: gainsboro;
  color: #fff;
}
@media only screen and (max-width: 559px) {
  .navMobile .call2action {
    flex-flow: column;
  }
  .navMobile .call2action a {
    padding: 30px;
  }
  .navMobile .call2action a + a {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 560px) {
  .navMobile .call2action {
    flex-flow: row;
  }
  .navMobile .call2action a {
    height: 100px;
  }
  .navMobile .call2action a + a {
    margin-left: 10px;
  }
}
.navMobile .section-list {
  display: flex;
  flex-wrap: wrap;
}
.navMobile .section-list a {
  display: block;
  width: 100%;
  padding: 10px;
}
.navMobile .section-list a figure {
  height: 160px;
  background-color: #ddd;
}
.navMobile .section-list a figure .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: luminosity;
  transition: all ease-in-out 0.6s;
}
.navMobile .section-list a header {
  background-color: #f5f5f5;
  padding: 20px 10px 10px;
}
.navMobile .section-list a header h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #393939;
}
.navMobile .section-list a:hover figure .image {
  mix-blend-mode: normal;
}
.navMobile .section-list a:hover header {
  background-color: #c4c4c4;
}
@media only screen and (min-width: 560px) {
  .navMobile .section-list a {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .navMobile .section-list a {
    width: 25%;
  }
}
@media only screen and (min-width: 1024px) {
  .navMobile .section-list a {
    width: 20%;
  }
}
.navMobile .minisite-list a {
  height: 100px;
}
.navMobile .minisite-list a figure {
  height: 100%;
  padding: 30px;
}
.navMobile .minisite-list a figure .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.navMobile .minisite-list a:not(:hover) figure {
  background-color: #bbb !important;
}
@media only screen and (max-width: 767px) {
  .navMobile .minisite-list a {
    display: block;
    width: 100%;
  }
  .navMobile .minisite-list a + a {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .navMobile .minisite-list {
    display: flex;
  }
  .navMobile .minisite-list a {
    flex: 1;
  }
  .navMobile .minisite-list a + a {
    margin-left: 10px;
  }
}
.navMobile .social-list {
  display: flex;
}
.navMobile .social-list a {
  width: 40px;
  height: 40px;
  font-size: 2em;
  color: #bbb;
}
.navMobile .social-list a:hover {
  color: #a2a2a2;
}
.navMobile .social-list a + a {
  margin-left: 10px;
}

.navOpen .navMobile > div {
  display: block;
  transition: all ease-in 3s;
}

.navOpen .navMobileBtn span:nth-child(1) {
  transform: translateY(7px) rotateZ(-45deg);
}

.navOpen .navMobileBtn span:nth-child(2) {
  opacity: 0;
}

.navOpen .navMobileBtn span:nth-child(3) {
  transform: translateY(-9px) rotateZ(45deg);
}

@media only screen and (max-width: 639px) {
  body {
    padding-top: 50px;
  }
  body.minisite {
    padding-top: 100px;
  }
  header.headerMain {
    height: 50px;
  }
  header.headerMain .logo {
    margin-right: 10px;
    height: 40px;
  }
  header.headerMain .navMobileBtn {
    height: 50px;
    padding: 10px 24px;
  }
}
@media only screen and (min-width: 640px) {
  body {
    padding-top: 80px;
  }
  body.minisite {
    padding-top: 130px;
  }
  header.headerMain {
    height: 80px;
  }
  header.headerMain .logo {
    height: 70px;
  }
  header.headerMain .navMobileBtn {
    height: 80px;
    padding: 24px 24px;
  }
  .navMobile > div {
    top: 80px;
  }
  .minisite .navMobile > div {
    top: 130px;
  }
}
@media only screen and (max-width: 1023px) {
  header.headerMain .inner .logo {
    margin-right: 20px;
  }
}
@media only screen and (min-width: 1248px) {
  header.headerMain .inner {
    max-width: 1200px;
  }
}
.navSmall header.headerMain {
  height: 50px;
}
.navSmall header.headerMain .navMobileBtn {
  height: 50px;
  padding: 10px 24px;
}
.navSmall header.headerMain .inner .logo {
  height: 40px;
}

.navSmall .navMobile > div {
  top: 50px;
}

article header .article-title {
  display: block;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 600;
  margin-bottom: 10px;
}
article header .article-title .article-subhead {
  font-weight: 700;
  color: #B72519;
}
article header .article-title .article-subhead:after {
  content: " | ";
  color: #393939;
  font-weight: 300;
}
article header .article-byline {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
}
article header .article-byline .article-byline-item {
  display: inline;
}
article header .article-byline .article-byline-item:first-child:before {
  content: "di ";
  font-weight: 400;
}
article header .article-byline .article-byline-item + .article-byline-item:before {
  content: ", ";
}
article header .article-summary {
  font-family: "Frank Ruhl Libre", serif;
  line-height: 1.2em;
}
article.live > header:before {
  content: "Live";
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(270deg, #961B18, #E52823, #B72519);
  background-size: 1000% 1000%;
  -webkit-animation: gradientAnimation 30s ease infinite;
          animation: gradientAnimation 30s ease infinite;
}

.minisite .article-subhead {
  color: var(--minisitecolor) !important;
}

.minisite.milano .megaHp .article-subhead {
  display: inline-block;
  color: #fff !important;
  background-color: var(--minisitecolor);
  margin-right: 10px;
}
.minisite.milano .megaHp .article-subhead:after {
  display: none;
}

.breakingHp {
  background-color: #B72519;
  color: #fff;
}
.breakingHp article header {
  display: flex;
  align-items: center;
}
.breakingHp article header a {
  color: #fff;
}
.breakingHp article header .article-time {
  display: none;
  flex-shrink: 0;
  width: 80px;
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: -2px;
  padding: 10px;
  text-align: center;
}
.breakingHp article header .article-title {
  font-size: 1.6em;
  margin: 0;
  padding: 10px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.7);
}
.breakingHp article header:before {
  background: none;
  margin-bottom: 0;
}

.minisite .breakingHp {
  background-color: #393939;
}

.specialTopHp article header {
  font-size: 1.2rem;
}
@media only screen and (max-width: 639px) {
  .specialTopHp article + article {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
}
@media only screen and (min-width: 640px) {
  .specialTopHp {
    display: flex;
  }
  .specialTopHp article {
    flex: 1;
  }
  .specialTopHp article header .article-subhead {
    display: block;
    font-size: 1.2em;
    border-bottom: 1px dotted #bbb;
    padding-bottom: 4px;
    margin-bottom: 10px;
  }
  .specialTopHp article header .article-subhead:after {
    content: "";
  }
  .specialTopHp article + article {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
  }
}

.megaHp article {
  position: relative;
}
.megaHp article figure {
  height: 100%;
}
.megaHp article figure a {
  display: block;
  height: 100%;
}
.megaHp article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.megaHp article header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  color: #fff;
}
.megaHp article header a {
  color: #fff;
}
.megaHp article header .article-title {
  font-size: 2em;
}
.megaHp article header .article-title .article-subhead:after {
  color: #fff !important;
}
@media only screen and (max-width: 479px) {
  .megaHp article header .article-summary {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .megaHp article {
    height: 400px;
  }
  .megaHp article header {
    padding: 80px 20px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .megaHp article {
    height: 500px;
  }
  .megaHp article header {
    padding: 80px 30% 30px 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .megaHp article {
    height: 600px;
  }
  .megaHp article header {
    padding: 120px 50% 30px 20px;
  }
}

.mainHp {
  margin-bottom: 30px;
}
.mainHp article figure {
  height: 300px;
  margin: 0 0 20px 0;
}
.mainHp article figure a {
  display: block;
  height: 100%;
}
.mainHp article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mainHp article header .article-title {
  font-size: 1.6em;
}
@media only screen and (min-width: 1024px) {
  .mainHp article {
    display: flex;
  }
  .mainHp article figure {
    flex: 2.4;
    height: 400px;
    margin: 0 20px 0 0;
  }
  .mainHp article header {
    flex: 1;
  }
}

.fullHp article figure {
  width: 100%;
  height: 300px;
  margin-bottom: 20px;
}
.fullHp article figure a {
  display: block;
  height: 100%;
}
.fullHp article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fullHp article header .article-title {
  font-size: 1.3em;
}

.nativeHp {
  margin-top: 20px;
}
.nativeHp article figure {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}
.nativeHp article figure a {
  display: block;
  height: 100%;
}
.nativeHp article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.nativeHp article header .article-title {
  font-size: 1.2em;
}
.nativeHp article header .article-byline {
  margin-bottom: 10px;
}
.nativeHp article header .article-summary {
  font-size: 0.9em;
}

.fullHpAlt article figure {
  height: 300px;
  background-color: #393939;
}
.fullHpAlt article figure a {
  display: block;
  height: 100%;
}
.fullHpAlt article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.fullHpAlt article header .article-title {
  font-size: 1.3em;
}
@media only screen and (max-width: 767px) {
  .fullHpAlt article figure {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .fullHpAlt article {
    display: flex;
  }
  .fullHpAlt article figure {
    width: 54%;
    height: 300px;
    margin-right: 20px;
  }
  .fullHpAlt article header {
    width: calc(46% - 20px);
  }
}

.column {
  margin-bottom: 50px;
}
.column .column-header .column-avatar {
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #2C2D87;
}
.europea .column .column-header .column-avatar {
  border-color: #FFAD00;
}
.gastronomika .column .column-header .column-avatar {
  border-color: #D7264F;
}
.greenkiesta .column .column-header .column-avatar {
  border-color: #34AB52;
}
.il-lavoro-che-verra .column .column-header .column-avatar {
  border-color: #08c6d2;
}
.column .column-header h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 4px;
}
.column .column-header .column-byline {
  font-weight: 700;
  font-size: 14px;
}
.column .column-header .column-byline:before {
  content: "di ";
  font-weight: 400;
}
.column article header .article-title {
  font-size: 1.2em;
}
.column article header .article-byline {
  display: none;
}
@media only screen and (max-width: 767px) {
  .column {
    display: flex;
    align-items: center;
  }
  .column .column-header {
    order: 2;
    flex: 2;
  }
  .column article {
    order: 1;
    flex: 3;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #eee;
  }
}
@media only screen and (min-width: 768px) {
  .column .column-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}

.column-V2 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  background-color: #f5f5f5;
  padding: 10px;
}
.column-V2 .column-header {
  order: 2;
  flex: 2;
}
.column-V2 .column-header a .column-avatar {
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: 2px solid #2C2D87;
}
.europea .column-V2 .column-header a .column-avatar {
  border-color: #FFAD00;
}
.gastronomika .column-V2 .column-header a .column-avatar {
  border-color: #D7264F;
}
.greenkiesta .column-V2 .column-header a .column-avatar {
  border-color: #34AB52;
}
.il-lavoro-che-verra .column-V2 .column-header a .column-avatar {
  border-color: #08c6d2;
}
.column-V2 .column-header a h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 4px;
}
.column-V2 .column-header a .column-byline {
  font-weight: 700;
  font-size: 14px;
}
.column-V2 .column-header a .column-byline:before {
  content: "di ";
  font-weight: 400;
}
@media only screen and (min-width: 560px) {
  .column-V2 .column-header a {
    display: grid;
    grid-template-columns: 60px 1fr;
  }
  .column-V2 .column-header a .column-avatar {
    grid-column: span 1;
    grid-row: span 2;
  }
  .column-V2 .column-header a h3 {
    grid-column: 2/span 1;
    grid-row: span 1;
    align-self: end;
  }
  .column-V2 .column-header a .column-byline {
    grid-column: 2/span 1;
    grid-row: span 1;
  }
}
.column-V2 article {
  order: 1;
  flex: 3;
  margin-right: 10px;
  padding-right: 10px;
  border-right: 1px solid #eee;
  text-align: right;
}
.column-V2 article header .article-title {
  font-size: 1.4em;
  margin: 0;
}
.column-V2 article header .article-byline {
  display: none;
}
@media only screen and (min-width: 560px) {
  .column-V2 {
    padding: 20px;
  }
  .column-V2 article {
    margin-right: 20px;
    padding-right: 20px;
  }
}
.blogHp {
  display: flex;
}
.blogHp .blogHp-item {
  text-align: center;
}
.blogHp .blogHp-item .leading-avatar {
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid #2C2D87;
}
.europea .blogHp .blogHp-item .leading-avatar {
  border-color: #FFAD00;
}
.gastronomika .blogHp .blogHp-item .leading-avatar {
  border-color: #D7264F;
}
.greenkiesta .blogHp .blogHp-item .leading-avatar {
  border-color: #34AB52;
}
.il-lavoro-che-verra .blogHp .blogHp-item .leading-avatar {
  border-color: #08c6d2;
}
.blogHp .blogHp-item h2, .blogHp .blogHp-item h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 4px;
}
.blogHp .blogHp-item .leading-byline {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 14px;
}
.blogHp .blogHp-item .leading-byline::before {
  content: "di ";
  font-weight: 400;
}
.blogHp .blogHp-item article header .article-title {
  font-size: 1.1em;
}
.blogHp .blogHp-item article header .article-title .article-subhead {
  display: none;
}
.blogHp .blogHp-item article header .article-byline {
  display: none;
}
.blogHp .blogHp-item article header .article-summary {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .blogHp {
    flex-wrap: wrap;
  }
  .blogHp .blogHp-item {
    width: 50%;
    padding: 10px;
  }
  .blogHp .blogHp-item:nth-child(even) {
    border-left: 1px solid #eee;
  }
  .blogHp .blogHp-item:nth-child(1), .blogHp .blogHp-item:nth-child(2) {
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 1024px) {
  .blogHp .blogHp-item {
    flex: 1;
  }
  .blogHp .blogHp-item + .blogHp-item {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
  }
}
.blogHp.blogList {
  display: block;
}
.blogHp.blogList .blogContainer {
  display: flex;
  flex-wrap: wrap;
}
.blogHp.blogList .blogHp-item {
  flex: 1 0 50%;
  border: none;
  margin: 0 !important;
  padding: 0 !important;
}
.blogHp.blogList .blogHp-item a {
  display: block;
  height: calc(100% - 20px);
  margin: 10px;
  padding: 10px;
  background-color: #f5f5f5;
}
.blogHp.blogList .blogHp-item a:hover {
  background-color: gainsboro;
}
.blogHp.blogList .blogHp-item a .leading-byline {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  .blogHp.blogList .blogHp-item {
    flex: 1 0 25%;
  }
}

.sign .sign-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.sign .sign-item .sign-avatar {
  display: block;
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #2C2D87;
}
.europea .sign .sign-item .sign-avatar {
  border-color: #FFAD00;
}
.gastronomika .sign .sign-item .sign-avatar {
  border-color: #D7264F;
}
.greenkiesta .sign .sign-item .sign-avatar {
  border-color: #34AB52;
}
.il-lavoro-che-verra .sign .sign-item .sign-avatar {
  border-color: #08c6d2;
}
.sign .sign-item .sign-byline {
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.sign .sign-item .sign-content article header .article-byline {
  display: none;
}
.sign .sign-item .sign-content article header .article-summary {
  display: none;
}
.sign .sign-item .sign-content article header .article-title .article-subhead {
  display: none;
}
.sign .sign-item .sign-content article:nth-child(2) header .article-title, .sign .sign-item .sign-content article:nth-child(3) header .article-title {
  font-size: 0.9em;
  border-left: 5px solid #eee;
  padding-left: 20px;
}
.sign .sign-item .sign-content article + article {
  margin-top: 20px;
}

.rankList {
  counter-reset: myRank;
}
.rankList article {
  display: flex;
}
.rankList article figure {
  display: none;
}
.rankList article header {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #eee;
}
.rankList article header .article-summary {
  display: none;
}
.rankList article:before {
  content: counter(myRank);
  counter-increment: myRank;
  display: inline-block;
  width: 30px;
  height: 100%;
  font-size: 3em;
  line-height: 100px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
}
.rankList article + article {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
@media only screen and (min-width: 1024px) {
  .row-container-main .rankList {
    display: flex;
  }
  .row-container-main .rankList article {
    display: block;
    flex: 1;
  }
  .row-container-main .rankList article header {
    margin: 0;
    padding: 0;
    border: none;
  }
  .row-container-main .rankList article:before {
    height: auto;
  }
  .row-container-main .rankList article + article {
    margin: 0 0 10px;
    padding: 0 0 0 10px;
    border: none;
    border-left: 1px solid #eee;
  }
}

.brandedList {
  display: flex;
  flex-wrap: wrap;
}
.brandedList article figure {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
}
.brandedList article figure a {
  display: block;
  height: 100%;
}
.brandedList article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.brandedList article header .article-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
}
.brandedList article header .article-byline {
  display: none;
}
.brandedList article header .article-summary {
  display: none;
}
@media only screen and (max-width: 767px) {
  .brandedList article {
    width: 50%;
    padding: 0 10px 10px;
    border-top: 1px solid #eee;
    padding-top: 10px;
  }
  .brandedList article:nth-child(odd) {
    border-right: 1px solid #eee;
  }
  .brandedList article:nth-child(1), .brandedList article:nth-child(2) {
    border-top: none;
  }
}
@media only screen and (min-width: 768px) {
  .brandedList article {
    width: 25%;
    padding: 0 10px 10px;
    border-right: 1px solid #eee;
  }
  .brandedList article:nth-child(4n+0) {
    border-right: none;
  }
  .brandedList article:nth-child(5), .brandedList article:nth-child(6), .brandedList article:nth-child(7), .brandedList article:nth-child(8) {
    border-top: 1px solid #eee;
    padding-top: 10px;
  }
}
@media only screen and (min-width: 1248px) {
  .brandedList article {
    padding: 0 30px 30px;
  }
  .brandedList article:nth-child(5), .brandedList article:nth-child(6), .brandedList article:nth-child(7), .brandedList article:nth-child(8) {
    padding-top: 30px;
  }
}

.articleList article figure {
  width: 100%;
  height: 160px;
  margin-bottom: 20px;
  background-color: #393939;
}
.articleList article figure a {
  display: block;
  height: 100%;
}
.articleList article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.articleList article header .article-datetime {
  display: none;
}
.articleList article header .article-title {
  font-size: 1em;
}
.articleList article header .article-summary {
  display: none;
}
@media only screen and (min-width: 560px) {
  .articleList {
    display: flex;
    flex-wrap: wrap;
  }
  .articleList article {
    width: 50%;
    padding: 6px;
  }
}
@media only screen and (min-width: 768px) {
  .articleList article {
    width: 33.3%;
    padding: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .articleList article {
    width: 25%;
  }
}
@media only screen and (min-width: 560px) {
  .articleList.articleList3 article {
    width: 100%;
  }
}
@media only screen and (min-width: 640px) {
  .articleList.articleList3 article {
    width: 33%;
  }
}
.articleList.articleList .article-datetime {
  display: block;
  margin: 0 0 6px;
  font-size: 0.8em;
  color: #393939;
  text-transform: uppercase;
}

.dossierList {
  display: flex;
  flex-wrap: wrap;
}
.dossierList .dossierHp-item {
  position: relative;
  flex: 1 0 300px;
  margin: 4px;
  height: 500px;
  background-color: #2C2D87;
  overflow: hidden;
}
.dossierList .dossierHp-item > figure {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
}
.dossierList .dossierHp-item .dossierHp-content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  flex-flow: column;
  justify-content: space-between;
}
.dossierList .dossierHp-item .dossierHp-content > h3 {
  order: 2;
  font-size: 1.6em;
  font-weight: 700;
  font-style: italic;
}
.dossierList .dossierHp-item .dossierHp-content > h3 a {
  color: #fff;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list {
  order: 1;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list a {
  color: #fff;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list article figure {
  display: none;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list article header .article-title .article-subhead {
  display: none;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list article header .article-summary {
  display: none;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list article header .article-byline-item:before {
  color: #fff;
}
.dossierList .dossierHp-item .dossierHp-content .dossierHp-list article + article {
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}

.minisite .dossierHp .dossierHp-item {
  background-color: var(--minisitecolor);
}

.newsList {
  display: flex;
}
.newsList article figure {
  width: 100%;
  height: 120px;
  margin-bottom: 20px;
}
.newsList article figure a {
  display: block;
  height: 100%;
}
.newsList article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.newsList article header {
  word-wrap: break-word;
}
.newsList article header .article-datetime {
  display: none;
}
.newsList article header .article-title {
  font-size: 1em;
}
.newsList article header .article-summary {
  display: none;
}

.newsList-type-1 article {
  flex: 1;
}
.newsList-type-1 article figure {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .newsList-type-1 {
    flex-flow: column;
  }
  .newsList-type-1 article + article {
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
}
@media only screen and (min-width: 1024px) {
  .newsList-type-1 article + article {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
  }
}

.newsList-type-2 {
  flex-wrap: wrap;
}
.newsList-type-2 article:nth-child(1) {
  width: 50%;
  padding-right: 10px;
  border-right: 1px solid #eee;
}
.newsList-type-2 article:nth-child(2) {
  width: 50%;
  padding-left: 10px;
}
.newsList-type-2 article:nth-child(3) {
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.newsList-type-2 article:nth-child(3) figure {
  display: none;
}

.newsList-type-3 {
  flex-wrap: wrap;
}
.newsList-type-3 figure {
  display: none;
}
.newsList-type-3 article:nth-child(odd) {
  width: 50%;
  padding-right: 10px;
  border-right: 1px solid #eee;
}
.newsList-type-3 article:nth-child(even) {
  width: 50%;
  padding-left: 10px;
}
.newsList-type-3 article:nth-child(3), .newsList-type-3 article:nth-child(4) {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.newsList-type-4 {
  flex-flow: column;
}
.newsList-type-4 article figure {
  display: none;
}
.newsList-type-4 article + article {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.newsList-type-5 {
  flex-wrap: wrap;
}
.newsList-type-5 article {
  width: 50%;
}
.newsList-type-5 article:nth-child(odd) {
  padding-right: 10px;
  border-right: 1px solid #eee;
}
.newsList-type-5 article:nth-child(even) {
  width: 50%;
  padding-left: 10px;
}
.newsList-type-5 article:nth-child(3), .newsList-type-5 article:nth-child(4), .newsList-type-5 article:nth-child(5), .newsList-type-5 article:nth-child(6) {
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.newsList-type-5 article:nth-child(3) figure, .newsList-type-5 article:nth-child(4) figure, .newsList-type-5 article:nth-child(5) figure, .newsList-type-5 article:nth-child(6) figure {
  display: none;
}

.newsList-type-6 {
  flex-wrap: wrap;
}
.newsList-type-6 article {
  width: 50%;
}
.newsList-type-6 article figure {
  display: none;
}
.newsList-type-6 article:nth-child(odd) {
  padding-right: 10px;
  border-right: 1px solid #eee;
}
.newsList-type-6 article:nth-child(even) {
  width: 50%;
  padding-left: 10px;
}
.newsList-type-6 article:nth-child(3), .newsList-type-6 article:nth-child(4), .newsList-type-6 article:nth-child(5), .newsList-type-6 article:nth-child(6) {
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.dossierHp {
  display: flex;
}
.dossierHp .dossierHp-item {
  position: relative;
  background-color: #2C2D87;
  overflow: hidden;
}
.dossierHp .dossierHp-item > figure {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
}
.dossierHp .dossierHp-item .dossierHp-content {
  display: flex;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
}
.dossierHp .dossierHp-item .dossierHp-content > h3 {
  font-size: 1.6em;
  font-weight: 700;
  font-style: italic;
  padding-right: 20px;
}
.dossierHp .dossierHp-item .dossierHp-content > h3 a {
  color: #fff;
}
.dossierHp .dossierHp-item .dossierHp-content .dossierHp-list a {
  color: #fff;
}
.dossierHp .dossierHp-item .dossierHp-content .dossierHp-list article figure {
  display: none;
}
.dossierHp .dossierHp-item .dossierHp-content .dossierHp-list article header .article-title .article-subhead {
  display: none;
}
.dossierHp .dossierHp-item .dossierHp-content .dossierHp-list article header .article-summary {
  display: none;
}
.dossierHp .dossierHp-item .dossierHp-content .dossierHp-list article + article {
  padding-top: 20px;
  margin-top: 10px;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 767px) {
  .dossierHp {
    display: block;
  }
  .dossierHp .dossierHp-item {
    height: 400px;
  }
  .dossierHp .dossierHp-item + .dossierHp-item {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .dossierHp .dossierHp-item {
    height: 500px;
  }
  .dossierHp .dossierHp-item + .dossierHp-item {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1023px) {
  .dossierHp {
    padding: 0 10px;
  }
  .dossierHp .dossierHp-item {
    flex: 1;
    height: 500px;
  }
  .dossierHp .dossierHp-item .dossierHp-content {
    flex-flow: column;
    justify-content: space-between;
  }
  .dossierHp .dossierHp-item .dossierHp-content > h3 {
    order: 2;
  }
  .dossierHp .dossierHp-item .dossierHp-content .dossierHp-list {
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .dossierHp .dossierHp-item:nth-child(1) {
    flex: 3;
  }
  .dossierHp .dossierHp-item:nth-child(1) .dossierHp-content {
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
  }
  .dossierHp .dossierHp-item:nth-child(1) .dossierHp-content > h3 {
    flex: 2;
    font-size: 2em;
  }
  .dossierHp .dossierHp-item:nth-child(1) .dossierHp-content .dossierHp-list {
    flex: 1;
  }
  .dossierHp .dossierHp-item:nth-child(2), .dossierHp .dossierHp-item:nth-child(3) {
    flex: 1;
  }
  .dossierHp .dossierHp-item:nth-child(2) .dossierHp-content, .dossierHp .dossierHp-item:nth-child(3) .dossierHp-content {
    flex-flow: column;
    justify-content: space-between;
  }
  .dossierHp .dossierHp-item:nth-child(2) .dossierHp-content > h3, .dossierHp .dossierHp-item:nth-child(3) .dossierHp-content > h3 {
    order: 2;
  }
  .dossierHp .dossierHp-item:nth-child(2) .dossierHp-content .dossierHp-list, .dossierHp .dossierHp-item:nth-child(3) .dossierHp-content .dossierHp-list {
    order: 1;
  }
}
@media only screen and (min-width: 1248px) {
  .dossierHp .dossierHp-item + .dossierHp-item {
    margin-left: 20px;
  }
}

.minisiteList article {
  position: relative;
  background-color: #2C2D87;
  height: 300px;
}
.minisiteList article figure {
  height: calc(100% - 46px);
  overflow: hidden;
}
.minisiteList article figure a {
  display: block;
  height: 100%;
}
.minisiteList article figure a .image {
  position: relative;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #2C2D87;
  background-blend-mode: luminosity;
  transition: all ease-in-out 0.6s;
}
.minisiteList article figure a .image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.minisiteList article header {
  position: absolute;
  bottom: 46px;
  left: 0;
  right: 0;
  color: #fff;
  padding: 100px 20px 0;
}
.minisiteList article header a {
  color: #fff;
}
.minisiteList article header .article-title {
  max-width: 400px;
  font-size: 1.3em;
}
.minisiteList article header .article-title .article-subhead {
  color: #fff !important;
}
.minisiteList article header .article-title .article-subhead:after {
  color: #fff;
}
.minisiteList article .logo {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 46px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: auto 30px;
  background-position: 20px center;
}
.minisiteList article:hover .image {
  transform: scale(1.2);
}
@media only screen and (max-width: 767px) {
  .minisiteList article + article {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .minisiteList {
    display: grid;
    grid-gap: 10px;
  }
  .minisiteList.minisiteListCount-1 {
    grid-template-columns: 1fr;
  }
  .minisiteList.minisiteListCount-2 {
    grid-template-columns: 1fr 1fr;
  }
  .minisiteList.minisiteListCount-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .minisiteList.minisiteListCount-4 {
    grid-template-columns: 1fr 1fr;
  }
}

.row {
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #eee;
}
.row .row-inner > header {
  position: relative;
  height: 50px;
  border-bottom: 2px solid #f5f5f5;
}
.row .row-inner > header .datetime {
  position: absolute;
  left: 20px;
  top: 14px;
  color: #393939;
}
.row .row-inner > header h1 {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.5em;
  font-weight: 700;
}
.row .row-inner > header h2 {
  position: absolute;
  right: 20px;
  top: 14px;
  font-size: 1.2em;
  font-weight: 700;
}
.row .row-inner .row-content {
  padding: 10px;
}
@media only screen and (min-width: 1248px) {
  .row .row-inner .row-content {
    padding: 20px;
  }
}
.row .row-inner .row-content:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .row .row-inner .row-opening .block-item-1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-opening .block-item-2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 768px) {
  .row .row-inner .row-opening .block-item-1 {
    float: left;
    width: calc(100% - 340px);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-opening .block-item-2 {
    float: right;
    width: 320px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
  }
  .row .row-inner .row-opening .block-item-3 {
    float: left;
    width: calc(100% - 341px);
  }
}
@media only screen and (max-width: 767px) {
  .row .row-inner .row-opening-V2 .block-item-1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-opening-V2 .block-item-2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-opening-V2 .block-item-3 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 768px) {
  .row .row-inner .row-opening-V2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 321px;
    grid-template-rows: auto;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
    grid-template-areas: "leading    leading     leading     banner  " "opening    opening     opening     banner  " "news       news        news        news    ";
  }
  .row .row-inner .row-opening-V2 .block-item-1 {
    grid-area: leading;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-opening-V2 .block-item-2 {
    grid-area: opening;
  }
  .row .row-inner .row-opening-V2 .block-item-3 {
    grid-area: banner;
    padding-left: 20px;
    border-left: 1px solid #eee;
  }
  .row .row-inner .row-opening-V2 .block-item-4 {
    grid-area: news;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
}
.row .row-inner .row-opening-V2 .call2action .linkiestaPaperCall {
  margin: 0 !important;
}
.row .row-inner .row-opening-V2 .call2action .sidebarButtons a {
  width: 100%;
}
.row .row-inner .row-opening-V2 .call2action .sidebarButtons a + a {
  margin: 0;
}
.row .row-inner .row-opening-V2 .call2action .sidebarButtons .cta-gastronomika {
  display: none;
}
.row .row-inner .row-opening-V2 .call2action .sidebarButtons .cta-europea {
  display: none;
}
.row .row-inner .row-opening-V2 .call2action .sidebarButtons .cta-lavorocheverra {
  display: none;
}
.row .row-inner .row-opening-V2 .call2action .sidebarButtons .cta-linkiesta {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .row .row-inner .row-opening-V2 .call2action .sidebarButtons {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .row .row-inner .row-opening-V2 .call2action {
    display: flex;
  }
  .row .row-inner .row-opening-V2 .call2action .linkiestaPaperCall {
    flex: 1;
  }
  .row .row-inner .row-opening-V2 .call2action .sidebarButtons {
    flex: 1;
    margin-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .row .row-inner .row-focus .block-item-2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 768px) {
  .row .row-inner .row-focus {
    display: flex;
  }
  .row .row-inner .row-focus .block-item-1 {
    width: 24%;
  }
  .row .row-inner .row-focus .block-item-2 {
    width: calc(52% - 40px);
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #eee;
  }
  .row .row-inner .row-focus .block-item-3 {
    width: 24%;
  }
}
@media only screen and (max-width: 1023px) {
  .row .row-inner .row-more .block-item-1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-more .block-item-2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 1024px) {
  .row .row-inner .row-more .block-item-1 {
    float: left;
    width: 56%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .row .row-inner .row-more .block-item-2 {
    float: right;
    width: calc(44% - 20px);
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid #eee;
  }
  .row .row-inner .row-more .block-item-3 {
    float: left;
    width: 56%;
  }
}
@media only screen and (max-width: 639px) {
  .row .row-inner .row-section .block-item-1 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
}
@media only screen and (min-width: 640px) {
  .row .row-inner .row-section {
    display: flex;
  }
  .row .row-inner .row-section .block-item-1 {
    width: calc(60% - 20px);
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #eee;
  }
  .row .row-inner .row-section .block-item-2 {
    width: 40%;
  }
}
.row.row-dossier {
  background-color: #393939;
  color: #fff;
}
.row.row-dossier .row-inner {
  margin: 0 auto;
}
.row.row-dossier .row-inner > header {
  border: none;
}
.row.row-dossier .row-inner > header h2 a {
  color: #fff;
}
.row.row-dossier .row-inner .row-content {
  padding: 0 0 20px;
}
.row.row-no-border {
  border: none;
}
.row.row-no-color {
  background-color: transparent;
}

.row-container {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .row-container div > * + * {
    margin-top: 10px;
  }
  .row-container .row-container-aside {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .row-container {
    display: flex;
  }
  .row-container .row-container-aside {
    order: 2;
    width: 300px;
    margin-left: 10px;
  }
  .row-container .row-container-aside > * + * {
    margin-top: 10px;
  }
  .row-container .row-container-main {
    order: 1;
    width: calc(100% - 310px);
  }
  .row-container .row-container-main > * + * {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1248px) {
  .row-container .row-container-aside {
    margin-left: 20px;
  }
  .row-container .row-container-aside > * + * {
    margin-top: 20px;
  }
  .row-container .row-container-main {
    width: calc(100% - 320px);
  }
  .row-container .row-container-main > * + * {
    margin-top: 20px;
  }
}

.width-normal {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .width-normal {
    width: 980px;
  }
}
@media only screen and (min-width: 1248px) {
  .width-normal {
    width: 1200px;
  }
}

.width-full {
  width: 100%;
}

* {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
}

html {
  font-size: 15px;
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f5f5f5;
  color: #393939;
}
body.navOpen {
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  body {
    font-size: 1.06em;
  }
}
@media only screen and (min-width: 1248px) {
  body {
    font-size: 1.14em;
  }
}

/*########### Generic ###############################################*/
a {
  text-decoration: none;
  color: #393939;
}
a:hover {
  color: #202020;
}
a:focus {
  outline: none;
}

li {
  list-style: none inside;
}

textarea {
  resize: none;
}

strong {
  font-weight: 700;
}

.spacer {
  height: 0;
}

.separator {
  border-top: 1px dotted #ddd;
  margin-top: 0 !important;
}

/*------- Container ----------------------*/
.container {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

/*########### Main ###############################################*/
main {
  min-height: calc(100vh - 400px);
  background-color: #f5f5f5;
}
main > * + * {
  margin-top: 10px !important;
}
@media only screen and (min-width: 1248px) {
  main > * + * {
    margin-top: 20px !important;
  }
}

/*########### Article Detail ###############################################*/
article.articleDetail .row-content {
  position: relative;
}
article.articleDetail .article-avatar {
  border: 2px solid #2C2D87;
}
.europea article.articleDetail .article-avatar {
  border-color: #FFAD00;
}
.gastronomika article.articleDetail .article-avatar {
  border-color: #D7264F;
}
.greenkiesta article.articleDetail .article-avatar {
  border-color: #34AB52;
}
.il-lavoro-che-verra article.articleDetail .article-avatar {
  border-color: #08c6d2;
}
article.articleDetail .article-header {
  margin-bottom: 20px;
}
article.articleDetail .article-header .article-header-top {
  display: flex;
  justify-content: space-between;
}
article.articleDetail .article-header .article-header-top .column-header .article-avatar {
  display: block;
  width: 80px;
  height: 80px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 10px;
  border-radius: 50%;
}
article.articleDetail .article-header .article-header-top .column-header .column-name {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 4px;
}
article.articleDetail .article-header .article-header-top .column-header .column-name a {
  color: #393939;
}
article.articleDetail .article-header .article-header-top .column-header .article-byline-name {
  font-size: 1em;
  font-weight: 700;
}
article.articleDetail .article-header .article-header-top .column-header .article-byline-name:before {
  content: "di ";
  font-weight: 400;
}
article.articleDetail .article-header .article-header-top .article-section {
  font-size: 1.2em;
  font-weight: 700;
}
article.articleDetail .article-header .article-header-top .article-section a {
  color: #393939;
}
article.articleDetail .article-header .article-header-top .article-section a:hover {
  color: #393939;
}
article.articleDetail .article-header .article-header-top .article-section ul {
  display: flex;
  flex-wrap: wrap;
}
article.articleDetail .article-header .article-header-top .article-section ul li {
  display: inline;
}
article.articleDetail .article-header .article-header-top .article-section ul li + li:before {
  content: " | ";
  color: #393939;
  font-weight: 300;
  margin-left: 4px;
}
article.articleDetail .article-header .article-header-top .article-datetime span {
  font-weight: 700;
}
@media only screen and (max-width: 559px) {
  article.articleDetail .article-header .article-header-top {
    flex-flow: column;
  }
  article.articleDetail .article-header .article-header-top .column-header {
    order: 2;
  }
  article.articleDetail .article-header .article-header-top .article-section {
    order: 3;
  }
  article.articleDetail .article-header .article-header-top .article-datetime {
    order: 1;
    margin-bottom: 10px;
  }
}
article.articleDetail .article-header h1 {
  display: block;
  font-size: 2.4em;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 600;
  margin: 20px 0 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  letter-spacing: -1px;
}
article.articleDetail .article-header h1 .blog-name {
  color: #2C2D87;
  font-family: "Roboto Condensed", sans-serif;
}
article.articleDetail .article-header h1 .blog-name::before {
  content: "Blog | ";
}
article.articleDetail .article-header h1 .article-subhead {
  color: #B72519;
}
article.articleDetail .article-header h1 .article-subhead:after {
  content: " | ";
  color: #393939;
  font-weight: 300;
}
article.articleDetail .article-header .article-byline {
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 10px;
}
article.articleDetail .article-header .article-byline.multi .article-byline-item {
  display: flex;
  align-items: center;
  margin: 0 30px 10px 0;
}
article.articleDetail .article-header .article-byline .article-avatar {
  width: 50px;
  height: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
  border-radius: 50%;
}
article.articleDetail .article-header .article-byline .article-byline-name {
  font-size: 1.1em;
}
article.articleDetail .article-header .article-byline .article-byline-name:before {
  content: "di ";
  font-weight: 400;
}
article.articleDetail .article-header h2 {
  font-size: 1.5em;
  font-family: "Frank Ruhl Libre", serif;
  line-height: 1.2em;
}
article.articleDetail .article-header-simple h1 {
  display: block;
  font-size: 2.4em;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
article.articleDetail figure.article-image {
  margin-bottom: 20px;
}
article.articleDetail figure.article-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
article.articleDetail figure.article-image figcaption {
  padding: 12px;
  background-color: #f5f5f5;
  font-weight: 700;
  font-size: 0.9em;
}
article.articleDetail .article-content {
  font-family: "Frank Ruhl Libre", serif;
  line-height: 1.4em;
  font-size: 1.25em;
}
article.articleDetail .article-content a {
  color: #2C2D87;
  border-bottom: 1px dotted #2C2D87;
}
article.articleDetail .article-content a:hover {
  color: #1f2061;
  border-color: #1f2061;
}
article.articleDetail .article-content img {
  max-width: 100%;
  height: auto;
}
article.articleDetail .article-content h1 {
  font-size: 2em;
}
article.articleDetail .article-content h2 {
  font-size: 1.8em;
}
article.articleDetail .article-content h3 {
  font-size: 1.6em;
}
article.articleDetail .article-content h4 {
  font-size: 1.4em;
}
article.articleDetail .article-content h5 {
  font-size: 0.9em;
}
article.articleDetail .article-content h6 {
  font-size: 0.8em;
}
article.articleDetail .article-content ul li:before {
  content: "\f0c8";
  font-size: 0.8em;
  font-family: "FontAwesome";
  margin-right: 10px;
  color: #ddd;
}
article.articleDetail .article-content ol li {
  list-style: inside decimal;
}
article.articleDetail .article-content iframe {
  width: 100%;
  max-width: 100%;
  min-height: 500px;
}
article.articleDetail .article-content blockquote p {
  display: block;
  font-weight: 700;
  font-style: italic;
  padding-right: 30%;
  font-family: "Frank Ruhl Libre", serif;
  font-size: 2em;
  line-height: 1.1em;
}
article.articleDetail .article-content > * + * {
  margin-top: 30px;
}
article.articleDetail .article-content figure {
  max-width: 100% !important;
}
article.articleDetail .article-content figure img {
  max-width: 100% !important;
}
article.articleDetail .article-content .owl-carousel {
  position: relative;
  width: 100%;
}
article.articleDetail .article-content .owl-carousel .owl-stage-outer {
  z-index: 98;
  height: 100%;
}
article.articleDetail .article-content .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
article.articleDetail .article-content .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  width: 100%;
  height: 100%;
  margin-top: 0 !important;
}
article.articleDetail .article-content .owl-carousel .owl-stage-outer .owl-stage .owl-item figure {
  height: 100%;
  background-color: #393939;
}
article.articleDetail .article-content .owl-carousel .owl-stage-outer .owl-stage .owl-item figure .image {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
}
article.articleDetail .article-content .owl-carousel .owl-stage-outer .owl-stage .owl-item figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 10px;
}
article.articleDetail .article-content .owl-carousel .owl-nav button {
  z-index: 99;
  position: absolute;
  top: 0;
  bottom: 0;
  display: none;
  width: 100px;
}
article.articleDetail .article-content .owl-carousel .owl-nav button span {
  font-size: 5em;
  color: #fff;
}
article.articleDetail .article-content .owl-carousel .owl-nav button.owl-prev {
  left: 0;
  background-color: transparent !important;
}
article.articleDetail .article-content .owl-carousel .owl-nav button.owl-next {
  right: 0;
  background-color: transparent !important;
}
article.articleDetail .article-content .owl-carousel .owl-dots {
  display: none;
}
article.articleDetail .article-content .owl-carousel.cover figure .image {
  background-size: cover;
}
article.articleDetail .article-content .owl-carousel.contain figure .image {
  background-size: contain;
}
article.articleDetail .article-content .owl-carousel:hover button {
  display: block;
}
@media only screen and (max-width: 639px) {
  article.articleDetail .article-content .owl-carousel {
    height: 300px;
  }
}
@media only screen and (min-width: 640px) {
  article.articleDetail .article-content .owl-carousel {
    height: 400px;
  }
}
@media only screen and (min-width: 1248px) {
  article.articleDetail .article-content .owl-carousel {
    height: 600px;
  }
}
article.articleDetail .article-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 1.1em;
  line-height: 1.2em;
}
article.articleDetail .article-tags h3 {
  display: none;
  font-weight: 700;
  margin-right: 10px;
}
article.articleDetail .article-tags a {
  padding: 10px 20px;
  font-weight: 700;
  border: 1px dotted #bbb;
  border-radius: 10px;
  margin: 0 6px 6px 0;
}
article.articleDetail .branded-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
article.articleDetail .branded-block span {
  display: block;
  margin-right: 20px;
  font-style: italic;
}
article.articleDetail .branded-block img {
  max-width: 100%;
  max-height: 100px;
}
article.articleDetail.branded .article-header h1 {
  font-family: "Roboto Condensed", sans-serif;
}
article.articleDetail.branded .article-header h2 {
  font-family: "Roboto Condensed", sans-serif;
}
article.articleDetail.branded .article-content {
  font-family: "Roboto Condensed", sans-serif;
}
article.articleDetail.rubrica .article-header {
  border-color: transparent;
  background-color: transparent;
}
article.articleDetail.rubrica .article-header .row-inner {
  background-color: transparent;
}
article.articleDetail.live .article-header .row-inner:before {
  content: "Live";
  display: block;
  width: calc(100% - 40px);
  padding: 10px 20px;
  color: #fff;
  background: linear-gradient(270deg, #961B18, #E52823, #B72519);
  background-size: 1000% 1000%;
  -webkit-animation: gradientAnimation 30s ease infinite;
          animation: gradientAnimation 30s ease infinite;
  font-weight: 700;
  letter-spacing: 0px;
}

.authorHeader .author-avatar {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: 2px solid #2C2D87;
}
.europea .authorHeader .author-avatar {
  border-color: #FFAD00;
}
.gastronomika .authorHeader .author-avatar {
  border-color: #D7264F;
}
.greenkiesta .authorHeader .author-avatar {
  border-color: #34AB52;
}
.il-lavoro-che-verra .authorHeader .author-avatar {
  border-color: #08c6d2;
}
@media only screen and (max-width: 559px) {
  .authorHeader .author-avatar {
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 560px) {
  .authorHeader .author-avatar {
    margin-right: 20px;
  }
}
.authorHeader .author-bio h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.authorHeader .author-bio #blog-name {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
  color: #2C2D87;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #ddd;
}
.authorHeader .author-bio #blog-name:before {
  content: "Blog | ";
}
.authorHeader .author-bio p {
  line-height: 1.1em;
}
@media only screen and (min-width: 560px) {
  .authorHeader {
    display: flex;
    flex-flow: row;
  }
}

.author article header .article-byline {
  display: none;
}

.brandHeader .brand-avatar {
  flex: 0 0 300px;
  width: 120px;
  height: 120px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 30px;
}
.brandHeader .brand-bio h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 10px;
}
.brandHeader .brand-bio p {
  line-height: 1.1em;
}
.brandHeader .brand-bio a {
  display: inline-block;
  margin-top: 20px;
  border-bottom: 1px dotted;
  font-weight: 700;
}
@media only screen and (min-width: 560px) {
  .brandHeader {
    display: flex;
    flex-flow: row;
  }
}

.dossierHeader {
  position: relative;
  height: 300px;
  background-color: #2C2D87;
}
.dossierHeader .dossierHeader-cover {
  display: block;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
}
.dossierHeader .dossierHeader-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.dossierHeader .dossierHeader-inner .row-inner {
  position: relative;
  height: 100%;
  margin: 0 auto;
}
.dossierHeader .dossierHeader-inner .row-inner h1, .dossierHeader .dossierHeader-inner .row-inner h3 {
  position: absolute;
  left: 10px;
  bottom: 20px;
  font-size: 2em;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
.dossierHeader .dossierHeader-inner .row-inner h1 a, .dossierHeader .dossierHeader-inner .row-inner h3 a {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  .dossierHeader .dossierHeader-inner .row-inner h1, .dossierHeader .dossierHeader-inner .row-inner h3 {
    left: 0;
  }
}

.minisite .dossierHeader {
  background-color: var(--minisitecolor);
}

.navigation {
  padding-top: 20px;
  border-top: 1px dotted #eee;
  text-align: center;
  margin-bottom: 20px;
}
.navigation ol {
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1em;
}
.navigation ol .title {
  display: none;
}
.navigation ol li {
  border: 1px solid #eee;
}
.navigation ol li a {
  display: block;
  color: #2C2D87;
  padding: 10px;
}
.navigation ol li span {
  display: block;
  color: #2C2D87;
  padding: 10px;
}
.navigation ol li span.current {
  background-color: #2C2D87;
  color: #fff;
}
.navigation ol li:first-child {
  display: none;
}
.navigation ol li + li {
  margin-left: 4px;
}

#loadmore {
  display: flex;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1em;
  border: 1px solid #eee;
  padding: 10px 20px;
  margin: 20px auto;
  background-color: transparent;
  cursor: pointer;
}
#loadmore:hover {
  background-color: #2C2D87;
  color: #fff;
  border-color: #2C2D87;
}

.tab {
  display: flex;
}
.tab a {
  flex: 1;
  padding: 30px 20px 10px;
  text-align: center;
  font-size: 1.3em;
  font-weight: 700;
  color: #bbb;
}
.tab a.active {
  color: #393939 !important;
}
.tab a:hover {
  color: #a2a2a2;
}
.tab a + a {
  border-left: 1px dotted #ddd;
}

/* Search */
.searchform label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.9em;
}

.searchform input[type=text] {
  width: calc(100% - 100px);
  padding: 8px;
  font-weight: 400;
  font-size: 1.1em;
}

.searchform input[type=submit] {
  cursor: pointer;
  width: 90px;
  padding: 10px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  background-color: #333;
  color: #fff;
}

/* Comments */
.comments {
  margin: 40px 0;
  padding-top: 40px;
  border-top: 1px dotted #ddd;
}

.comments h3 {
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 6px;
}

.comments .commentlist {
  margin-bottom: 40px;
}

.comments .commentlist li {
  margin-bottom: 20px;
}

.comments .commentlist li .comment-author {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.comments .commentlist li .comment-author > * + * {
  margin-left: 10px;
}

.comments .commentlist li .comment-author cite {
  font-weight: 700;
}

.comments .commentlist li .comment-meta {
  margin-bottom: 10px;
  font-weight: 700;
}

.comments .commentlist li p {
  font-size: 1em;
  line-height: 1.4em;
  margin-bottom: 10px;
}

.comments .comment-respond p {
  margin-bottom: 10px;
}

.comments .comment-respond label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.9em;
}

.comments .comment-respond textarea {
  width: 100%;
  padding: 10px;
  font-weight: 400;
}

.comments .comment-respond input[type=text] {
  min-width: 300px;
  padding: 10px;
  font-weight: 400;
  font-size: 1.1em;
}

.comments .comment-respond .comment-form-cookies-consent label {
  display: inline;
}

.comments .comment-respond .form-submit {
  margin-top: 30px;
}

.comments .comment-respond .form-submit input {
  cursor: pointer;
  padding: 20px;
  border-radius: 6px;
  border: none;
  font-size: 1.2em;
  font-weight: 700;
  background-color: #333;
  color: #fff;
}

.comments .nocomments {
  font-size: 1.2em;
}

/*########### Footer Main ###############################################*/
.footerMain {
  text-align: center;
  background-color: #2C2D87;
  color: #fff;
  padding: 30px 0;
  margin-top: 40px;
}
.footerMain .logo {
  display: block;
  width: 100px;
  height: 20px;
  margin: 0 auto;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/03/lk-logo-esteso-w.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.footerMain .disclaimer {
  font-size: 12px;
  line-height: 15px;
  margin-top: 30px;
  border-top: 1px dotted rgba(255, 255, 255, 0.3);
  padding-top: 30px;
}
.footerMain .navFooter ul {
  display: flex;
  flex-flow: column;
  margin: 20px auto;
  font-weight: 700;
  justify-content: center;
}
.footerMain .navFooter ul a {
  display: inline-block;
  color: #fff;
  padding: 10px;
}
@media only screen and (min-width: 560px) {
  .footerMain .navFooter ul {
    flex-flow: row;
  }
}

.minisite .footerMain {
  background-color: var(--minisitecolor);
}

.widget_tag_cloud h2 {
  display: none;
}
.widget_tag_cloud .tagcloud {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.widget_tag_cloud .tagcloud a {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  border: 1px dotted #bbb;
  border-radius: 10px;
  margin: 0 6px 6px 0;
}

.searchGeneric .screen-reader-text {
  display: none;
}
.searchGeneric .search-field {
  width: calc(100% - 80px);
  font-size: 1.6em;
  padding: 10px;
  -webkit-appearance: none;
  border: 1px solid #ddd;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}
.searchGeneric .search-submit {
  position: relative;
  width: 70px;
  height: 70px;
  text-indent: -10000px;
  background-color: transparent;
  border: none;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/09/search.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40px 40px;
}

.page404 .row-inner header {
  height: auto;
}
.page404 h1 {
  position: static !important;
  font-size: 15em !important;
  text-align: right;
  color: #bbb;
  padding-right: 20px;
  letter-spacing: -10px;
}

.header404 {
  text-align: right;
}
.header404 h2 {
  font-size: 1.6em;
  font-weight: 700;
}
.header404 p {
  font-size: 1.1em;
  line-height: 1.4em;
}

.paypalForm {
  padding: 20px;
  background-color: #f5f5f5;
}
.paypalForm img {
  max-width: 260px !important;
}
.paypalForm select {
  width: 240px;
  padding: 10px;
  font-size: 1.2em;
  border: 1px solid #ddd;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Roboto Condensed", sans-serif;
}
.paypalForm a.actBtn {
  display: inline-block;
  background-color: #2C2D87;
  color: #fff;
  padding: 10px 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
}
.paypalForm figure {
  width: 100%;
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../img/teatroParenti.jpg);
  margin-bottom: 30px;
}

.newsletterForm {
  padding: 20px;
  background-color: #f5f5f5;
}
.newsletterForm fieldset label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}
.newsletterForm fieldset input[type=email] {
  padding: 20px;
  width: 100%;
  font-size: 1.2em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.newsletterForm fieldset span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8em;
}
.newsletterForm fieldset .actionBtn {
  display: inline-block;
  background-color: #4b89f6;
  color: #fff;
  padding: 10px 20px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  border: none;
  font-size: 1.1em;
  text-transform: uppercase;
  margin-top: 30px;
  cursor: pointer;
}

.newsletterFormMailUp {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.9em;
}
.newsletterFormMailUp br {
  display: none;
}
.newsletterFormMailUp form > div {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ddd;
}
.newsletterFormMailUp form > div input[type=checkbox] {
  margin-right: 10px;
}
.newsletterFormMailUp label {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  cursor: pointer;
}
.newsletterFormMailUp input[type=email] {
  padding: 10px;
  width: 100%;
  font-size: 1.1em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
  color: #2C2D87;
}
.newsletterFormMailUp span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.8em;
}
.newsletterFormMailUp button {
  display: inline-block;
  color: #B72519;
  background-color: #fff;
  padding: 10px 40px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
  border: none;
  font-size: 1.1em;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 20px;
  border: 2px solid #B72519;
}
.newsletterFormMailUp button:hover {
  box-shadow: 0 0 10px #bbb;
}
.newsletterFormMailUp .newsletterGroup > div {
  margin-bottom: 20px;
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  .newsletterFormMailUp .newsletterGroup input[type=checkbox],
.newsletterFormMailUp .newsletterGroup input[type=radio] {
    --active: #0F4C81;
    --active-inner: #fff;
    --focus: 2px #4b89f6;
    --border: #BBC1E1;
    --border-hover: #0F4C81;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 24px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:after,
.newsletterFormMailUp .newsletterGroup input[type=radio]:after {
    content: "";
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:checked,
.newsletterFormMailUp .newsletterGroup input[type=radio]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:disabled,
.newsletterFormMailUp .newsletterGroup input[type=radio]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:disabled:checked,
.newsletterFormMailUp .newsletterGroup input[type=radio]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:disabled + label,
.newsletterFormMailUp .newsletterGroup input[type=radio]:disabled + label {
    cursor: not-allowed;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:hover:not(:checked):not(:disabled),
.newsletterFormMailUp .newsletterGroup input[type=radio]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:focus,
.newsletterFormMailUp .newsletterGroup input[type=radio]:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:not(.switch),
.newsletterFormMailUp .newsletterGroup input[type=radio]:not(.switch) {
    width: 24px;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:not(.switch):after,
.newsletterFormMailUp .newsletterGroup input[type=radio]:not(.switch):after {
    opacity: var(--o, 0);
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:not(.switch):checked,
.newsletterFormMailUp .newsletterGroup input[type=radio]:not(.switch):checked {
    --o: 1;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox] + label,
.newsletterFormMailUp .newsletterGroup input[type=radio] + label {
    font-size: 14px;
    line-height: 24px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox] {
    margin-right: 10px;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:not(.switch) {
    border-radius: 7px;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox]:not(.switch):checked {
    --r: 43deg;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox].switch {
    width: 38px;
    border-radius: 11px;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  .newsletterFormMailUp .newsletterGroup input[type=checkbox].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
  .newsletterFormMailUp .newsletterGroup input[type=radio] {
    border-radius: 50%;
  }
  .newsletterFormMailUp .newsletterGroup input[type=radio]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  .newsletterFormMailUp .newsletterGroup input[type=radio]:checked {
    --s: .5;
  }
}

.sharedaddy ul li:before {
  display: none !important;
}

.lkClub {
  box-shadow: 0 0 10px #ddd;
}
.lkClub header {
  background-color: #2C2D87;
}
.lkClub header:before {
  display: none !important;
}
.lkClub header h2 {
  top: 10px !important;
  bottom: 10px;
  right: 20px !important;
  width: 100%;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/03/lkclub-w2x.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
.lkClub header h2 span {
  display: none;
}
.lkClub .row-content h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  font-weight: 700;
  color: #2C2D87;
}
.lkClub .row-content p {
  font-weight: 300;
  line-height: 1.4em;
}
.lkClub .row-content p + p {
  margin-top: 20px;
}
.lkClub .row-content a {
  display: block;
  text-align: center;
  background-color: #2C2D87;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  font-style: italic;
  padding: 20px 10px;
  margin-top: 30px;
}
.lkClub .row-content a:hover {
  background-color: #1f2061;
}

.sidebarButtons a {
  position: relative;
  display: block;
  height: 80px;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 14px 20px 10px 40px;
}
.sidebarButtons a .border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16px;
  transition: all ease-in-out 0.1s;
}
.sidebarButtons a .border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.sidebarButtons a .logo {
  height: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  margin-bottom: 10px;
  transition: all ease-in-out 0.1s;
}
.sidebarButtons a .description {
  font-size: 16px;
  color: #393939;
}
.sidebarButtons a:hover .border {
  width: 26px;
}
.sidebarButtons a:hover .logo {
  transform: translateY(14px);
}
.sidebarButtons a:hover .description {
  display: none;
}
.sidebarButtons a.cta-linkiesta {
  display: none;
}
.europea .sidebarButtons a.cta-europea {
  display: none;
}
.europea .sidebarButtons a.cta-linkiesta {
  display: block;
}
.gastronomika .sidebarButtons a.cta-gastronomika {
  display: none;
}
.gastronomika .sidebarButtons a.cta-linkiesta {
  display: block;
}
.il-lavoro-che-verra .sidebarButtons a.cta-lavorocheverra {
  display: none;
}
.il-lavoro-che-verra .sidebarButtons a.cta-linkiesta {
  display: block;
}
.sidebarButtons a + a {
  margin-top: 10px;
}

.noresults {
  padding: 30vh 40px;
  text-align: center;
  font-size: 1.6em;
  font-weight: 700;
}

.linkiestaPaperCall {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #eee;
  padding: 8px 10px 8px 40px;
  margin-bottom: 20px;
}
.linkiestaPaperCall .border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 16px;
  transition: all ease-in-out 0.1s;
  background-color: #7f93dc;
  transition: all ease-in-out 0.1s;
}
.linkiestaPaperCall .border:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.linkiestaPaperCall figure {
  margin-right: 10px;
}
.linkiestaPaperCall figure img {
  width: auto;
  max-width: 100%;
  max-height: 59px;
}
.linkiestaPaperCall header {
  flex: 2;
}
.linkiestaPaperCall header h3 .category {
  font-size: 0.86em;
  text-transform: uppercase;
}
.linkiestaPaperCall header h3 .title {
  display: block;
  font-weight: 700;
  font-size: 1.1em;
}
.linkiestaPaperCall:hover .border {
  width: 26px;
}
.linkiestaPaperCall:hover .logo {
  transform: translateY(14px);
}

.linkiestaPaperBox .row-content .article-content > h1, .linkiestaPaperBox .row-content .article-content > h3 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2em;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1em;
}
.linkiestaPaperBox .row-content .article-content > h1 span, .linkiestaPaperBox .row-content .article-content > h3 span {
  display: block;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 0.5em;
  margin-bottom: 4px;
}
.linkiestaPaperBox .row-content .article-content p {
  font-size: 0.9em;
  line-height: 1.1em;
}
.linkiestaPaperBox .row-content figure img {
  max-width: 100%;
}
.linkiestaPaperBox .row-content .paypalFormOrder {
  width: 100%;
  margin-top: 30px;
}
@media only screen and (min-width: 560px) {
  .linkiestaPaperBox .row-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .linkiestaPaperBox .row-content .article-content {
    flex: 2;
    margin-right: 30px;
  }
  .linkiestaPaperBox .row-content figure {
    flex: 1.5;
  }
}

.linkiestaPaperList article figure {
  width: 100%;
  height: 160px;
  margin-bottom: 10px;
}
.linkiestaPaperList article figure a {
  display: block;
  height: 100%;
}
.linkiestaPaperList article figure a .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.linkiestaPaperList article header {
  text-align: center;
}
.linkiestaPaperList article header .article-category {
  text-transform: uppercase;
  font-weight: 300;
}
.linkiestaPaperList article header .article-title {
  font-size: 1.4em;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (max-width: 559px) {
  .linkiestaPaperList article + article {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #ddd;
  }
}
@media only screen and (min-width: 560px) {
  .linkiestaPaperList {
    display: flex;
    flex-wrap: wrap;
  }
  .linkiestaPaperList article {
    width: 50%;
    padding: 6px;
  }
}
@media only screen and (min-width: 768px) {
  .linkiestaPaperList article {
    width: 33.3%;
    padding: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .linkiestaPaperList article {
    width: 25%;
  }
}

.paypalFormOrder form {
  display: flex;
  align-items: center;
  justify-content: right;
}
.paypalFormOrder form .price {
  flex: 1;
  font-family: "Roboto Condensed", sans-serif;
  color: #2C2D87;
}
.paypalFormOrder form .price span {
  display: block;
  font-weight: 700;
  line-height: 0.3em;
  padding-top: 16px;
}
.paypalFormOrder form .price span strong {
  font-size: 2em;
  letter-spacing: -2px;
  padding-right: 4px;
}
.paypalFormOrder form .price i {
  font-size: 0.8em;
}
.paypalFormOrder form label {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 4px;
  font-size: 0.8em;
  font-weight: 700;
}
.paypalFormOrder form select {
  padding: 6px 20px;
  font-size: 1.6em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  color: #2C2D87;
  -webkit-appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.3);
  margin: 0 4px 0 10px;
  text-align: center;
}
.paypalFormOrder form input {
  border: none;
  text-align: center;
  background-color: #2C2D87;
  color: #fff;
  font-size: 1.2em;
  font-weight: 700;
  font-style: italic;
  padding: 13px 30px;
  cursor: pointer;
}
@media only screen and (max-width: 399px) {
  .paypalFormOrder form input {
    padding: 13px 10px;
  }
}
@media only screen and (min-width: 400px) {
  .paypalFormOrder form input {
    padding: 13px 30px;
  }
}
.paypalFormOrder form input:hover {
  background-color: #1f2061;
}

.paypalFormOrderTEMP {
  background-color: #f5f5f5;
  padding: 10px 10px 20px;
  font-family: "Roboto Condensed", sans-serif;
  text-align: center;
}
.paypalFormOrderTEMP .tiles {
  display: flex;
  margin-bottom: 20px;
}
.paypalFormOrderTEMP .tiles .tile {
  flex: 1;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 20px 10px;
  height: 220px;
  border: none;
  margin: 5px;
}
.paypalFormOrderTEMP .tiles .tile .name {
  font-weight: 700;
  font-size: 1.2em;
  font-style: italic;
  color: #000;
}
.paypalFormOrderTEMP .tiles .tile .price span {
  font-weight: 700;
  font-size: 1.6em;
  color: #2C2D87;
}
@media only screen and (max-width: 767px) {
  .paypalFormOrderTEMP .tiles {
    flex-wrap: wrap;
  }
  .paypalFormOrderTEMP .tiles .tile {
    flex: 1 1 260px;
  }
}
.paypalFormOrderTEMP .text {
  margin-bottom: 20px;
  font-weight: 700;
}
.paypalFormOrderTEMP input[type=text] {
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 1.2em;
  width: 140px;
  font-weight: 700;
}
.paypalFormOrderTEMP input[type=submit] {
  padding: 10px 20px;
  background-color: #2C2D87;
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  font-style: italic;
  border: none;
  cursor: pointer;
  letter-spacing: -1px;
}
.paypalFormOrderTEMP input[type=submit]:hover {
  background-color: #1f2061;
}

.spunto-feed header {
  display: flex;
  align-items: center;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 0 20px;
}
.spunto-feed header .logo {
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/09/spuntoapp.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.spunto-feed .spunto-feed-content {
  height: 300px;
  background-color: #fff;
  padding: 20px;
  overflow: scroll;
}
.spunto-feed .spunto-feed-content article a {
  display: block;
}
.spunto-feed .spunto-feed-content article a .title {
  display: block;
  font-size: 1.1em;
  font-family: "Frank Ruhl Libre", serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.spunto-feed .spunto-feed-content article a .summary {
  display: block;
  font-weight: 300;
  font-size: 0.86em;
  line-height: 1.2em;
}
.spunto-feed .spunto-feed-content article + article {
  margin-top: 20px;
  border-top: 1px dotted #ddd;
  padding-top: 20px;
}

#iol_player_container.vjs-top-parent-mobile {
  width: 284px;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  right: 0;
}
#iol_player_container.vjs-top-parent-mobile .vjs-current-time-display,
#iol_player_container.vjs-top-parent-mobile .vjs-time-control.vjs-time-divider,
#iol_player_container.vjs-top-parent-mobile .vjs-duration-display,
#iol_player_container.vjs-top-parent-mobile #btn-unmute-id-iol_player,
#iol_player_container.vjs-top-parent-mobile .vjs-related.vjs-modal-dialog {
  margin: 0;
}

@media print {
  @page {
    size: portrait;
  }
  * {
    -moz-print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
         print-color-adjust: exact;
  }
  body {
    margin: 0.5cm;
    background-color: transparent;
    padding: 0 !important;
  }
  .headerLK,
.headerMain,
.footerMain,
.row-container-aside,
.article-tags,
.skyVideo,
.dossierHeader {
    display: none !important;
  }
  .width-normal {
    width: 100%;
  }
  .row {
    background-color: transparent;
    border: none;
  }
  .row-container .row-container-main {
    width: 100%;
  }
}
.articleDetail .row-container-aside {
  position: relative;
}

.skyVideo {
  width: 100%;
  background-color: #bbb;
  margin: 0 auto;
}

.banner-top {
  text-align: center;
  margin-top: 10px;
}
.banner-top div {
  margin: 0 auto;
}

.banner-300 {
  text-align: center;
}
.banner-300 > div {
  margin: 0 auto;
}

.banner-top2 {
  text-align: center;
  margin-top: 10px;
}
.banner-top2 > div {
  margin: 0 auto;
}

.banner-bottom {
  text-align: center;
  margin-top: 10px;
}
.banner-bottom > div {
  margin: 0 auto;
}
.banner-bottom iframe {
  margin: 0 auto;
}

.banner-bottom2 {
  text-align: center;
  margin-top: 10px;
}
.banner-bottom2 > div {
  margin: 0 auto;
}

.banner-inread {
  text-align: center;
}
.banner-inread > div {
  margin: 0 auto;
}
.banner-inread iframe {
  width: auto !important;
  min-height: auto !important;
}

.banner-dynamic {
  text-align: center;
}
.banner-dynamic > div {
  margin: 0 auto;
}
.banner-dynamic iframe {
  width: auto !important;
  min-height: auto !important;
}

.banner-native {
  text-align: center;
  margin-bottom: 10px;
}
.banner-native > div {
  margin: 0 auto;
}
.banner-native iframe {
  width: auto !important;
  min-height: auto !important;
}

/* ########## Banner Behaviour ######################################## */
@media only screen and (max-width: 639px) {
  body {
    padding-top: 154px !important;
  }
  body.minisite {
    padding-top: 204px !important;
  }
}
@media only screen and (max-width: 767px) {
  .banner-aside-top {
    display: none;
  }
  .banner-aside-middle {
    display: none;
  }
  .banner-aside-bottom {
    display: none;
  }
  body {
    padding-top: 184px;
  }
  .banner-top {
    z-index: 999;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    overflow: hidden;
    margin: 0 !important;
    background: #f5f5f5;
    min-height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
  .banner-top #adwallpaper {
    padding: 10px 0;
  }
  .minisite .banner-top {
    top: 100px;
  }
}
@media only screen and (min-width: 768px) {
  .banner-top2 {
    display: none;
  }
  .banner-bottom2 {
    display: none;
  }
}
header.headerMain {
  box-shadow: 0 0 20px #000;
}
header.headerMain .userlogin {
  position: absolute;
  top: 0;
  left: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease-in-out 350ms;
}
header.headerMain .userlogin .avatar {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header.headerMain .userlogin .avatar .avatar-inner {
  width: 40px;
  height: 40px;
}
header.headerMain .userlogin span {
  text-transform: uppercase;
  letter-spacing: 1px;
}
body:not(.logged-in) header.headerMain .userlogin .avatar .avatar-inner {
  background-image: url("../img/userlogin.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
body.logged-in header.headerMain .userlogin .avatar .avatar-inner {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
}
body.logged-in header.headerMain .userlogin span {
  display: none;
}
.navSmall header.headerMain .userlogin {
  height: 50px;
}
.navSmall header.headerMain .userlogin .avatar {
  width: 60px;
  height: 50px;
}
.navSmall header.headerMain .userlogin .avatar .avatar-inner {
  width: 26px;
  height: 26px;
}
@media only screen and (max-width: 479px) {
  header.headerMain .userlogin span {
    display: none;
  }
}
@media only screen and (max-width: 639px) {
  header.headerMain .userlogin {
    height: 50px;
  }
  header.headerMain .userlogin .avatar {
    width: 60px;
    height: 50px;
  }
  header.headerMain .userlogin .avatar .avatar-inner {
    width: 26px;
    height: 26px;
  }
}

.row-store .page-header h2 {
  color: #2C2D87;
}
.row-store .page-header h2 a {
  color: #2C2D87;
}
.row-store .row-content {
  background-color: #2C2D87;
}
.row-store .storeLnk {
  display: block;
  padding: 10px;
  text-align: center;
  color: #2C2D87;
}
.row-store .storeLnk span {
  font-weight: 700;
}

.storeBlock {
  display: flex;
}
.storeBlock .LKclubBOX {
  flex: 1;
}
.storeBlock .product-list {
  flex: 2;
  margin-left: 6px;
}
@media only screen and (max-width: 767px) {
  .storeBlock {
    flex-flow: column;
  }
}

.row-container-aside .storeBlock {
  flex-flow: column;
}
.row-container-aside .storeBlock .LKclubBOX {
  padding: 0;
  margin-bottom: 30px;
}
.row-container-aside .storeBlock .LKclubBOX .logo {
  margin: 30px 0;
}
.row-container-aside .storeBlock .product-list {
  flex-flow: column;
  margin: 0;
}
.row-container-aside .storeBlock .product-list .product-item {
  width: 100%;
  padding: 0 0 10px;
}

.LKclubBOX {
  display: flex;
  flex-flow: column;
  padding: 20px;
  color: #fff;
  cursor: pointer;
}
.LKclubBOX .logo {
  height: 30px;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/09/lkclub-w2x.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  margin: 60px 0;
}
.LKclubBOX p {
  line-height: 1.1em;
  margin-bottom: 20px;
}
.LKclubBOX .features {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
.LKclubBOX .features .price {
  color: rgba(255, 255, 255, 0.5);
}
.LKclubBOX .features .price strong {
  color: #fff;
}
.LKclubBOX .features .subscribeBTN {
  text-transform: uppercase;
  letter-spacing: 1px;
}
.LKclubBOX:hover {
  color: #fff;
}

.product-list {
  display: flex;
}
.product-list .product-item {
  width: 100%;
  padding: 6px;
  flex: 1;
}
.product-list .product-item article {
  background-color: #f5f5f5;
  padding: 20px 10px;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
.product-list .product-item article figure {
  height: 200px;
}
.product-list .product-item article figure .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.product-list .product-item article header {
  text-align: center;
  margin-bottom: 20px;
}
.product-list .product-item article header .product-category {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 100;
  font-size: 0.9em;
}
.product-list .product-item article header .product-title {
  display: block;
  font-weight: 700;
  font-size: 1.2em;
}
.product-list .product-item article .product-actions {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.product-list .product-item article .product-actions .buyBTN {
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media only screen and (max-width: 559px) {
  .product-list {
    flex-flow: column;
  }
}
@media only screen and (min-width: 560px) {
  .product-list {
    flex-flow: row;
  }
}

.lkClubLogo {
  max-width: 500px;
  height: 100px;
  margin: 30px auto;
  background-image: url("https://i2.wp.com/www.linkiesta.it/wp-content/uploads/2021/09/lkclub-w2x.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.lkClubLogo span {
  display: none;
}

.subscription-detail {
  display: flex;
  max-width: 1200px;
  margin: auto;
}
.subscription-detail header {
  flex: 1;
  padding: 30px 12px;
  color: #2C2D87;
}
.subscription-detail header h2 {
  font-size: 2em;
  margin-bottom: 40px;
}
.subscription-detail header .summary {
  line-height: 1.2em;
}
.subscription-detail header .summary p + p {
  margin-top: 20px;
}
.subscription-detail figure {
  flex: 1;
  height: 500px;
  border-left: 1px dotted #ddd;
  padding: 12px;
  color: #2C2D87;
}
.subscription-detail figure .image {
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.subscription-type {
  display: flex;
  max-width: 1200px;
  margin: auto;
}
.subscription-type .subscription-type-item header {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscription-type .subscription-type-item header .name {
  font-weight: 700;
  font-size: 1.1em;
}
.subscription-type .subscription-type-item header .price strong {
  font-size: 1.6em;
}
.subscription-type .subscription-type-item .benefit {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 12px;
  line-height: 1.2em;
  color: #2C2D87;
}
.subscription-type .subscription-type-item .benefit li {
  list-style: decimal inside;
}
.subscription-type .subscription-type-item .benefit li + li {
  margin-top: 10px;
}
.subscription-type .subscription-type-item .subscribeBTN {
  display: block;
  background-color: #fff;
  color: #2C2D87;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 20px;
  text-align: center;
}
.subscription-type .subscription-type-item + .subscription-type-item {
  margin-left: 20px;
}

/* ECCETERA MINISITO  */
@font-face {
  font-family: "Aeonik-Bold";
  src: url(../fonts/Aeonik-Bold.woff2) format("woff2"), url(../fonts/Aeonik-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Alpina Bold";
  src: url(../fonts/GTAlpina-Bold.woff2) format("woff2"), url(../fonts/GTAlpina-Bold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Alpina Fine";
  src: url(../fonts/GTAlpinaFine-CondRegular.woff) format("woff2"), url(../fonts/GTAlpinaFine-CondRegular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "GT Alpina Light";
  src: url(../fonts/GTAlpina-Light.woff2) format("woff2"), url(../fonts/GTAlpina-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.eccetera, .eccetera a {
  color: black;
}

/* stile generale */
.eccetera article header .article-title {
  font-family: "GT Alpina Fine";
  font-weight: normal;
  font-size: 24px;
  line-height: 1.2;
}

.eccetera article header .article-title .article-subhead {
  text-transform: uppercase;
  font-weight: normal;
}

.eccetera article header .article-datetime {
  display: none;
}

.eccetera article header .article-byline {
  font-size: 16px;
  font-family: "GT Alpina Bold";
}

.eccetera article header .article-summary {
  font-size: 18px;
  font-family: "GT Alpina Light";
}

.eccetera .row .row-inner > header .datetime {
  color: black;
}

/* ordine blocchi */
.eccetera main {
  display: flex;
  flex-direction: column;
}

.eccetera .row-store {
  order: 999;
}

/* hero */
.eccetera .megaHp article header .article-title {
  font-family: "GT Alpina Fine";
  font-size: 40px;
  font-weight: normal;
}

/* .eccetera .breakingHp{
  display: none;
} */
.eccetera .LKclubBOX {
  color: white;
}

.eccetera .megaHp article header .article-title .article-subhead {
  color: white !important;
}

.eccetera .megaHp article header .article-summary {
  font-size: 24px;
}

.eccetera .row .row-inner > header h2 {
  text-transform: uppercase;
  font-family: "Aeonik-Bold";
  letter-spacing: 0.1rem;
  font-size: 16px;
}

.eccetera .megaHp article header {
  padding: 120px 40% 30px 20px;
}

.eccetera .row .row-inner > header .datetime {
  text-transform: uppercase;
  font-family: "Aeonik-Bold";
  letter-spacing: 0.1rem;
  font-size: 16px;
}

/* hide news editoriale */
.eccetera .row .row-inner .row-opening-V2 .block-item-1 {
  display: none;
}

/*  più letti e podcast  */
.eccetera .row-container .row-container-main .row:last-child {
  display: none;
}

.eccetera .breakingHp {
  background: black;
  font-family: "GT Alpina Bold";
}

/* dossier section  */
.eccetera .row-dossier {
  display: none;
}

/* sezione firme */
.eccetera .sign .sign-item .sign-content article:nth-child(2) header .article-title, .sign .sign-item .sign-content article:nth-child(3) header .article-title {
  text-transform: none;
  font-family: "GT Alpina Bold";
}

/* sezione firme */
.eccetera .row-container .row-container-aside {
  display: none;
}

@media (min-width: 768px) and (max-width: 900px) {
  .eccetera .megaHp article header .article-title {
    font-size: 35px;
  }
  .eccetera .megaHp article header {
    padding: 120px 30% 30px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .eccetera .megaHp article header {
    padding: 80px 20% 30px 20px;
  }
  .eccetera .megaHp article header .article-summary {
    font-size: 18px;
  }
  .eccetera .megaHp article header .article-title {
    font-size: 30px;
  }
}
/* pagina articolo eccettera  */
.eccetera.single-post .call2action {
  display: none;
}

.eccetera.single-post .spunto-feed {
  display: none;
}

.eccetera.single-post article.articleDetail .article-header .article-header-top .article-section ul {
  font-size: 16px;
}

.eccetera.single-post article.articleDetail .article-header .article-header-top {
  text-transform: uppercase;
  font-family: "Aeonik-Bold";
  letter-spacing: 0.1rem;
}

.eccetera.single-post article.articleDetail .article-header h1 {
  font-family: "GT Alpina Fine";
  font-size: 50px;
  font-weight: normal;
}

.eccetera.single-post article.articleDetail .article-header h1 .article-subhead {
  color: black;
  text-transform: uppercase;
}

.eccetera.single-post .share-icon {
  background: black !important;
}

.eccetera.single-post .row .row-inner .row-content {
  padding: 20px;
}

.eccetera.single-post article.articleDetail .article-header h2 {
  font-size: 24px;
  font-family: "GT Alpina Light";
  color: black;
}

.eccetera.single-post article.articleDetail .article-header .article-byline .article-byline-name {
  font-family: "GT Alpina Bold";
  font-size: 18px;
}

.eccetera.single-post article.articleDetail .article-content {
  font-size: 20px;
  font-family: "GT Alpina Light";
  color: black;
}

/* newsletter popup */
.eccetera .pum-overlay {
  background-color: rgba(0, 0, 0, 0.7) !important;
}

.eccetera .pum-container .pum-title {
  font-family: "GT Alpina Fine";
  font-weight: normal;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.2;
}

.eccetera .pum-container {
  padding: 30px !important;
  border-radius: 0px !important;
  border: none !important;
  box-shadow: none !important;
  background-color: white !important;
  font-size: 20px !important;
  font-family: "GT Alpina Light" !important;
}

.eccetera .pum-container label, .eccetera .pum-container label {
  font-family: "Aeonik-Bold";
}

.eccetera .newsletterFormMailUp input[type=email]:focus {
  outline: none;
}

.eccetera .newsletterFormMailUp input[type=email] {
  padding: 10px;
  padding-left: 0;
  width: 100%;
  font-size: 20px;
  font-family: "GT Alpina Light";
  font-weight: unset;
  margin-bottom: 6px;
  color: black;
  border: none;
  border-bottom: 1px solid black;
}

.eccetera .newsletterFormMailUp form > div {
  border: none;
  font-family: "GT Alpina Light";
}

.eccetera .newsletterFormMailUp button {
  font-family: "Aeonik-Bold";
  color: black;
  border-color: black;
  font-weight: normal;
}

.eccetera .newsletterFormMailUp button:hover {
  box-shadow: none;
  background: black;
  color: white;
}

.eccetera .pum-close {
  top: 15px !important;
  right: 15px !important;
  background: 0 !important;
  color: black !important;
  padding: 0 !important;
  font-size: 50px !important;
  font-family: "GT Alpina Light" !important;
  box-shadow: none !important;
  height: unset !important;
  width: unset !important;
}

html.pum-open.pum-open-overlay.pum-open-scrollable body > [aria-hidden] {
  padding-right: 0 !important;
}/*# sourceMappingURL=core.css.map */