/*
Theme Name: Striscia la Notizia
Author: Softec S.p.A.
Description: Theme for Striscia la Notizia website
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: striscia-la-notizia
*/

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

html,
body {
    max-width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background: linear-gradient(270deg, rgba(135,211,255,1), 50% ,rgba(0,144,255,1));
    font-family: 'Lato', Arial, Helvetica, sans-serif;
}

body.no-scroll {
    height: 100vh;
    overflow-y: hidden;
}


/* General */

.mt-12 {
    margin-top: 12px;
}

a {
    color: #2700ff;
}

.wave-left {
    width: 320px;
    height: 320px;
    background-image: url(images/wave-left.svg);
    position: absolute;
    top: -50px;
    left: -160px;
    background-size: contain;
    background-repeat: no-repeat;
}

.wave-right {
    width: 220px;
    height: 220px;
    background-image: url(images/wave-right.svg);
    position: absolute;
    top: -20px;
    right: -20px;
    background-size: contain;
    background-repeat: no-repeat;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-wrapper .internal-logo {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: right;
    display: block;
}

.logo-wrapper .internal-logo img {
    width: 73%;
    height: auto;
}

#arrow-js {
    width: 25px;
    height: 43px;
    display: none !important;
}

.videoplayer-wrapper {
    padding-bottom: 56.25%;
    position: relative;
    background-color: #000000;
}

.placeholder-img-wrapper img {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .wave-left {
        width: 420px;
        height: 420px;
        top: -80px;
        left: -150px;
    }

    .wave-right {
        width: 420px;
        height: 420px;
        top: -50px;
        right: -50px;
    }
}

@media only screen and (min-width: 1200px) {
    .wave-left {
        width: 700px;
        height: 700px;
        top: -150px;
        left: -300px;
    }

    .wave-right {
        width: 700px;
        height: 700px;
        top: -120px;
        right: -100px;
    }
}

@media only screen and (min-width: 1400px) {
    #arrow-js {
        width: 36px;
        height: 62px;
    }
}

@media only screen and (min-width: 1600px) {
    .wave-left {
        width: 1000px;
        height: 1000px;
        top: -250px;
        left: -500px;
    }

    .wave-right {
        width: 1000px;
        height: 1000px;
        top: -140px;
        right: -100px;
    }
}


/* Backgrounds */

.bg-yellow {
    background-color: #ffeb00 !important;
}

.bg-magenta-opaque {
    background-color: rgba(255, 0, 226, .75);
}


/* Header */

#header {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#header .header-logo {
    width: 200px;
    height: auto;
}

#header .header-bar {
    position: relative;
}

#header .header-bar .bar-item {
    width: 100%;
    height: 40px;
    padding: .5rem;
    background-color: #ffffff;
    box-shadow: 3px 3px 0 0 #000000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#header .header-bar #toggle-btn .lines {
    width: 24px;
    height: 21px;
}

#header .header-bar #toggle-btn .lines>span {
    width: 24px;
    height: 5px;
    display: block;
    background-color: #000000;
    border-radius: 25px;
    position: relative;
}

#header .header-bar #toggle-btn.active .lines>span {
    height: 3px;
}

#header .header-bar #toggle-btn .lines>span:nth-child(2) {
    margin: 3px 0;
}

#header .header-bar #toggle-btn.active .lines>span:nth-child(2) {
    display: none;
}

#header .header-bar #toggle-btn.active .lines>span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

#header .header-bar #toggle-btn.active .lines>span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

#header .header-bar #toggle-btn.active {
    background-color: rgba(39, 0, 255, .9);
    box-shadow: none;
    color: #ffffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
}

#header .header-bar #toggle-btn.active .lines>span {
    background-color: #ffffff;
}

#header .header-bar #toggle-btn.active:after {
    height: 8px;
    content: '';
    background-color: rgba(39, 0, 255, .9);
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}

#header .header-bar .main-menu-wrapper {
    padding: 1.5rem 2.5rem;
    padding-left: 0;
    margin-top: 8px;
    position: absolute;
    left: 0;
    right: 0;
    display: none;
    background-color: rgba(39, 0, 255, .9);
    border-radius: 8px;
    border-top-left-radius: 0;
    z-index: 9999;
}

#header .header-bar .main-menu {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

#header .header-bar .main-menu li {
    margin-bottom: .5rem;
    font-weight: bold;
    font-size: 32px;
    font-style: italic;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 3px 3px 0 #000;
    text-transform: uppercase;
}

#header .header-bar .main-menu li a {
    padding-left: 2.5rem;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
}

#header .header-bar .main-menu li.current-menu-item a,
#header .header-bar .main-menu li a:hover {
    color: #ffeb00;
}

#header .header-bar .main-menu li:last-of-type {
    margin-bottom: 0;
}

#header .header-bar .main-menu li.menu-item-has-children>a:before {
    font-size: 16px;
    line-height: 1;
    content: '▼';
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 12px;
    transition: transform 500ms ease;
    transform: rotate(-90deg);
}

#header .header-bar .main-menu li.menu-item-has-children.active>a:before {
    transform: rotate(0deg);
}

#header .header-bar .main-menu .sub-menu {
    padding-bottom: .5rem;
    list-style: none;
    display: none;
}

#header .header-bar .main-menu .sub-menu li {
    margin-bottom: 0;
    text-transform: none;
    text-shadow: none;
}

#header .header-bar #toggle-btn.active+.main-menu-wrapper {
    display: block;
}

#header .header-bar .search-btn {
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    font-style: italic;
    display: flex;
    align-items: center;
}

#header .header-bar .search-btn img {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
}

#header .header-bar #toggle-btn,
#header .header-bar .search-btn {
    border: 0;
}

#header .header-bar .social-icons a {
    display: inline-block;
}

#header .header-bar .social-icons a+a {
    margin-left: 22px;
}

#header .header-bar .social-icons img {
    width: 26px;
    height: 26px;
}

@media only screen and (max-width: 370px) {
    #social-bar-header {
        width: 30%;
    }
}

@media only screen and (max-width: 350px) {
    #social-bar-header .social-icons a+a {
        margin-left: 15px !important;
    }
}

@media only screen and (max-width: 320px) {
    #social-bar-header .social-icons a+a {
        margin-left: 4px !important;
    }
}

@media only screen and (min-width: 768px) {
    #header .header-logo {
        width: 220px;
    }
}

@media only screen and (min-width: 577px) {
    #header .header-logo {
        width: 250px;
    }
}

@media only screen and (min-width: 992px) {
    #header .header-logo {
        width: 320px;
    }

    #header .header-bar .bar-item {
        height: 44px;
        padding: .5rem 1rem;
    }

    #header .header-bar #toggle-btn {
        width: 130px;
        font-size: 24px;
        font-weight: bold;
        line-height: 1;
        font-style: italic;
    }

    #header .header-bar #toggle-btn .lines {
        margin-right: 18px;
    }

    #header .header-bar .main-menu-wrapper {
        padding-left: 1.5rem;
    }

    #header .header-bar .main-menu li {
        margin-bottom: 1rem;
        font-size: 32px;
    }

    #header .header-bar .main-menu li.menu-item-has-children>a:before {
        font-size: 20px;
        top: 10px;
        left: 0;
    }

    #header .header-bar .search-btn {
        width: 130px;
        font-size: 24px;
    }

    #header .header-bar .search-btn img {
        width: 24px;
        height: 24px;
        margin-right: 1rem;
    }

    #header .header-bar .social-icons a+a {
        margin-left: 26px;
    }

    #header .header-bar .social-icons img {
        width: 32px;
        height: 32px;
    }
}

@media only screen and (min-width: 1200px) {
    #header {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    #header .header-logo {
        width: 420px;
    }

    #header .header-bar .bar-item {
        height: 50px;
    }

    #header .header-bar #toggle-btn {
        width: 144px;
        font-size: 28px;
    }

    #header .header-bar .search-btn {
        width: 150px;
        font-size: 28px;
    }

    #header .header-bar .search-btn img {
        width: 28px;
        height: 28px;
    }

    #header .header-bar .social-icons img {
        width: 36px;
        height: 36px;
    }
}

@media only screen and (min-width: 1600px) {
    #header .header-logo {
        width: auto;
    }

    #header .header-bar .bar-item {
        height: 64px;
    }

    #header .header-bar #toggle-btn {
        width: 180px;
        font-size: 40px;
    }

    #header .header-bar .main-menu-wrapper {
        padding: 2rem 4rem;
        padding-left: 1.5rem;
    }

    #header .header-bar .main-menu li {
        font-size: 44px;
    }

    #header .header-bar .main-menu li.menu-item-has-children>a:before {
        font-size: 24px;
        top: 12px;
    }

    #header .header-bar .search-btn {
        width: 200px;
        font-size: 35px;
    }

    #header .header-bar .search-btn img {
        width: 34px;
        height: 34px;
        margin-right: 1.5rem;
    }

    #header .header-bar .social-icons img {
        width: 40px;
        height: 40px;
    }
}

@media only screen and (min-width: 1920px) {
    #header {
        padding-bottom: 4rem;
    }
}


/* Content */

#top {
    padding-bottom: 2rem;
    /* background-image: url('images/bg-texture.png'); */
    /* background-image: url('images/bg-texture.png'), linear-gradient(90deg, rgba(4,146,255,1) 0%, rgba(20,154,255,1) 25%, rgba(53,170,255,1) 50%, rgba(101,194,255,1) 75%, rgba(137,212,255,1) 100%);*/
    /* background-image: url('images/bg-texture.png'), linear-gradient(90deg, rgba(4,146,255,1) 0%, rgba(137,212,255,1) 100%); */
    background-position: bottom left;
    background-image: url(images/page-pattern.svg);
}

/* #top .bg-texture {
    background-image: url('images/bg-texture.png');
    position: absolute;
    top: -250px;
    right: -250px;
    bottom: 0;
    left: -250px;
    z-index: -1;
    transform: rotate(-15deg);
} */

#content {
    position: relative;
}

.px-container {
    padding-top: 1rem;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.page-header {
    min-height: 70px;
    position: relative;
}

.page-header.blue {
    background-color: #2700ff;
}

.page-header.yellow {
    background-color: #ffeb00;
}

.page-header.red {
    background-color: #ff0000;
}

.page-header.magenta {
    background-color: #ff00e2;
}

.page-header.magenta.opaque {
    background-color: rgba(255, 0, 226, .75);
}

.page-header .page-title {
    margin: 0;
    padding: 0 1rem;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.2;
    font-style: italic;
    color: #ffffff;
    position: absolute;
    top: -38px;
    right: 0;
    left: 0;
    text-align: center;
    text-shadow: 0 1px 0 #000000;
    -webkit-text-stroke: 0.5px #000000;
}

.page-content-negative {
    margin-top: -30px;
    position: relative;
}

@media only screen and (max-width: 768px) {
    .page-header .page-title {
        top: -25px;
    }
}

@media only screen and (min-width: 768px) {
    .px-container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .sub-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .page-header .page-title {
        font-size: 44px;
        top: -30px;
    }
}

@media only screen and (min-width: 1200px) {
    .px-container {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
    }

    .sub-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .page-header .page-title {
        font-size: 72px;
        top: -50px;
        text-shadow: 0 3px 0 #000000;
        -webkit-text-stroke: 1.5px #000000;
    }
}

@media only screen and (max-width: 1399px) {
    .px-container.no-padding-xxl {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 1400px) {
    #header .header-logo {
        width: 450px;
    }

    #header-player .label-player {
        font-size: 44px !important;
        line-height: 46px !important;
    }

    .px-container {
        padding-left: 4.5rem !important;
        padding-right: 4.5rem !important;
    }

    .sub-container {
        padding-left: 4.5rem;
        padding-right: 4.5rem;
    }

    .page-header {
        min-height: 200px;
    }

    .page-header .page-title {
        font-size: 90px;
        top: -70px;
        text-shadow: 0 5px 0 #000000;
        -webkit-text-stroke: 2px #000000;
    }

    .page-content-negative {
        margin-top: -120px;
    }

    .page-template-template-contacts .page-header .page-title {
        top: -60px;
    }
}

@media only screen and (min-width: 1600px) {
    #header .header-logo {
        width: auto;
    }

    .sub-container {
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .page-header .page-title {
        font-size: 100px;
        top: -80px;
    }
}

@media only screen and (min-width: 1920px) {
    .sub-container {
        padding-left: 10rem;
        padding-right: 10rem;
    }

    .page-header .page-title {
        font-size: 120px;
        top: -100px;
    }

    .page-template-template-contacts .page-header .page-title {
        top: -80px;
    }
}

@media only screen and (max-width: 567px) {
    .page-header .page-title {
        top: -22px;
        line-height: 35px;
    }

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


/* Page */

.page-content {
    margin-top: -30px;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 20px;
    position: relative;
}

@media only screen and (min-width: 1400px) {
    .page-content {
        margin-top: -100px;
        padding-top: 100px;
        padding-bottom: 100px;
        border-radius: 40px;
    }
}


/* Custom Template */
section.subcategory {
    padding-bottom: 1.5em;
}

.page-template .archive-category-content {
    margin-top: -30px;
    position: relative;
}

.page-template .archive-category-content.alternate-colors .subcategory:nth-child(4n+1) .post .post-elements {
    background-color: #ff00e2;
}

.page-template .archive-category-content.alternate-colors .subcategory:nth-child(4n+2) .post .post-elements {
    background-color: #ffeb00;
}

.page-template .archive-category-content.alternate-colors .subcategory:nth-child(4n+3) .post .post-elements {
    background-color: #27ff00;
}

.page-template .archive-category-content.alternate-colors .subcategory:nth-child(4n+4) .post .post-elements {
    background-color: #ff0000;
}

@media only screen and (min-width: 1400px) {
    .page-template .archive-category-content {
        margin-top: -120px;
    }
}

/** Venti **/
.scroll-xs-content {
    max-height: 337px;
    overflow: auto;
    padding: 0 20px;
}

.pt-20 {
    padding-top: 20px !important;
}

.pa-10 {
    padding: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.single-post-data.yellow {
    background-color: #ffeb00;
}

.single-post-data.white {
    background-color: #ffffff;
}

.single-post-data.radius-top {
    border-radius: 20px 20px 0 0;
}

.single-post-data.radius-bottom {
    border-radius: 0 0 20px 20px;
}

.page-template-venti-di-striscia .mb-4.mb-xl-5.px-container.pb-20 {
    position: relative;
}

.page-template-venti-di-striscia .mb-4.mb-xl-5.px-container.pb-20 .single-post-data.white::-webkit-scrollbar-track {
    margin-right: 3px;
}

.page-template-venti-di-striscia .mb-4.mb-xl-5.px-container.pb-20 .single-post-data.white::-webkit-scrollbar-thumb {
    background: #2198fe;
}

.page-template-venti-di-striscia .single-post-data .layer {
    display: none;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    right: 0.5rem;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #0090ff);
    opacity: 0.6;
}

.page-template-venti-di-striscia .video-slider {
    z-index: 999;
}

@media only screen and (max-width: 567px) {
    .page-template-venti-di-striscia .single-post-data .layer {
        display: block;
    }
}

/* Image */
.image-responsive {
    max-width: 100%;
    height: auto;
}

.image-responsive-full {
    width: 100%;
}

.image-responsive.border-radius {
    border-radius: 20px;
}

.no_video_placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media only screen and (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .wrapper-text {
        font-size: 40px;
    }

    .wrapper-text-secondary {
        font-size: 30px;
        line-height: 40px;
    }

    .scroll-xs-content {
        max-height: initial;
    }
}


/** Museo **/

.museo-top-content {
    font-size: 23px;
    padding: 40px;
}

.museo-subtitle {
    font-size: 33px;
    font-weight: bold;
    font-style: italic;
    padding: 0 25px;
}

.museo-pan-data {
    color: #ffffff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .9);
    padding: 20px !important;
}

.museo-pan-data .title {
    font-size: 100px;
    font-weight: 900;
}

.museo-pan-data h2 {
    font-size: 40px;
    font-weight: 900;
}

.museo-img-top {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: -20px;
    margin-bottom: -60px;
}

.radius-full {
    border-radius: 20px;
}

.transparent {
    /* background: rgba(1, 144, 255, .5); */
    background: rgba(156, 197, 244, 0.5);
}

.veniteatrovarci {
    margin-top: -20%;
    width: 71%;
}

.page-template-museo .paragrafo-1 .single-post-data.yellow,
.page-template-museo .museo-paragrafo-3 .single-post-data.yellow,
.page-template-museo .last-paragraph .single-post-data.yellow {
    border-radius: 20px !important;
}

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

    .page-template-museo .paragrafo-1 .single-post-data.yellow,
    .page-template-museo .museo-paragrafo-3 .single-post-data.yellow,
    .page-template-museo .last-paragraph .single-post-data.yellow {
        height: 500px;
        overflow: scroll;
        border-radius: 20px !important;
        position: relative;
    }

    .single-post-data.yellow::-webkit-scrollbar {
        display: none;
    }

    .page-template-museo .museo-paragrafo-3 .single-post-data.yellow {
        margin-top: 50px !important;
    }

    .museo-top-content {
        padding: 20px !important;
    }
}

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

    .page-template-museo .paragrafo-1 .single-post-data.yellow,
    .page-template-museo .museo-paragrafo-3 .single-post-data.yellow,
    .page-template-museo .last-paragraph .single-post-data.yellow {
        height: auto;
        margin: 20px 0 !important;
    }

    .page-template-museo .last-paragraph {
        margin-top: -50px;
    }

    .single-post-data.yellow::-webkit-scrollbar {
        display: none;
    }
}

@media only screen and (min-width: 768px) {

    .museo-subtitle {
        font-size: 65px;
        padding: 0 50px;
    }

    .img-museo-2 {
        position: relative;
    }

    .img-museo-2 img {
        max-width: 115% !important;
        margin-top: 150px;
    }

    .museo-pan-data {
        text-align: center;
        position: absolute;
        top: 300px;
        width: 35%;
    }

    .museo-pan-data .title {
        font-size: 60px;
    }

    .museo-pan-data h2 {
        font-size: 24px;
    }

    .museo-pan-1 {
        left: 15px;
        top: 480px;
    }

    .museo-pan-2 {
        right: 15px;
    }

    .museo-img-2 {
        margin-top: -20px;
        z-index: 2;
    }

    .paragrafo-museo-2 {
        z-index: 9;
    }

    .museo-paragrafo-3 {
        margin-top: -90px;
    }

    .museo-paragrafo-3 img {
        margin-top: 60px;
        width: 120%;
        max-width: initial;
    }

    .relative {
        position: relative;
    }

    .absolute {
        position: absolute;
    }

    .w-150 {
        max-width: 150%;
        z-index: -1;
    }

    .h-100 {
        height: 110%;
        max-width: initial;
        top: 0;
    }

    .last-paragraph .single-post-data {
        margin-top: 0px !important;
        position: relative;
        z-index: 2;
    }

    .last-paragraph img {
        right: 0;
        width: 120%;
        max-width: initial;
        margin-top: 60px;
    }

    .veniteatrovarci {
        margin-top: -17%;
        width: 71%;
    }
}

@media only screen and (min-width: 992px) {

    .f-bottom {
        bottom: -50px;
    }

    .paragrafo-1 img {
        width: 102%;
        max-width: initial;
    }

    .museo-top-content {
        font-size: 30px;
        line-height: 40px;
    }

    .museo-pan-1 {
        top: 580px;
    }

    .museo-pan-data .title {
        font-size: 90px;
    }

    .museo-pan-data h2 {
        font-size: 30px;
    }

    .museo-paragrafo-3 img {
        z-index: 0;
        margin-top: 80px;
    }

    .w-120.image-responsive-full {
        max-width: initial;
        width: 120%;
    }

    .last-paragraph {
        margin-top: -60px;
    }

    .last-paragraph img {
        margin-top: 120px;
        width: 110%;
        max-width: initial;
        position: absolute;
        right: 0;
    }

    .last-paragraph .single-post-data {
        margin-left: 22px !important;
        border-radius: 0 0 20px 20px !important;
        padding-top: 29px !important;
        margin-top: 66px !important;
    }

    .veniteatrovarci {
        margin-top: -16%;
        width: 71%;
    }

    section.px-container.single-poll .d-lg-block .videoplayer-wrapper {
        width: 83%;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 47%;
    }

}

@media only screen and (min-width: 1200px) {
    .last-paragraph .single-post-data {
        margin-top: 42px !important;
    }
}

@media only screen and (min-width: 1400px) {
    .museo-pan-1 {
        top: 760px;
    }

    .museo-top-content {
        font-size: 40px;
        line-height: 50px;
    }
}

/** Trenta **/
.page-template-trenta-di-striscia .video-frame {
    background: #ffeb00;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.49);
    padding-top: 30px;
}

.page-template-trenta-di-striscia .post-top-data {
    background-color: #ffeb00 !important;

}

.page-template-trenta-di-striscia .post-top-data h2 {
    color: #000;
    text-shadow: none;
    font-style: normal;
}

.video-trenta {
    margin-top: -90px;
    margin-bottom: 0px;
    padding-bottom: 0 !important;
}

.video-trenta>article {
    margin-bottom: 0 !important;
}

@media only screen and (min-width: 768px) {
    .video-trenta {
        margin-top: -130px;
    }

    .page-template-trenta-di-striscia .post-top-data {
        padding-left: 9% !important;
        padding-right: 9% !important;

    }
}

@media only screen and (min-width: 1400px) {
    .video-trenta {
        margin-top: -215px;
    }
}

/** Mozziconi **/

.mozziconi-mappa {
    margin-top: -60px;
    z-index: 99;
    position: relative;
    padding: 0 10px;
}

.page-header.mozziconi-page::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 78.6px;
    z-index: 0;
    background-color: #2700ff;
}

.mozziconi-content {
    background-color: #ffffff;
    margin: 0px 15px;
    padding: 25px;
    border-radius: 10px;
    color: #0090ff;
    font-size: 20px;
    text-align: center;
}

.mozziconi-country-lists>h2 {
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    margin: 20px 15px;
    text-align: center;
}

.comuni {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: lighter;
    font-size: 30px;
}

.comuni li::before {
    content: '- ';
}

.wrapper-comuni {
    padding-left: 30px;
    padding-right: 30px;
}

.regione-label {
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    border-top: 2px solid #ffffff;
    font-style: italic;
    padding-bottom: 5px;
    cursor: pointer;
}

.regione-label.openPan {
    background: #ffffff;
    color: #38a6ff;
    border-radius: 20px;
    margin-left: -10px;
    margin-right: -10px;
}

@media only screen and (min-width: 769px) {
    .mozziconi-content {
        font-size: 20px;
        text-align: left;
    }

    .mozziconi-mappa {
        margin-top: -74px;
        z-index: 99;
        position: relative;
        padding: 0 10px;
        width: 153%;
        margin-left: -100px;
    }
}

@media only screen and (min-width: 992px) {
    .page-header.mozziconi-page::before {
        height: 213px;
    }

    .mozziconi-country-lists>h2 {
        font-size: 45px;
        margin-bottom: 40px;
    }

    .regione-label {
        border-top: none;
        border-bottom: 2px solid #ffffff;
    }

    .wrapper-mozziconi-content {
        margin-top: 125px;
    }

    .mozziconi-content {
        font-size: 20px;
        text-align: left;
    }

    .mozziconi-mappa {
        width: 150%;
        margin-left: -127px;
    }
}

@media only screen and (min-width: 1200px) {
    .mozziconi-content {
        font-size: 27px;
    }

    .mozziconi-mappa {
        width: 163%;
        margin-left: -154px;
    }
}

@media only screen and (min-width: 1400px) {
    .mozziconi-mappa {
        width: 168%;
        margin-left: -241px;
        margin-top: -121px;
    }
}

/* Gabibbo */
.carousel-page-sigle {
    margin-top: -30px;
}

.wrapper-gabibbo-content {
    position: relative;
    margin-left: 2px;
    margin-right: 2px;
}

.page-header.gabibbo-page::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 78.6px;
    z-index: 0;
    background-color: #ff0000;
}

.gabibbo-dett-list {
    font-family: 'Lato', sans-serif !important;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.gabibbo-dett-list li {
    background-color: #ffeb00;
    color: #ff0000;
    font-size: 28px;
    line-height: 38px;
    text-align: center;
    font-weight: bold;
    margin: 0 10px;
    text-shadow: #ffffff 2px 2px;
}

.gabibbo-dett-list li:first-child {
    padding-top: 28px;
    border-radius: 10px 10px 0 0;
}

.gabibbo-dett-list li:last-child {
    padding-bottom: 28px;
}

.gabibbo-content {
    font-family: 'Lato', sans-serif !important;
    background-color: #fff;
    text-align: center;
    font-size: 23px;
    margin: 0 10px;
    padding: 57px 24px;
    border-radius: 0 0 10px 10px
}

.slider-sigle-gabibbo {
    margin-bottom: 100px;
}

.slider-sigle-gabibbo article .post-image-wrapper {
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: -25px;
    z-index: 4;
}

.slider-sigle-gabibbo article .post-elements-wrapper {
    position: relative;
    z-index: 9;
}

.sigle-gabibbo .post-elements-wrapper {
    margin-top: 32px;
}

@media only screen and (min-width: 992px) {
    .gabibbo-dett-list {
        position: absolute;
        z-index: 9;
        right: 0;
        margin-top: -100px;
    }

    .gabibbo-content {
        text-align: left;
        padding: 165px 40% 57px 79px;
        border-radius: 20px;
        margin-top: 90px;
        font-size: 30px;
        line-height: 40.8px;
        margin-bottom: 97px;
    }

    .gabibbo-dett-list li {
        margin-right: -20px;
        margin-bottom: 20px;
        /* border-radius: 20px 0 0 20px !important; */
        text-align: right;
        background: none;
    }

    .gabibbo-dett-list li:nth-child(1) {
        font-size: 80px;
        line-height: 1;
    }

    .gabibbo-dett-list li:nth-child(2) span {
        font-size: 90px;
        line-height: 1;
        text-align: center;
        padding-left: 80px;
    }

    .gabibbo-dett-list li:nth-child(3) {
        font-size: 50px;
        line-height: 1;
    }

    .gabibbo-dett-list li:nth-child(4) {
        font-size: 60px;
        line-height: 1;
    }

    .gabibbo-dett-list li:nth-child(5) {
        font-size: 70px;
        line-height: 1;
    }

    .gabibbo-dett-list li span {
        background-color: #ffeb00;
        display: inline-block;
        padding: 24px;
        border-radius: 20px 0 0 20px;
    }
}

@media only screen and (min-width: 1400px) {
    .carousel-page-sigle {
        margin-top: -130px;
    }

    .page-header.gabibbo-page::before {
        content: " ";
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
        width: 100%;
        height: 225.9px;
        z-index: 0;
        background-color: #ff0000;
    }

    .gabibbo-dett-list li:nth-child(1) {
        font-size: 100px;
    }

    .gabibbo-dett-list li:nth-child(2) span {
        font-size: 120px;
        padding-left: 80px;
    }

    .gabibbo-dett-list li:nth-child(3) {
        font-size: 80px;
    }

    .gabibbo-dett-list li:nth-child(4) {
        font-size: 90px;
    }

    .gabibbo-dett-list li:nth-child(5) {
        font-size: 100px;
    }

    .gabibbo-dett-list li span {
        background-color: #ffeb00;
        display: inline-block;
        padding: 24px;
        border-radius: 20px 0 0 20px;
    }


    .gabibbo-content {
        text-align: left;
        padding: 165px 40% 57px 79px;
        border-radius: 20px;
        margin-top: 90px;
        font-size: 40px;
        line-height: 50.8px;
    }
}

.page-header.gabibbo-page .img-header {
    position: relative;
    z-index: 99;
    width: 100%;
}


/** Video Gabibbo **/
.page-template-sigle-gabibbo .testoJingle {
    margin-top: 30px;
    text-align: center;
    font-size: 16px;
    color: #fff;background-color: red;
}

.wrapper_video_sigla {
    background-color: red;
    padding: 15px 0 30px 0;
    text-align: center;
    color: #ffffff;
}

.wrapper_video_sigla .video_sigla {
    min-height: 227px;
    background-color: #333;
    margin: 20px -20px;
}

.wrapper_video_sigla h2 {
    text-transform: uppercase;
    font-size: 33px;
    text-shadow: 2px 2px 2px #000;
    padding: 0 15px;
}

.wrapper_video_sigla .testo_sigla {
    padding-bottom: 20px;
}

#sigla-wrapper {
    margin-top: -40px;
}

@media only screen and (min-width: 768px) {
    .wrapper_video_sigla .video_sigla {
        min-height: 380px;
    }
}

@media only screen and (min-width: 992px) {
    .wrapper_video_sigla .video_sigla {
        min-height: 580px;
    }

    .wrapper_video_sigla h2 {
        font-size: 50px;
    }

    .page-template-sigle-gabibbo  .testoJingle {
        font-size: 30px;
    }

    .wrapper_video_sigla .testo_sigla {
        padding-bottom: 30px;
        display: block;
        margin: 0 auto;
        width: 580px;
    }
}

@media only screen and (min-width: 1440px) {
    .wrapper_video_sigla .video_sigla {
        min-height: 680px;
    }
}

/* Footer */

#footer {
    padding-top: 4rem !important;
    padding-bottom: 4.5em !important;
    background-color: #ffeb00;
    /* background-image: url('images/bg-texture.png'); */
    background-image: url(images/page-pattern.svg);
    position: relative;
}

#footer .px-container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

#footer .btn-to-top-wrapper {
    margin-top: -28px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
}

#footer .btn-to-top {
    padding: 1rem 2rem 1rem 4rem;
    font-size: 20px;
    line-height: 1;
    background-color: #0090ff;
    background-image: url('images/icons/back-to-top-icon.svg');
    background-size: 32px 32px;
    background-position: 14px center;
    background-repeat: no-repeat;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 25px;
    text-transform: uppercase;
}

#footer .footer-logo {
    width: 200px;
    height: auto;
}

/* #footer .bg-texture {
    background-color: #ffeb00;
    background-image: url('images/bg-texture.png');
    position: absolute;
    top: 0;
    right: -250px;
    bottom: -250px;
    left: -250px;
    z-index: -1;
    transform: rotate(-15deg);
} */

#footer .search-btn {
    margin-bottom: 5rem;
    padding: .5rem 1.25rem;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 8px;
    font-size: 28px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #000000;
    text-align: left;
    display: flex;
    align-items: center;
    border: 1px solid #333;
}

#footer .footer-menu {
    margin-top: 5rem;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

#footer .footer-menu>li {
    flex: 0 0 50%;
}

#footer .footer-menu>li>a {
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.25;
    color: #000000;
    text-decoration: none;
}

#footer .footer-menu>li>a:hover {
    text-decoration: underline;
}

#footer .footer-menu>li>a:before {
    margin-right: .5rem;
    content: '';
    display: inline-block;
    width: 8px;
    height: 3px;
    background-color: #000000;
    vertical-align: middle;
}

#footer .social-icons img {
    width: 24px;
    height: 24px;
}

#footer .footer-copyright {
    font-size: 12px;
    line-height: 1.25;
}

#footer .footer-bottom-menu {
    margin-bottom: 1.5rem;
    padding: 0;
    padding-bottom: .75rem;
    border-bottom: 3px solid #000000;
    list-style: none;
}

#footer .footer-bottom-menu>li {
    text-align: center;
}

#footer .footer-bottom-menu>li>a {
    font-size: 16px;
    font-weight: 900;
    font-style: italic;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
}

#footer .footer-bottom-menu>li>a:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 576px) {
    #footer .px-container {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
}

@media only screen and (min-width: 768px) {
    #footer {
        padding-top: 2.5rem !important;
    }

    #footer .footer-logo {
        width: 220px;
    }

    #footer .footer-bottom-menu {
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    #footer .footer-copyright {
        font-size: 16px;
        font-weight: 900;
        font-style: italic;
    }

    #footer .footer-bottom-menu>li {
        text-align: left;
    }

    #footer .footer-bottom-menu>li+li {
        margin-left: 4rem;
    }

    #footer .footer-bottom-menu>li>a {
        font-size: 18px;
        line-height: 1.15;
    }
}

@media only screen and (min-width: 992px) {
    #footer .footer-logo {
        width: 280px;
    }

    #footer .social-icons img {
        width: 40px;
        height: 40px;
    }

    #footer .footer-bottom-menu>li+li {
        margin-left: 7.5rem;
    }
}

@media only screen and (min-width: 1200px) {
    #footer .footer-logo {
        width: 360px;
    }

    #footer {
        padding-bottom: 8rem !important;
    }
}

@media only screen and (min-width: 1400px) {
    #footer {
        padding-top: 3rem !important;
        padding-bottom: 6rem !important;
    }

    #footer .px-container {
        padding-left: 4.5rem !important;
        padding-right: 4.5rem !important;
    }
}

@media only screen and (min-width: 1600px) {
    #footer .footer-logo {
        width: auto;
    }

    #footer .search-btn {
        padding: .7rem 2rem;
        font-size: 35px;
    }

    #footer .social-icons img {
        width: 48px;
        height: 48px;
    }

    #footer .footer-menu>li>a {
        font-size: 25px;
    }

    #footer .footer-bottom-menu>li>a {
        font-size: 22px;
    }

    #footer .footer-copyright {
        font-size: 20px;
    }
}


/* Footer Top */

#footer-top .card-sos-gabibbo {
    background-color: #ff0000;
    color: #ffffff;
    border-radius: 10px;
}

#footer-top .card-sos-gabibbo h2 {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
}

#footer-top .card-sos-gabibbo p {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
}

#footer-top .card-sos-gabibbo .btn {
    padding: .5rem 2.5rem;
    color: #ffffff;
    font-size: 32px;
    font-style: italic;
    border: 4px solid #ffffff;
    border-radius: 35px;
    text-transform: uppercase;
}

#footer-top .card-sos-gabibbo .btn:hover {
    background-color: #ffffff;
    color: #ff0000;
}

#footer-top .btn-white {
    height: 125px;
    padding: 1rem;
    font-size: 32px;
    line-height: 1.05;
    border: 3px solid #007cff;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (min-width: 768px) {
    #footer-top .card-sos-gabibbo {
        border-radius: 25px;
    }

    #footer-top .card-sos-gabibbo h2 {
        font-size: 48px;
        line-height: 1;
        text-align: left;
    }

    #footer-top .card-sos-gabibbo p {
        font-size: 24px;
        line-height: 1;
        text-align: left;
    }

    #footer-top .card-sos-gabibbo .btn {
        border-radius: 0;
        font-size: 26px;
    }

    #footer-top .btn-white {
        height: 100%;
        padding: 2rem .75rem;
        font-size: 36px;
        border: 3px solid #ffffff;
    }
}

@media only screen and (min-width: 992px) {
    #footer-top .card-sos-gabibbo h2 {
        font-size: 60px;
    }

    #footer-top .card-sos-gabibbo p {
        font-size: 30px;
    }

    #footer-top .card-sos-gabibbo .btn {
        font-size: 36px;
        padding: .5rem 4rem;
    }
}

@media only screen and (min-width: 1200px) {
    #footer-top .card-sos-gabibbo h2 {
        font-size: 80px;
    }

    #footer-top .card-sos-gabibbo p {
        font-size: 40px;
    }

    #footer-top .card-sos-gabibbo .btn {
        font-size: 44px;
    }
}

@media only screen and (min-width: 1600px) {
    #footer-top .card-sos-gabibbo h2 {
        font-size: 120px;
    }

    #footer-top .card-sos-gabibbo p {
        font-size: 60px;
    }

    #footer-top .card-sos-gabibbo .btn {
        padding: 1rem 4rem;
        font-size: 68px;
    }

    #footer-top .btn-white {
        padding: 2.5rem .75rem;
        font-size: 48px;
    }
}

@media only screen and (min-width: 1920px) {
    #footer-top .btn-white {
        font-size: 60px;
    }
}


/* Buttons */

.btn {
    font-weight: 900;
    border-radius: 15px;
}

.btn-blue-b-white {
    background-color: #0090ff;
    color: #ffffff !important;
    border: solid 3px #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-blue-b-white:hover {
    background-color: #ffffff;
    color: #0090ff !important;
}

.btn-blue-c-white {
    background-color: #0090ff;
    color: #fff;

    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-blue-c-white:hover {
    background-color: #0090ff;
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: #0090ff;
    border: solid 3px #ffffff;
}

.btn-white:hover {
    background-color: #0090ff;
    color: #ffffff;
}

.btn-white-red {
    background-color: #fff;
    color: #ff0000;
    border: solid 3px #ffffff;
}

.btn-white-red:hover {
    background-color: #ff0000;
    color: #ffffff;
}

.btn-white-b-black {
    background-color: #fff;
    color: #000;
    border: solid 3px #000;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.5);
}

.btn-white-b-black:hover {
    background-color: #000;
    color: #fff;
}

.btn-white-b-blue {
    background-color: #fff;
    color: #0090ff;
    border: solid 3px #007cff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-white-b-blue:hover {
    background-color: #007cff;
    color: #fff;
}

.btn-white-b-blue-dark {
    background-color: #fff;
    color: #2700ff;
    border: solid 3px #2700ff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-white-b-blue-dark:hover {
    background-color: #2700ff;
    color: #fff;
}

.btn-white-b-magenta {
    background-color: #fff;
    color: #ff00e2;
    border: solid 3px #ff00e2;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-white-b-magenta:hover {
    background-color: #ff00e2;
    color: #fff;
}

.btn-white-b-yellow-c-blue {
    background-color: #fff;
    color: #0090ff;
    border: solid 3px #ffeb00;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-white-b-yellow-c-blue:hover {
    background-color: #ffeb00;
    color: #0090ff;
}

.btn-yellow-b-blue {
    background-color: #ffeb00;
    color: #0090ff !important;
    border: solid 3px #0090ff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-yellow-b-blue:hover {
    background-color: #0090ff;
    color: #ffeb00 !important;
}

.btn-yellow-c-blue {
    background-color: #ffeb00;
    color: #0090ff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.btn-yellow-c-blue:hover {
    color: #0090ff;
}

.big-buttons .btn {
    width: 100%;
    padding: 1rem;
    font-size: 28px;
    line-height: 1;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .btn {
        border-radius: 20px;
    }

    .big-buttons .btn {
        padding: .8rem 1rem;
        font-size: 40px;
        border-width: 10px;
        text-transform: none;
    }
}

@media only screen and (min-width: 1400px) {
    .big-buttons .btn {
        font-size: 60px;
    }
}


/* Inputs */

.form-control.search {
    height: 42px;
    padding-left: 4rem;
    padding-right: 2rem;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    font-style: italic;
    border: 0;
    border-radius: 15px;
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.98);
}

.form-control.search::placeholder {
    color: #000000;
}

.input-search-wrapper {
    position: relative;
}

.input-search-wrapper button {
    margin: 0;
    padding: 0;
    background: none;
    border: 0;
    outline: 0;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translate(0, -50%);
}

.input-search-wrapper button img {
    width: auto;
    height: 26px;
}

@media only screen and (min-width: 768px) {
    .form-control.search {
        height: 50px;
        padding-left: 4.2rem;
        font-size: 24px;
        background-size: 34px;
    }

    .input-search-wrapper button img {
        height: 36px;
    }
}

@media only screen and (min-width: 1600px) {
    @media only screen and (min-width: 768px) {
        .form-control.search {
            height: 60px;
            font-size: 32px;
            padding-left: 5rem;
        }
    }
}


/* Custom Select */

.custom-select {
    position: relative;
}

/* .custom-select:before {
    content: '';
    position: absolute;
    top: 0;
    right: 50px;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
} */

.custom-select .nice-select {
    padding: 0;
    padding-right: 60px;
    float: none;
    position: initial;
    background: none;
    background-image: url('images/icons/menu-toggle.svg');
    background-size: 50px 40px;
    background-position: right center;
    background-repeat: no-repeat;
    border: none;
}

.custom-select.capitalized .nice-select .current,
.custom-select.capitalized .nice-select .option {
    text-transform: capitalize;
}

.custom-select .nice-select.open {
    background-image: url('images/icons/menu-toggle-light.svg');
}

.custom-select .dropdown-icon:hover {
    cursor: pointer;
}

.custom-select .nice-select:after {
    display: none;
}

.custom-select .nice-select .current {
    height: 42px;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 15px;
    white-space: normal;
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.98);
}

.custom-select .nice-select .list {
    max-height: 440px;
    margin-top: 0;
    overflow-y: auto;
    border-radius: 15px;
    right: 0;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.5);
    border: 10px solid #ffffff;
    scrollbar-width: 7px;
    scrollbar-color: #10ceff #87e6ff;
}

.custom-select .nice-select .list::-webkit-scrollbar {
    width: 7px;
    /* background-color: #87e6ff; */
    background-color: rgba(0, 0, 0, 0);
}

.custom-select .nice-select .list::-webkit-scrollbar-thumb {
    background-color: #10ceff;
}

.custom-select .nice-select li.option {
    padding: 10px 20px 10px 50px;
    font-size: 24px;
    line-height: 1.05;
    font-weight: bold;
    font-style: italic;
    position: relative;
    white-space: break-spaces;
}

.custom-select .nice-select li.option[data-value=""] {
    padding-left: 15px;
    opacity: .75;
}

.custom-select .nice-select li.option[data-value=""]:before {
    display: none !important;
}

.custom-select .list li:first-of-type {
    display: none;
}

.custom-select .list li.disabled {
    font-size: 16px;
    text-align: center;
    display: block;
}

@media only screen and (min-width: 768px) {
    /* .custom-select:before {
        right: 75px;
    } */

    .custom-select .nice-select {
        height: 50px;
        background-size: 64px 54px;
        padding-right: 76px;
    }

    .custom-select .nice-select .current {
        height: 50px;
        font-size: 24px;
        line-height: .9;
    }
}

@media only screen and (min-width: 992px) {
    .custom-select .nice-select li.option {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .custom-select .nice-select .list {
        border-width: 20px;
    }

    .custom-select .nice-select li.option {
        padding-left: 60px;
    }

    .custom-select .nice-select li.option[data-value=""] {
        padding-left: 20px;
    }

    .custom-select .nice-select li.option:before {
        left: 20px;
    }
}

@media only screen and (min-width: 1600px) {
    .custom-select .nice-select {
        height: 60px;
        background-size: 75px 60px;
        padding-right: 90px;
    }

    .custom-select .nice-select .current {
        height: 60px;
        font-size: 32px;
    }

    .custom-select .nice-select li.option {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1920px) {
    .custom-select .list li.disabled {
        font-size: 22px;
    }
}


/* Date Select */

.date-select {
    padding-right: 60px;
    background-image: url('images/icons/calendar-toggle.svg');
    background-size: 50px 40px;
    background-position: right center;
    background-repeat: no-repeat;
}

.date-select:hover {
    cursor: pointer;
}

.date-select.active {
    background-image: url('images/icons/calendar-toggle-light.svg');
}

.date-select .form-control {
    height: 42px;
    font-size: 22px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    color: #000000;
    border-radius: 15px;
    border: 0;
    box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 0.98);
}

.date-select .form-control:hover {
    cursor: pointer;
}

.date-select .form-control::placeholder {
    color: #000000;
}

.date-select .date-select-icon {
    width: 50px;
    height: 40px;
    margin-left: 15px;
}

.date-select .date-select-icon:hover {
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .date-select {
        height: 50px;
        background-size: 60px 54px;
        padding-right: 74px;
    }

    .date-select .form-control {
        height: 50px;
        font-size: 24px;
    }
}

@media only screen and (min-width: 1600px) {
    .date-select {
        height: 60px;
        background-size: 75px 60px;
        padding-right: 90px;
    }

    .date-select .form-control {
        height: 60px;
        font-size: 32px;
    }
}


/* jQuery UI - Datepicker */

.ui-datepicker {
    margin-top: -46px;
    padding: 15px;
    border-radius: 15px;
}

.ui-datepicker .ui-datepicker-header {
    background: none;
    border: 0;
}

.ui-datepicker .ui-datepicker-title {
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    text-decoration: underline;
}

.ui-datepicker th {
    width: 14.28%;
    font-size: 16px;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.35)
}

.ui-datepicker tbody td .ui-state-default {
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    background: none !important;
    color: #000000 !important;
    border: 0 !important;
    border-radius: 5px;
}

.ui-datepicker tbody td.ui-datepicker-other-month a {
    color: rgba(0, 0, 0, .5) !important;
}

.ui-datepicker tbody td a:hover {
    background-color: rgba(0, 0, 0, 0.05) !important;
}

.ui-datepicker tbody td a.ui-state-active {
    background-color: #ffeb00 !important;
    color: #00cbff !important;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    width: 36px;
    height: 36px;
    border-radius: 5px;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
    border: 0;
}

.ui-datepicker .ui-datepicker-prev {
    top: 2px;
    left: 2px;
}

.ui-datepicker .ui-datepicker-prev .ui-icon {
    background-image: url('images/icons/arrow-left-dark.svg');
    background-position: center center;
    background-size: contain;
}

.ui-datepicker .ui-datepicker-next {
    top: 2px;
    right: 2px;
}

.ui-datepicker .ui-datepicker-next .ui-icon {
    background-image: url('images/icons/arrow-right-dark.svg');
    background-position: center center;
    background-size: contain;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    cursor: pointer;
}

@media only screen and (max-width: 576px) {
    .ui-datepicker {
        width: auto !important;
        left: .5rem !important;
        righT: .5rem !important;
    }
}

@media only screen and (min-width: 768px) {
    .ui-datepicker {
        margin-top: 0px;
    }
}

@media only screen and (min-width: 1920px) {
    .ui-datepicker {
        padding: 20px;
    }

    .ui-datepicker .ui-datepicker-prev,
    .ui-datepicker .ui-datepicker-next {
        width: 40px;
        height: 40px;
    }

    .ui-datepicker .ui-datepicker-title {
        font-size: 24px;
    }

    .ui-datepicker th {
        font-size: 20px;
    }

    .ui-datepicker tbody td a {
        font-size: 20px;
    }
}


.episodes-search,
.top-search,
.top-search div.date-select input {
    visibility: hidden;
}

.top-search div.date-select input {
    display: none;
}

/* Top Search */
.top-search.search-video .custom-select .nice-select li.option:before {
    width: 20px;
    height: 20px;
    content: '';
    display: block;
    border: solid 2px #00cbff;
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 15px;
}

.top-search.search-video .custom-select .nice-select li.option.selected:before {
    background-color: #ffeb00;
}

.top-search .top-search-results-title {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #2700ff;
}

.top-search.search-video .top-search-results-title {
    color: #00cbff;
}

.top-search.search-video .top-search-results-title span {
    color: #ffffff;
}

@media only screen and (max-width: 992px) {
    #episodes-search {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .top-search .top-search-results-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .top-search .col-category {
        flex: 0 0 22%;
    }

    .top-search .col-subcategory {
        flex: 0 0 26%;
    }

    .top-search .col-date {
        flex: 0 0 26%;
    }

    .top-search .col-keywords {
        flex: 0 0 26%;
    }
}

@media only screen and (min-width: 1400px) {
    .top-search .top-search-results-title {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1600px) {
    .top-search .col-category {
        flex: 0 0 22%;
    }

    .top-search .col-subcategory {
        flex: 0 0 28%;
    }

    .top-search .col-date {
        flex: 0 0 22%;
    }

    .top-search .col-keywords {
        flex: 0 0 28%;
    }
}


/* Home */

/* .home .post-top .post-top-data {
    background-color: rgba(0, 10, 255, 0.65);
} */

.home .post-top .post-top-data-top a {
    text-decoration: none;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(1) {
    z-index: 1000;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(2) {
    z-index: 999;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(3) {
    z-index: 998;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(4) {
    z-index: 997;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(5) {
    z-index: 996;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(6) {
    z-index: 995;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(7) {
    z-index: 994;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(8) {
    z-index: 993;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(9) {
    z-index: 992;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(10) {
    z-index: 991;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(11) {
    z-index: 990;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(12) {
    z-index: 989;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(13) {
    z-index: 988;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(14) {
    z-index: 987;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(15) {
    z-index: 986;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(16) {
    z-index: 985;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(17) {
    z-index: 984;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(18) {
    z-index: 983;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(19) {
    z-index: 982;
}

.home .elementor-widget-wrap>.elementor-element:nth-child(20) {
    z-index: 981;
}


/* Single Episode */
.page-template-ultima-puntata .page-header .date-select {
    position: absolute !important;
    top: -20px;
    right: .5rem;
    z-index: 1000;
}

.single-episode .page-header .date-select {
    position: absolute;
    top: -20px;
    right: .5rem;
    z-index: 1000;
    padding-right: 0;
}

.page-header.yellow.header-novideo {
    min-height: 80px !important;
}

.single-episode .page-header .date-select input {
    /* visibility: hidden; */
    height: 42px;
    font-size: 22px;
    width: 70%;
}

.single-episode .episode-content {
    margin-top: -30px;
    position: relative;
}

.single-episode .episode-content .episode-content-box {
    background-color: #ffeb00;
    overflow-x: hidden;
}

.single-episode .episode-content .date-day {
    text-align: center;
    text-decoration: none;
    color: #000000;
}

.single-episode .episode-content a.date-day.slick-current:hover {
    cursor: pointer;
}

.single-episode .episode-content .date-day-name {
    font-size: 22px;
    line-height: 1;
    font-style: italic;
}

.single-episode .episode-content .date-day-date {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
}

.single-episode .episode-content .episode-date-p {
    font-style: italic;
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.4;
}

.single-episode .episode-content .episode-date {
    font-style: italic;
    font-size: 54px;
    font-weight: 900;
    line-height: 0.9;
}

.single-episode .episode-content .episode-date.year {
    font-size: 50px;
}

.single-episode .episode-content .episode-elements {
    text-align: center;
}

.single-episode .episode-content .episode-image {
    width: 100%;
    height: 400px;
}

.single-episode .episode-content .episode-services-title {
    background-color: #000000;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 900;
    font-size: 34px;
    text-transform: uppercase;
}

.single-episode .episode-content .episode-services-links {
    font-weight: 900;
    text-align: center;
}

.single-episode .episode-content .episode-service-link {
    color: #000000;
    font-weight: 900;
    font-size: 24px;
    text-decoration: underline;
    letter-spacing: 0.25px;
}


.single-episode .episode-content .dates-slider {
    visibility: hidden;
}

.single-episode .episode-content .dates-slider.slick-initialized {
    visibility: visible;
}

.single-episode .episode-content .dates-slider {
    margin-left: 0 auto;
}

.single-episode .episode-content .dates-slider .slick-slide {
    transition: all ease-in-out .2s;
}

.single-episode .episode-content .dates-slider .slick-slide.slick-current {
    opacity: 1;
}

.archive.category.single-episode .page-header .date-select {
    position: inherit;
}

.archive.category.single-episode .page-header .date-select input {
    width: 100% !important;
}

.single-video .videoplayer-wrapper,
.single-episode .videoplayer-wrapper, 
.single-news .videoplayer-wrapper,
.page-template-trenta-di-striscia .post-top .post-top-image,
.page-template-sigle-gabibbo .video_sigla {
    padding-bottom: 45%;
    width: 80%;
    margin: 0 auto;
}

.single-video .video-content .player-frame {
    background-color: rgba(39, 0, 255, 0.65);
    padding-top: 30px;
}

.single-episode .videoplayer-container {
    background-color: #ffeb00;
    padding-top: 15px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.49);
}

@media only screen and (max-width: 575px) {
    .single-episode .episode-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .single-episode .episode-content .date-day-date {
        font-size: 25px;
    }
}

@media only screen and (min-width: 576px) {
    .single-episode .page-header .date-select {
        padding-right: 0;
    }
}

@media only screen and (min-width: 768px) {
    .single-episode .page-header .date-select {
        height: 42px;
        padding-right: 60px;
        right: 1.5rem;
        background-size: 50px 40px;
    }

    .archive.single-episode .page-header .date-select {
        width: 96%;
    }

    .archive.single-episode .page-header .date-select input {
        height: 50px;
        font-size: 24px;
        width: 100%;
    }

    .single-episode .page-header .date-select input {
        height: 50px;
        font-size: 24px;
        width: 100%;
    }

    .single-episode .page-header .date-select input {
        height: 42px;
        visibility: initial;
    }

    .single-episode .episode-content .date-day-name {
        font-size: 36px;
    }

    .single-episode .episode-content .date-day-date {
        font-size: 48px;
    }

    .single-video .video-content-box {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
}

@media only screen and (max-width: 567px) {
    .single-episode .page-header .date-select {
        position: absolute;
    }

    .date-select .form-control {
        font-size: 18px;
    }
}

@media only screen and (max-width: 992px) {
    .single-episode .page-header .page-title.text-left {
        text-align: left;
    }
}

@media only screen and (min-width: 992px) {
    .single-episode .episode-content-box {
        border-radius: 0 0 15px 15px;
    }

    .single-episode .episode-content .episode-elements {
        text-align: left;
    }

    .page-header.yellow.header-novideo {
        min-height: 100px !important;
    }
}

@media only screen and (min-width: 1200px) {
    .single-episode .page-header .date-select {
        height: 60px;
        padding-right: 90px;
        top: -30px;
        right: 2.5rem;
        background-size: 75px 60px;
        position: absolute;
        font-size: 22px;
    }

    .archive .page-header .date-select {
        font-size: 22px;
        height: 60px;
        padding-right: 90px;
        top: -30px;
        right: 2.5rem;
        background-size: 75px 53px;
        position: initial !important;
        background-position: top right;
    }


    .single-episode .page-header .date-select input {
        height: 60px;
    }

    .single-episode .episode-content .date-day-name {
        font-size: 30px;
    }

    .single-episode .episode-content .date-day-date {
        font-size: 42px;
    }

    .page-header.yellow.header-novideo {
        min-height: 120px !important;
    }  
}

@media only screen and (min-width: 1400px) {
    .single-episode .page-header .date-select {
        top: -30px;
        right: 4.5rem;
    }

    .single-episode .episode-content {
        margin-top: -140px;
    }

    .page-header.yellow.header-novideo {
        min-height: 150px !important;
    }

    .single-video .video-content-box {
        padding-left: 10% !important;
        padding-right: 10% !important;
    }
}

@media only screen and (min-width: 1600px) {
    .single-episode .page-header .date-select {
        width: initial;
    }

    .single-episode .episode-content .episode-date {
        line-height: 0.9;
    }

    .single-episode .episode-content .episode-date-p {
        font-size: 40px;
    }

    .single-episode .episode-content .episode-date {
        font-size: 68px;
    }

    .single-episode .episode-content .episode-date.year {
        font-size: 60px;
    }

    .archive.single-episode .page-header .date-select {
        background-size: 75px 62px;
    }

    .archive.single-episode .page-header .date-select input {
        height: 60px;
    }
}

@media only screen and (min-width: 1800px) {
    .single-episode .episode-content .date-day-name {
        font-size: 38px;
    }

    .single-episode .episode-content .date-day-date {
        font-size: 50px;
    }

    .single-episode .episode-content .episode-date-p {
        font-size: 50px;
    }

    .single-episode .episode-content .episode-date {
        font-size: 90px;
        line-height: 0.7;
    }

    .single-episode .episode-content .episode-date.year {
        font-size: 70px;
    }
}


/* Single Video */

.single-video .video-content {
    margin-top: -30px;
    position: relative;
}

.single-video .video-content .video-content-box {
    background-color: rgba(39, 0, 255, 0.65);
}

.single-video .video-content .video-title {
    font-size: 32px;
    line-height: 1.05;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    text-shadow: 2px 2px 0 #000;
    color: #ffffff;
}

.single-video .video-content .video-excerpt {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-video .video-content .video-excerpt.extended {
    display: none;
}

.single-video .video-content .read-more {
    font-size: 15px;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: #ffffff;
    text-decoration: underline;
    text-transform: uppercase;
}

.single-video .video-content .read-more span.opened,
.single-video .video-content .read-more.active span.closed {
    display: none;
}

.single-video .video-content .read-more.active span.opened {
    display: initial;
}

.single-video .video-content .video-date {
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    color: #ffffff;
}

.single-video .video-content .video-tag {
    margin-bottom: 1rem;
    padding: .25rem 1rem;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
    background-color: #ffffff;
    color: #2700ff;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
}

@media only screen and (max-width: 575px) {
    .single-video .video-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media only screen and (min-width: 576px) {
    .single-video .video-content {
        margin-top: 0;
    }
}

@media only screen and (min-width: 992px) {
    .single-video .video-content .video-title {
        font-size: 50px;
        line-height: 0.95;
        font-style: normal;
        text-align: left;
    }

    .single-video .video-content .video-excerpt {
        font-size: 30px;
        font-weight: 900;
        text-align: left;
        -webkit-line-clamp: 4;
    }

    .single-video .video-content .read-more {
        font-size: 20px;
        font-weight: normal;
        font-style: normal;
    }

    .single-video .video-content .video-date {
        font-size: 24px;
        text-align: right;
    }

    .single-video .video-content .video-tag {
        padding: .25rem 1.8rem;
        font-size: 20px;
    }
}

@media only screen and (min-width: 1400px) {
    .single-video .video-content .video-title {
        font-size: 60px;
    }

    .single-video .video-content .video-excerpt {
        font-size: 40px;
    }

    .single-video .video-content .read-more {
        font-size: 24px;
    }

    .single-video .video-content .video-date {
        font-size: 34px;
    }

    .single-video .video-content .video-tag {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1600px) {
    .single-video .video-content .video-title {
        font-size: 74px;
    }
}


/* Page 404 */

.error404 .elements-error {
    position: relative;
    top: -74px;
}

.error404 .buttons-container {
    background-color: #fff;
    border: solid 3px #fff;
}

.error404 .buttons-container .btn-yellow-b-blue {
    width: 100%;
    font-size: 28px;
    margin-bottom: 15px;
}

.error404 .error-container {
    background-color: #fff;
    width: 100%;
    padding-left: 38px;
    padding-right: 38px;
    padding-bottom: 0;
    border: solid 3px #fff;
}

.error404 .message-error {
    font-family: 'Lato', sans-serif !important;
    font-weight: 900;
    font-size: 40px;
    color: #ff0000;
    text-align: center;
}

.error404 .number-error {
    font-family: 'Lato', sans-serif !important;
    font-weight: 900;
    font-size: 150px;
    color: #ff0000;
    text-align: center;
}

.error404 .paragraph-error {
    font-family: 'Lato', sans-serif !important;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    text-align: center;
}



@media only screen and (min-width: 768px) {
    .error404 .buttons-container .btn-yellow-b-blue {
        font-size: 36px;
    }

    .error404 .error-container {
        width: 100%;
        padding-left: 38px;
        padding-right: 38px;
        padding-bottom: 10px;
        border: solid 5px #fff;
    }

    .error404 .message-error {
        font-size: 60px;
        line-height: 1;
    }

    .error404 .number-error {
        font-size: 180px;
        line-height: 1;
    }

    .error404 .paragraph-error {
        font-size: 26px;
        line-height: 1.3;
    }
}

@media only screen and (min-width:1200px) {
    .error404 .buttons-container {
        background-color: transparent;
        border: 0px;
    }

    .error404 .buttons-container .btn-yellow-b-blue {
        font-size: 40px;
        margin-bottom: 0;
    }

    .error404 .error-container {
        border-radius: 40px;
    }

    .error404 .number-error {
        font-size: 300px;
        line-height: 1;
    }

    .error404 .message-error {
        font-size: 70px;
        line-height: 1;
    }

    .error404 .paragraph-error {
        font-size: 36px;
        line-height: 1.3;
    }

    .error404 .b-1 {
        padding-right: 35px;
    }

    .error404 .b-2 {
        padding-left: 35px;
    }
}

@media only screen and (min-width:1400px) {
    .error404 .elements-error {
        top: -110px;
    }

    .error404 .buttons-container .btn-yellow-b-blue {
        font-size: 40px;
    }

    .error404 .number-error {
        font-size: 500px;
        line-height: 1;
    }

    .error404 .message-error {
        font-size: 80px;
        line-height: 1;
    }

    .error404 .paragraph-error {
        font-size: 40px;
        line-height: 1.3;
    }
}

@media only screen and (min-width: 1540px) {
    .error404 .buttons-container .btn-yellow-b-blue {
        font-size: 60px;
    }
}


/* Section Title */

.section-title {
    margin-bottom: 1rem;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.section-title .title {
    margin-bottom: 0;
    flex: 1;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
    color: #ffffff;
    text-shadow: 0 0 3px #000;
}

.section-title.small .title,
.section-title.small .link {
    font-size: 16px;
}

.section-title .link {
    flex: 0 0 auto;
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    font-style: italic;
    color: #ffffff;
    text-shadow: 0 0 3px #000;
    text-decoration: underline;
}

@media only screen and (min-width: 576px) {
    .section-title {
        align-items: center;
    }

    .section-title .link {
        line-height: 1;
    }
}

@media only screen and (min-width: 768px) {
    .section-title {
        margin-bottom: 1.5rem;
    }

    .section-title .title {
        font-size: 34px;
        text-shadow: 0 0 10px #000;
    }

    .section-title.small .title {
        font-size: 26px;
    }

    .section-title .link {
        font-size: 24px;
        text-shadow: 0 0 5px #000;
    }

    .section-title.small .link {
        font-size: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .section-title .title {
        font-size: 50px;
    }

    .section-title.small .title {
        font-size: 40px;
    }

    .section-title .link {
        font-size: 32px;
    }

    .section-title.small .link {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1600px) {
    .section-title .title {
        font-size: 64px;
        text-shadow: 0 0 15px #000;
    }

    .section-title.small .title {
        font-size: 44px;
        text-shadow: 0 0 10px #000;
    }

    .section-title .link {
        font-size: 40px;
        text-shadow: 0 0 10px #000;
    }

    .section-title.small .link {
        font-size: 32px;
        text-shadow: 0 0 10px #000;
    }
}

@media only screen and (min-width: 1920px) {
    .section-title .title {
        font-size: 80px;
    }

    .section-title.small .title {
        font-size: 50px;
    }

    .section-title .link {
        font-size: 50px;
    }

    .section-title.small .link {
        font-size: 44px;
    }
}

@media only screen and (max-width: 567px) {
    .tutti-i-servizi .section-title .link {
        width: 50%;
        text-align: right;
    }
}


/* Post Top */

.post-top a {
    text-decoration: none;
}

.post-top .post-top-image {
    min-height: 100%;
    padding-bottom: 56.15%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.post-top .post-top-data {
    height: 100%;
    padding: 1.5rem;
    background-color: rgba(0, 10, 255, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-top .post-top-title {
    font-size: 32px;
    line-height: 1.05;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-shadow: 2px 2px 0 #000000;
    text-align: center;
}

.post-top .post-top-title:hover {
    text-decoration: underline;
}

.post-top .post-top-excerpt {
    font-size: 22px;
    color: #ffffff;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-top .post-top-data-bottom {
    text-align: center;
}

.post-top .post-top-data-bottom a {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    text-decoration: underline;
    text-transform: uppercase;
}

@media only screen and (min-width: 768px) {
    .page-template-template-antonio-ricci-comments .comments>.row:nth-child(2n) {
        align-items: flex-start;
    }

    .page-template-template-antonio-ricci-comments .comments>.row {
        align-items: flex-end;
    }

    .post-top .post-top-data {
        padding: 2rem;
        padding-right: 5rem;
    }

    .post-top .post-top-title {
        line-height: 1;
        text-align: left;
    }

    .post-top .post-top-excerpt {
        line-height: 1;
        font-weight: 900;
        text-align: left;
    }

    .post-top .post-top-data-bottom {
        text-align: right;
    }
}

@media only screen and (min-width: 1200px) {
    .post-top .post-top-title {
        font-size: 44px;
        text-shadow: 5px 5px 0 #000000;
    }

    .post-top .post-top-excerpt {
        font-size: 32px;
    }

    .post-top .post-top-data-bottom a {
        font-size: 20px;
        font-weight: normal;
        font-style: normal;
    }
}

@media only screen and (min-width: 1600px) {
    .post-top .post-top-data {
        padding-right: 8rem;
    }

    .post-top .post-top-title {
        font-size: 74px;
    }

    .post-top .post-top-excerpt {
        font-size: 40px;
    }

    .post-top .post-top-data-bottom a {
        font-size: 24px;
    }
}


/* Main Slider */
.main-slider {
    background-color: rgba(0, 10, 255, 0.65);
}

.main-slider.slick-initialized .post-top.d-none {
    visibility: visible !important;
    display: block !important;
}

.main-slider.slick-slider .slick-prev {
    left: 20px;
}

.main-slider.slick-slider .slick-next {
    right: 20px;
}

.works-slider {
    display: flex;
}

.works-slider .work-post-wrapper {
    width: 380px;
    margin: 0 5px;
}

.works-slider .work-post-wrapper .post {
    width: 380px;
}

.slider:not(.main-slider) {
    display: flex;
}

.slider:not(.main-slider) article.post {
    width: 412px;
    margin: 0 5px;
    display: inline-block;
}

.slider:not(.main-slider) article.post .post-container {
    width: 412px;
}

@media only screen and (min-width: 1600px) {

    .main-sliderslick-slider .slick-prev,
    .main-sliderslick-slider .slick-next {
        width: 50px;
        height: 86px;
    }

    .main-sliderslick-slider .slick-prev {
        left: 50px;
    }

    .main-sliderslick-slider .slick-next {
        right: 50px;
    }
}

@media only screen and (max-width: 1920px) {
    .default-slider.slick-slider .slick-next,
    .default-slider.slick-slider .slick-prev {
        background-size: 25px !important;
    }
}


@media only screen and (max-width: 1200px) {
    .default-slider.slick-slider .slick-next,
    .default-slider.slick-slider .slick-prev {
        background-size: 16px !important;
    }

    .default-slider.slick-slider .slick-next {
        right: -1.5em !important;
        top: 20px !important;
    }

    .default-slider.slick-slider .slick-prev {
        left: -1.5em !important;
        top: 20px !important;
    }
}

@media only screen and (max-width: 992px) {
    .default-slider.slick-slider .slick-next,
    .default-slider.slick-slider .slick-prev {
        background-size: 14px !important;
    }
}

@media only screen and (max-width: 567px) {
    .default-slider.slick-slider .slick-next {
        background-position-x: 12px !important;
    }

    .default-slider.slick-slider .slick-prev {
        background-position-x: 25px !important;
    }

    .default-slider.slick-slider .slick-next,
    .default-slider.slick-slider .slick-prev {
        background-size: 10px !important;
    }

    .slider:not(.main-slider) article.post {
        width: 215px;
    }

    .slider:not(.main-slider) article.post .post-container {
        width: 215px;
    }

    .works-slider .work-post-wrapper {
        width: 260px;
        margin: 0 5px;
    }

    .works-slider .work-post-wrapper .post {
        width: 260px;
    }
}

/* Slick */

.slick-slider .slick-prev,
.slick-slider .slick-next {
    width: 25px;
    height: 43px;
    padding: 0;
    background: none;
    background-image: url(images/icons/arrow-left.svg);
    background-size: 100%;
    position: absolute;
    top: 30%;
    left: 5px;
    margin-top: -21px;
    z-index: 100;
    border: 0;
    text-indent: -9999px;
    overflow: hidden;
}

#menu-antonio-ricci-menu button.slick-prev {
    top: 0 !important;
    margin-top: 0px;
    background-repeat: no-repeat;
    height: 100%;
    width: 33px;
    background-image: url(images/icons/left-arrow.svg);
    left: 0;
    opacity: 0.8;
}

#menu-antonio-ricci-menu button.slick-next {
    top: 0 !important;
    margin-top: 0;
    background-repeat: no-repeat;
    height: 100%;
    width: 33px;
    background-image: url(images/icons/right-arrow.svg);
    right: 0;
    opacity: 0.8;
}

.antonio-ricci-menu {
    padding: 0rem 35px 0 35px !important;
}


@media only screen and (min-width: 768px) {

    .slick-slider .slick-prev,
    .slick-slider .slick-next {
        top: 50%;
    }
}

.slick-slider .slick-next {
    background-image: url(images/icons/arrow-right.svg);
    right: 5px;
    left: initial;
}

@media only screen and (min-width: 1400px) {

    .slick-slider .slick-prev,
    .slick-slider .slick-next {
        width: 36px;
        height: 62px;
        margin-top: -31px;
    }
}


/* Default Slider */

.default-slider .slick-track {
    margin-left: 0;
}

.default-slider.slick-slider .slick-slide {
    margin: 0px 5px;
}

.default-slider.slick-slider .slick-list {
    overflow: visible;
}

.default-slider.slick-slider .slick-prev,
.default-slider.slick-slider .slick-next {
    width: 3rem;
    height: initial;
    top: 30px;
    bottom: 0;
    background-position: center center;
    background-color: rgba(135, 211, 255, .6);
    background-repeat: no-repeat;
}

.default-slider.slick-slider .slick-prev {
    left: 0px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.default-slider.slick-slider .slick-next {
    right: 0px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.default-slider.couple-presenters-slider .post:first-of-type .post-image-wrapper:before {
    padding: .1rem 1rem;
    content: 'attuali';
    font-size: 9px;
    font-weight: 900;
    display: inline-block;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 10px;
}

@media only screen and (min-width: 576px) {
    .default-slider.couple-presenters-slider .post:first-of-type .post-image-wrapper:before {
        padding: .25rem 1rem;
        font-size: 14px;
        }    
    }

@media only screen and (min-width: 1200px) {
    .px-container .default-slider.slick-slider .slick-prev {
        width: 35px;
        left: -2.5rem;
        top: 20px !important;
    }

    .px-container .default-slider.slick-slider .slick-next {
        width: 35px;
        right: -2.5rem;
        top: 20px !important;
    }

    .default-slider.couple-presenters-slider .post:first-of-type .post-image-wrapper:before {
        padding: .25rem 1.25rem;
        font-size: 18px;
    }
}

@media only screen and (min-width: 1400px) {
    .px-container .default-slider.slick-slider .slick-prev {
        width: 67px;
        left: -4.5rem;
        top: 30px !important;
    }

    .px-container .default-slider.slick-slider .slick-next {
        width: 67px;
        right: -4.5rem;
        top: 30px !important;
    }

    .default-slider.couple-presenters-slider .post:first-of-type .post-image-wrapper:before {
        padding: .5rem 1.25rem;
        font-size: 22px;
    }
}

@media only screen and (min-width: 1920px) {
    .default-slider.couple-presenters-slider .post:first-of-type .post-image-wrapper:before {
        padding: .5rem 1.25rem;
        font-size: 18px;
    }
}

/* Posts */

.post a {
    text-decoration: none;
    color: #000000;
    display: block;
}

.post a:hover {
    text-decoration: underline;
}

.post .post-image-wrapper {
    position: relative;
}

.post.news.news-recipe .post-image-wrapper a:before,
.post.news.news-press .post-image-wrapper a:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #ffeb00;
    border-radius: 6px;
    display: block;
}

.post.news.slick-slide .post-container .post-image-wrapper a,
.post.news.slick-slide .post-container .post-image-wrapper a img {
    height: 100%;
}

.post.news-news h3.post-title {
    margin: 0;
}

.post.news.news-press .post-image-wrapper a:before {
    border-color: #00fff5;
}

body.page-template-template-search .post.news.news-recipe .post-image-wrapper a:after,
body.post-type-archive-news .post.news.news-recipe .post-image-wrapper a:after,
body.post-type-archive-news .post.news.news-press .post-image-wrapper a:after,
body.home .post.news.news-recipe .post-image-wrapper a:after {
    content: 'Ricette';
    padding: .25rem .5rem;
    font-size: 14px;
    font-weight: 900;
    background-color: #ffeb00;
    display: inline-block;
    border-bottom-right-radius: 8px;
    vertical-align: top;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

/* body.page-template-default .post.news.news-press .post-image-wrapper a:after, */
body.page-template-template-search .post.news.news-press .post-image-wrapper a:after,
body.post-type-archive-news .post.news.news-press .post-image-wrapper a:after,
body.home .post.news.news-press .post-image-wrapper a:after {
    content: 'Rassegna Stampa';
    padding: .25rem .5rem;
    font-size: 14px;
    background-color: #00fff5;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 900;
    border-bottom-right-radius: 8px;
}

.post.post-image-border-white .post-image {
    border: 3px solid #ffffff;
}

.post .post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, .5);
    /* transition: all 100ms ease-in; */
}

.post.bio-instagram .post-image {
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.5);
}

.post .post-top-number {
    position: absolute;
    left: 10px;
    bottom: 10px;
    top: 30px;
}

.post .post-elements {
    margin-top: 8px;
    padding: .75rem;
    background-color: #ffffff;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, 0.5);
}

.post.photogallery .post-elements {
    background: none;
    box-shadow: none;
}

.post.episode .last-episode {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 4px solid #ffeb00;
    border-radius: 6px;
}

.post.episode .last-episode span {
    padding: 0 .35rem .15rem .35rem;
    font-size: 9px;
    font-weight: 900;
    background-color: #ffeb00;
    display: inline-block;
    text-transform: lowercase;
    border-bottom-right-radius: 8px;
    vertical-align: top;
}

.post .post-elements .post-category {
    margin-bottom: .75rem;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
}

.post .post-elements .post-date {
    font-size: 12px;
    font-weight: bold;
    color: #2700ff;
    text-align: center;
    text-transform: capitalize;
}

.post .post-elements .post-title {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.post.post-title-light-blue .post-elements .post-title,
.post.post-title-light-blue .post-elements .post-title a {
    color: #0090ff;
}

.post .post-elements .post-excerpt {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post.top-10 .post-elements {
    display: none;
}

.post.episode .post-elements .post-title {
    font-weight: bold;
    font-style: italic;
}

.post.news .post-elements {
    padding: .5rem;
    background-color: rgba(255, 255, 255, 0.7);
}

.post.bio-instagram .post-elements {
    height: 168px;
    padding: 1rem;
    background: linear-gradient(150deg, rgba(138, 5, 192, 1) 0%, rgba(220, 5, 217, 1) 33%, rgba(255, 84, 108, 1) 66%, rgba(255, 157, 6, 1) 100%);
    box-shadow: none;
    border: 1px solid #707070;
}

.post.news .post-elements .post-date {
    text-align: left;
}

.post.news .post-elements .post-title {
    /* font-size: 12px;
    font-weight: normal;
    font-style: normal; */
    line-height: 1.30;
    text-transform: none;
    text-align: left;
    margin-left: 0;
    color: #000000;

}

.post.poll .post-elements .post-title {
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post.photogallery .post-elements .post-title a {
    color: #ffffff;
    text-shadow: 2px 2px 0 #000;
}

.post.bio-instagram .post-elements .post-title {
    font-size: 32px;
    line-height: 1.05;
    font-style: italic;
    text-shadow: 2px 2px 0 #000;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post.post.bio-instagram .post-elements .post-title a {
    color: #ffffff;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post.hover-primary:hover {
    position: relative;
}

.post.hover-primary:hover .post-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.post.hover-primary .post-elements .post-date,
.post.hover-primary .post-elements .post-excerpt {
    display: none !important;
}

.post.hover-primary:hover .post-image {
    transform: scale(1.25);
    border: 5px solid #ffeb00;
    box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, .5);
}

.post.hover-primary:hover .post-elements .post-date {
    display: block !important;
}

.post.hover-primary:hover .post-elements .post-excerpt {
    display: -webkit-box !important;
}

.post.hover-primary:hover .post-elements .post-date {
    margin-bottom: .5rem;
}

section.z-index-1 {
    z-index: 99;
}

section.z-index-2 {
    z-index: 89;
}

section.z-index-3 {
    z-index: 79;
}

section.z-index-4 {
    z-index: 69;
}


.post.hover-primary:hover .post-elements-wrapper {
    margin-top: -10%;
    margin-right: -12.5%;
    margin-left: -12.5%;
    /* transition-duration: 100ms; */
}

/* .post.hover-primary .post-elements{
    transition: all 0 linear;
} */


.post-title.match-post-title a {
    overflow: hidden;
}

.post.hover-primary:hover .post-elements {
    height: auto !important;
    padding-top: 15%;
    /* transition-duration: 100ms; */
    box-shadow: 20px 20px 15px 0 rgba(0, 0, 0, 0.5);
}

.post.top-10.hover-primary:hover .post-elements {
    display: block;
}

.post.hover-primary:hover .post-elements .post-title {
    height: auto !important;
    font-size: 20px;
}

.post.post-bg-magenta .post-elements {
    background-color: #ff00e2;
}

.post.post-bg-yellow .post-elements {
    background-color: #ffeb00;
}

.post.post-bg-green .post-elements {
    background-color: #27ff00;
}

.post.post-bg-red .post-elements {
    background-color: #ff0000;
}

.post.post-bg-magenta .post-elements .post-category,
.post.post-bg-yellow .post-elements .post-category,
.post.post-bg-green .post-elements .post-category,
.post.post-bg-red .post-elements .post-category {
    color: #ffffff;
}

.post.episode .post-excerpt .episode-service-link {
    display: inline-block;
    text-decoration: underline;
}

.post.episode .post-elements .post-excerpt {
    display: none;
    -webkit-line-clamp: 7;
}

.post .post-quote {
    margin-top: .25rem;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.1;
    text-align: center;
}

.post .post-years {
    margin-top: .25rem;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.1;
    text-align: center;
}

.post.velina .post-years {
    color: #ff00e2;
    font-weight: 900;
}

.post.couple-presenters .post-years {
    color: #2700ff;
}

.post.couple-veline .post-years {
    color: #d6249f;
}

.post.poll .post-elements .poll-status {
    margin-bottom: .75rem;
    font-size: 28px;
    line-height: 1.1;
    font-weight: bold;
    color: #0090ff;
}

.post.poll .post-elements .poll-status.closed {
    color: #27ff00;
}

.post.poll .post-elements .btn {
    padding: .5rem 1rem;
    font-size: 28px;
    text-transform: uppercase;
    border: 0;
    text-decoration: none;
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    .post .post-image {
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, .5);
    }

    body.home .post.news.news-recipe .post-image-wrapper a:after {
        content: 'Ricette';
        background-color: #ffeb00;
        padding: 0.35rem 1.25rem;
        font-size: 18px;
        position: absolute;
        top: 0;
        left: 0;
    }

    body.home .post.news.news-press .post-image-wrapper a:after {
        padding: 0.35rem 1.25rem;
        font-size: 18px;
    }

    .post.news.news-recipe .post-image-wrapper a:before,
    .post.news.news-press .post-image-wrapper a:before {
        margin: -3px;
        border-width: 8px;
        box-shadow: 2px 2px 0 0 rgb(0 0 0 / 50%);
    }

    .post.news.news-recipe .post-image-wrapper a:after,
    .post.news.news-press .post-image-wrapper a:after {
        padding: 0.35rem 1.25rem;
        font-size: 18px;
    }

    .post.post-image-border-white .post-image {
        border-width: 5px;
    }

    .post .post-elements {
        padding-right: 1rem;
        padding-left: 1rem;
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
    }

    .post.episode .last-episode {
        margin: -3px;
        border-width: 8px;
        box-shadow: 2px 2px 0 0 rgb(0 0 0 / 50%);
    }

    .post.episode .last-episode span {
        padding: 0 1.25rem .35rem 1.25rem;
        font-size: 18px;
    }

    .post.news .post-elements {
        padding: 1.2rem;
    }

    .post.news .post-elements .post-date {
        font-size: 16px;
    }

    .post.news .post-elements .post-title {
        font-size: 22px;
        font-weight: 900;
    }

    .post.poll .post-elements {
        padding: 1.25rem 2rem;
    }

    .post.poll .post-elements .post-title {
        line-height: 1.6;
    }
}

@media only screen and (min-width: 992px) {
    .post.news .post-elements .post-date {
        font-size: 22px;
    }

    .post.news .post-elements .post-title {
        font-size: 26px;
    }

    .post .post-quote {
        margin-top: .75rem;
        font-size: 24px;
        font-weight: 300;
        font-style: italic;
    }

    .post .post-years {
        margin-top: .5rem;
        font-size: 24px;
    }

    .post.poll .post-elements .poll-status {
        font-size: 30px;
    }

    .post.bio-instagram .post-elements {
        height: 194px;
        padding: 1.25rem;
    }

    .post.bio-instagram .post-elements .post-title {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1200px) {
    .post .post-elements {
        margin-top: 12px;
    }

    .post .post-elements .post-category {
        font-size: 30px;
    }

    .post .post-elements .post-date {
        font-size: 22px;
    }

    .post .post-elements .post-title {
        font-size: 22px;
    }

    .post .post-elements .post-excerpt {
        font-size: 22px;
    }

    .post.hover-primary:hover .post-elements .post-title {
        font-size: 34px;
    }

    .post.hover-primary:hover .post-elements .post-excerpt {
        font-size: 34px;
    }

    .post.episode .post-excerpt .episode-service-link {
        font-size: 24px;
    }

    .post .post-quote {
        font-size: 30px;
    }

    .post .post-years {
        font-size: 30px;
    }

    .post.poll .post-elements .btn {
        font-size: 40px;
        font-style: italic;
    }

    .post.bio-instagram .post-elements {
        height: 210px;
    }

    .post.bio-instagram .post-elements .post-title {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1600px) {
    .post .post-elements .post-category {
        font-size: 40px;
    }

    .post .post-elements .post-date {
        font-size: 30px;
    }

    .post .post-elements .post-title {
        font-size: 30px;
    }

    .post.news .post-elements .post-title {
        font-size: 36px;
    }

    .post.couple-presenters .post-elements .post-title {
        font-size: 24px;
    }

    .post.episode .post-elements .post-date {
        font-size: 28px;
    }

    .post.bio-instagram .post-elements {
        height: 300px;
        padding: 2.25rem 1.25rem;
    }

    .post.bio-instagram .post-elements .post-title {
        font-size: 54px;
    }
}

@media only screen and (min-width: 1981px) {
    .post .post-elements .post-title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 567px) {
    .post .post-elements .post-excerpt {
        margin: 1rem 40px;
        font-size: 16px;
    }

    .post .post-elements .post-title {
        margin: 0 20px;
        font-size: 16px;
    }
}


/* Navigation Pagination */

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

.pagination-buttons a {
    width: 100%;
    padding: 1rem;
    font-size: 24px;
    font-weight: 900;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

/* .pagination-buttons .prev a {
    background-color: #fff;
    color: #0090ff;
    border-radius: 20px;
    border: solid 3px #ffffff;
}

.pagination-buttons .prev a:hover {
    background-color: #0090ff;
    color: #ffffff;
} */

.pagination-buttons .prev a,
.pagination-buttons .next a {
    background-color: #0090ff;
    color: #fff;
    border-radius: 20px;
    border: solid 3px #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.pagination-buttons .prev a:hover,
.pagination-buttons .next a:hover {
    background-color: #fff;
    color: #0090ff;
}

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

.pagination>.page-numbers {
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
}

.pagination>.page-numbers+.page-numbers {
    margin-left: 3px;
}

.pagination>.page-numbers.current {
    text-decoration: underline;
}

.pagination>.page-numbers.prev>img,
.pagination>.page-numbers.next>img {
    width: auto;
    height: 20px;
}

.pagination>.page-numbers.prev {
    margin-right: 12px;
}

.pagination>.page-numbers.next {
    margin-left: 12px;
}

@media only screen and (min-width: 992px) {
    .pagination-buttons a {
        padding: .8rem 1rem;
        max-width: 300px;
        font-size: 40px;
    }
}

@media only screen and (min-width: 1200px) {
    .pagination>.page-numbers {
        font-size: 50px;
    }

    .pagination>.page-numbers+.page-numbers {
        margin-left: 6px;
    }

    .pagination>.page-numbers.prev>img,
    .pagination>.page-numbers.next>img {
        height: 44px;
    }

    .pagination>.page-numbers.prev {
        margin-right: 28px;
    }

    .pagination>.page-numbers.next {
        margin-left: 28px;
    }
}

@media only screen and (min-width: 1400px) {
    .pagination-buttons a {
        max-width: 400px;
        font-size: 60px;
    }
}


/* Category */

.category .filters-wrapper {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
    color: #00cbff;
    text-align: center;
}

.category .filters-wrapper {
    text-align: center;
}

.category .filters-wrapper span {
    color: #ffffff;
}

.category .filters-wrapper .filters+.filters {
    margin-top: 1rem;
}

.category .post.video .post-elements {
    height: 78px;
}

.category .post.video .post-elements .post-title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive.category .filters-wrapper .filter-clean button,
.archive.category .top-search-results-title .filter-clean button {
    background-color: transparent;
    color: #fff;
    border-radius: 8px;
    border: 2px solid #fff;
    font-style: italic;
    font-size: 30px;
    font-weight: bold;
    margin-top: 16px;
}

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

.archive.post-type-archive-episode .filter-clean button,
.archive.post-type-archive-recipe .filter-clean button,
.archive.post-type-archive-news .filter-clean button,
.archive.post-type-archive-press .filter-clean button {
    background-color: transparent;
    color: #2700ff;
    border-radius: 8px;
    border: 2px solid #2700ff;;
    font-style: italic;
    font-size: 30px;
    font-weight: bold;
    margin-top: 24px;
}

.archive.category .filters-wrapper .filter-clean button:hover,
.archive.category .top-search-results-title .filter-clean button:hover {
    background-color: #ffff;
    border: 2px solid #ffff;
    color: #2700ff;
}

.archive.post-type-archive-episode .filter-clean button:hover,
.archive.post-type-archive-recipe .filter-clean button:hover,
.archive.post-type-archive-news .filter-clean button:hover,
.archive.post-type-archive-press .filter-clean button:hover {
    background-color: #2700ff;
    border: 2px solid #2700ff;
    color: #fff;
}

@media only screen and (min-width: 1200px) {
    .category .page-header.px-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .category .filters-wrapper {
        font-size: 40px;
    }

    .category .filters-wrapper .filters {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .category .filters-wrapper .filters>div+div {
        margin-left: 12px;
    }

    .category .filters-wrapper span {
        text-align: initial;
        display: initial;
    }

    .category .post.video .post-elements {
        height: 96px;
    }
}

@media only screen and (min-width: 1400px) {
    .category .page-header.px-container {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

@media only screen and (min-width: 1600px) {
    .category .page-header.px-container {
        padding-left: 4.5rem !important;
        padding-right: 4.5rem !important;
    }

    .category .filters-wrapper {
        font-size: 50px;
    }

    .category .post.video .post-elements {
        height: 114px;
    }
}


/* Single */

.single .single-post-page-header.page-header {
    border-radius: 10px;
    z-index: 1;
}

.single .single-post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.single .single-post-title {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
    font-style: italic;
    text-align: center;
}

.single .single-post-date {
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    text-align: center;
}

.single .single-post-wrapper {
    background-color: #ffffff;
    position: relative;
    border-radius: 10px;
}

.single .single-post-wrapper.big-photo {
    margin-top: 1rem;
    padding-top: 0;
}

.single .social-bar {
    background-color: #ffffff;
    text-align: center;
    border-bottom: 1px solid #707070;
}

.single .social-bar .share {
    font-size: 20px;
    font-weight: 900;
    color: #0090ff;
    text-transform: uppercase;
}

.single .social-bar .social-icon {
    width: 40px;
    height: 40px;
}

.single .single-post-content {
    font-size: 22px;
    line-height: 1.15;
}

.single .single-post-content h1,
.single .single-post-content h2,
.single .single-post-content h3,
.single .single-post-content h4,
.single .single-post-content h5,
.single .single-post-content h6 {
    font-weight: 900;
    font-style: italic;
}

.single .single-post-content h2 {
    font-weight: 550;
    font-size: 23px;
}

.single .single-post-content h3 {
    font-weight: 550;
    font-size: 24px;
}

.single .single-post-content .wp-block-quote {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
    font-style: italic;
}

.single .single-post-subtitle {
    margin-bottom: 1.5rem;
    font-size: 25px !important;
    line-height: 1.15;
    font-weight: 550 !important;
    font-style: normal !important;
}

.single .single-post-navigation .btn {
    max-width: initial;
}

.single .single-post-newspaper {
    font-size: 30px;
    line-height: 1;
    font-style: italic;
    text-decoration: underline;
    text-align: center;
}

.single .single-post-author {
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    font-style: italic;
    text-align: center;
}

.single .single-post-link {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #0090ff;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 1px solid #707070;
}

.single .single-post-navigation .prev:hover {
    background-image: url(images/icons/arrow-left-blue.svg);
}

.single .single-post-navigation .next:hover {
    background-image: url(images/icons/arrow-right-blue.svg);
}

@media only screen and (min-width: 992px) {
    .single .single-post-navigation .prev {
        background-image: url(images/icons/arrow-left.svg);
        background-size: 23px 40px;
        background-position: 20px center;
        background-repeat: no-repeat;
    }

    .single .single-post-navigation .next {
        background-image: url(images/icons/arrow-right.svg);
        background-size: 23px 40px;
        background-position: right 20px center;
        background-repeat: no-repeat;
    }

    .single .single-post-wrapper {
        margin-top: -1rem !important;
        padding-top: 1rem !important;
    }

    .single .single-post-title {
        font-size: 50px;
        text-align: initial;
    }

    .single .single-post-date {
        font-size: 22px;
        text-align: right;
    }

    .single .social-bar {
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        border-bottom: 1px solid #707070;
        border-top: 0;
    }

    .single .social-bar .share {
        font-size: 44px;
    }

    .single .single-post-content {
        font-size: 30px;
    }

    .single .single-post-content h2 {
        font-size: 33px;
    }

    .single .single-post-content h3 {
        font-size: 36px;
    }

    .single .single-post-content img {
        width: 100%;
        height: auto;
    }

    .single .single-post-content .wp-block-quote {
        font-size: 40px;
    }

    .single .single-post-content .wp-block-quote:after {
        content: '';
        display: block;
        clear: both;
    }

    .single .single-post-content .wp-block-group .wp-block-quote.has-text-align-left,
    .single .single-post-content .wp-block-group .wp-block-quote.has-text-align-right {
        width: 33.333333333%;
        margin-bottom: 0;
        padding: 40px;
        padding-left: 0;
        float: left;
    }

    .single .single-post-content .wp-block-group .wp-block-quote.has-text-align-left p,
    .single .single-post-content .wp-block-group .wp-block-quote.has-text-align-right p {
        margin-bottom: 0;
        text-align: left;
    }

    .single .single-post-content .wp-block-group .wp-block-quote.has-text-align-right {
        float: right;
        padding-left: 40px;
        padding-right: 0;
    }

    .single .single-post-subtitle {
        font-size: 35px !important;
    }

    .single .single-post-newspaper {
        text-align: left;
    }

    .single .single-post-author {
        font-size: 30px;
        font-weight: normal;
        text-align: left;
    }

    .single .single-post-link {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1400px) {
    .single .single-post-title {
        font-size: 70px;
        line-height: .9;
    }

    .single.single-press .single-post-title {
        font-size: 70px;
        line-height: 1;
    }

    .single .single-post-date {
        font-size: 30px;
    }

    .single .social-bar .social-icon {
        width: 55px;
        height: 55px;
    }

    .single .single-post-content {
        font-size: 40px;
    }

    .single .single-post-content h2 {
        font-size: 44px;
    }

    .single .single-post-content h3 {
        font-size: 60px;
    }

    .single .single-post-content .wp-block-quote {
        font-size: 75px;
    }

    .single .single-post-content .wp-block-group .wp-block-quote.wp-block-quote.has-text-align-left,
    .single .single-post-content .wp-block-group .wp-block-quote.wp-block-quote.has-text-align-right {
        padding: 75px;
        padding-left: 0;
    }

    .single .single-post-content .wp-block-group .wp-block-quote.wp-block-quote.has-text-align-right {
        padding-left: 75px;
        padding-right: 0;
    }

    .single .single-post-subtitle {
        font-size: 46px !important;
    }

    .single .single-post-link {
        font-size: 60px;
    }

    .single .single-post-navigation .prev,
    .single .single-post-navigation .next {
        background-size: 30px 52px;
    }
}

@media only screen and (min-width: 1600px) {
    .single .social-bar .share {
        font-size: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .single .single-post-navigation .next:hover {
        background-image: none;
    }

    .single .single-post-navigation .prev:hover {
        background-image: none;
    }
}


/* Elementor */

body .elementor-section.elementor-section-boxed>.elementor-container {
    max-width: initial;
}

body .elementor-column-gap-default>.elementor-column>.elementor-element-populated {
    padding: 0;
}

.elementor-block-placeholder {
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
}


/* Social Share Icons */

.social-icons .a2a_kit {
    display: flex;
    justify-content: center;
}

.social-icons .a2a_kit>a {
    padding: 0;
    display: flex;
}

.social-icons .a2a_kit>a+a {
    margin-left: 1.5rem;
}

.social-icons .a2a_kit>a>span {
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain !important;
    border-radius: 5px !important;
}

.social-icons .a2a_kit>a:not(.a2a_button_email)>span {
    background-color: initial !important;
}

.social-icons .a2a_kit>a:not(.a2a_button_email)>span>svg {
    display: none;
}

.social-icons .a2a_kit>a.a2a_button_facebook>span {
    background-image: url(images/icons/facebook-share.png) !important;
}

.social-icons .a2a_kit>a.a2a_button_twitter>span {
    background-image: url(images/icons/twitter.svg) !important;
}

.social-icons .a2a_kit>a.a2a_button_facebook_messenger>span {
    background-image: url(images/icons/messenger-share.png) !important;
}

.social-icons .a2a_kit>a.a2a_button_whatsapp>span {
    background-image: url(images/icons/whatsapp-share.png) !important;
}

@media only screen and (min-width: 1200px) {
    .social-icons .a2a_kit>a>span {
        width: 56px !important;
        height: 58px !important;
        line-height: 56px !important;
    }
}

@media only screen and (min-width: 1400px) {
    .social-icons .a2a_kit>a+a {
        margin-left: 3rem;
    }
}



/* Social Embed */

.social-embed {
    padding: .5rem 1rem 2rem .5rem;
    background-color: #f2f2f2;
    border-radius: 10px;
    text-align: center;
}

.social-embed.facebook {
    background-color: #3b5998;
}

.social-embed.twitter {
    background-color: #38a1f3;
}

.social-embed.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-embed.tiktok {
    background-color: #000000;
}

.social-embed iframe {
    margin: 0 auto !important;
}

.social-embed.instagram iframe {
    max-width: 100% !important;
}

.social-embed .twitter-tweet {
    margin: 0 auto !important;
}

.social-embed .social-embed-title {
    margin-bottom: 1rem;
    font-size: 25px !important;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-align: center;
}

.social-embed .tiktok-embed {
    max-width: 100% !important;
}

@media only screen and (min-width: 992px) {
    .social-embed {
        padding: 1.5rem;
        padding-bottom: 2rem;
    }

    .social-embed .social-embed-title {
        padding-left: 1rem;
        font-size: 35px !important;
        text-align: left;
    }
}

@media only screen and (min-width: 1400px) {
    .social-embed {
        padding: 2rem;
        padding-bottom: 3rem;
    }

    .social-embed .social-embed-title {
        padding-left: 2rem;
        font-size: 46px !important;
    }
}


/* Gutenberg Layout */

@media only screen and (max-width: 991px) {
    .wp-block-columns {
        flex-wrap: wrap;
    }

    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:only-child) {
        margin-left: 0;
        flex-basis: 100% !important;
    }
}

@media only screen and (min-width: 992px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
        margin-left: 1.5rem;
    }
}


/* Single Bio */

.single .bio-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 1.5px 1.5px 5px 0 rgba(0, 0, 0, 0.5);
}

.single .bio-content-wrapper {
    background-color: #ffffff;
    border-radius: 10px;
}

.single .bio-data {
    border-radius: 10px;
    text-align: center;
}

.single .bio-data.has-profile-image {
    text-align: left;
}

.single .bio-data.yellow {
    background-color: #ffeb00;
    color: #000000;
}

.single .bio-data.magenta {
    background-color: #ff00e2;
    color: #ffffff;
}

.single .bio-profile-image {
    width: 88px;
    height: 88px;
    border-radius: 50%;
}

.single .bio-name {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
}

.single .bio-quote {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: normal;
    line-height: 1.1;
    font-style: italic;
}

.single .bio-content {
    font-size: 22px;
    font-weight: normal;
    line-height: 1.25;
    text-align: center;
}

.single .bio-follow-on-bar {
    border-top: 1px solid #707070;
}

.single .bio-follow-on-bar .follow-on-title {
    font-size: 24px;
    font-weight: bold;
    color: #0090ff;
    text-align: center;
    text-transform: uppercase;
}

.single .bio-follow-on-bar .social-icon {
    width: 32px;
    height: 32px;
}

@media only screen and (min-width: 768px) {
    .single .bio-profile-image {
        width: 120px;
        height: 120px;
    }

    .single .bio-name {
        font-size: 45px;
    }

    .single .bio-quote {
        font-size: 35px;
        font-weight: 300;
    }

    .single .bio-content {
        font-size: 25px;
        font-weight: 300;
    }

    .single .bio-follow-on-bar .follow-on-title {
        font-size: 30px;
        font-weight: 900;
    }

    .single .bio-follow-on-bar .social-icon {
        width: 54px;
        height: 54px;
    }
}

@media only screen and (min-width: 1200px) {
    .single .bio-image {
        border-radius: 20px;
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
    }

    .single .bio-data.has-profile-image {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .single .bio-profile-image {
        width: 190px;
        height: 190px;
    }

    .single .bio-name {
        font-size: 60px;
    }

    .single .bio-quote {
        font-size: 45px
    }

    .single .bio-content {
        font-size: 33px;
    }

    .single .bio-follow-on-bar .follow-on-title {
        font-size: 42px;
    }
}

@media only screen and (min-width: 1400px) {
    .single .bio-name {
        font-size: 90px;
    }

    .single .bio-quote {
        font-size: 64px;
    }

    .single .bio-content {
        font-size: 38px;
    }

    .single .bio-follow-on-bar .follow-on-title {
        font-size: 48px;
    }
}


/* Reporter Card */

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

.reporter-card a {
    text-decoration: none;
}

.reporter-card .reporter-image {
    border-radius: 50%;
    border: solid 5px #ffeb00;
    width: 120px;
    height: 120px;
    box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, 0.16);
}

.reporter-card .reporter-name {
    position: relative;
    margin-top: -10px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: 18px;
    font-style: italic;
    font-weight: 900;
    text-shadow: 0 2px 0 #000000;
    -webkit-text-stroke: 0.5px #000000;
    line-height: 1;
    text-transform: uppercase;
}

.reporter-card .reporter-name span {
    display: block;
}

@media only screen and (min-width: 576px) {
    .reporter-card .reporter-image {
        width: 180px;
        height: 180px;
    }

    .reporter-card .reporter-name {
        margin-top: -20px;
        font-size: 30px;
        -webkit-text-stroke: 1px #000000;
    }
}

@media only screen and (min-width: 768px) {
    .reporter-card .reporter-image {
        width: 200px;
        height: 200px;
        border: solid 10px #ffeb00;
    }

    .reporter-card .reporter-name {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1200px) {
    .reporter-card .reporter-image {
        width: 250px;
        height: 250px;
        border: solid 15px #ffeb00;
    }
}

@media only screen and (min-width: 1600px) {
    .reporter-card .reporter-image {
        width: 338px;
        height: 338px;
    }

    .reporter-card .reporter-name {
        font-size: 46px;
        -webkit-text-stroke: 2px #000000;
    }
}

@media only screen and (min-width: 1920px) {
    .reporter-card .reporter-name {
        font-size: 60px;
    }
}


/* Single Couple */

.single .couple-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, 0.5);
}

.single-couple-veline .last-dance-routine .last-dance-routine-title {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 0 #000000;
}

.veline-couple .videoplayer-wrapper {
    padding-bottom: 56.25% !important;
    width: auto !important;
    margin: 0 auto;
}

@media only screen and (min-width: 992px) {
    .single-couple-veline .last-dance-routine .last-dance-routine-title {
        font-size: 40px;
        text-align: left;
    }
}

@media only screen and (min-width: 1200px) {
    .single .couple-image {
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, 0.5);
    }
}

@media only screen and (min-width: 1400px) {
    .single-couple-veline .last-dance-routine .last-dance-routine-title {
        font-size: 60px;
        line-height: 1;
        text-shadow: 5px 5px 0 #000000;
    }
}

@media only screen and (min-width: 1920px) {
    .single-couple-veline .last-dance-routine .last-dance-routine-title {
        font-size: 90px;
    }
}


/* Template Archive Presenters */

.page-template-template-archive-presenters .current-presenters-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, 0.5);
}

.page-template-template-archive-presenters .current-presenters-title {
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.15;
    text-align: center;
}

.page-template-template-archive-presenters .current-presenters-title a {
    color: #000000;
    text-decoration: none;
}

.page-template-template-archive-presenters .current-presenters-title a:hover {
    text-decoration: underline;
}

.a2a_svg.a2a_s__default.a2a_s_email {
    background-color: transparent !important;
    background-image: url('/wp-content/themes/striscia-la-notizia/images/icons/email.svg');
    /* width: 80px !important;
    height: 58px !important; */
    width: 57px !important;
    height: 41px !important;
}

.a2a_svg.a2a_s__default.a2a_s_email svg {
    display: none;

}

@media only screen and (min-width: 1200px) {
    .a2a_svg.a2a_s__default.a2a_s_email {
        width: 80px !important;
        height: 58px !important;
    }
}

@media only screen and (min-width: 992px) {
    .page-template-template-archive-presenters .current-presenters-image {
        border-radius: 0;
        box-shadow: 3px 3px 0 0 rgb(0 0 0 / 50%);
    }

    .page-template-template-archive-presenters .current-presenters-title {
        font-size: 50px;
        line-height: 1;
        text-shadow: 0 3px 0 #ffffff;
        text-align: left;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-archive-presenters .current-presenters-title {
        font-size: 74px;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-archive-presenters .post.couple-presenters .post-elements .post-title {
        font-size: 40px;
    }
}


/* Couples Veline Archive */

.archive.post-type-archive-velina .page-content-negative {
    margin-top: -38px;
}

.couple-veline .couple-veline-years {
    padding: .5rem 1rem;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    background-color: #ff00e2;
    color: #ffffff;
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .archive.post-type-archive-velina .page-content-negative {
        margin-top: -50px;
    }

    .couple-veline .couple-veline-years {
        font-size: 36px;
    }
}

@media only screen and (min-width: 1400px) {
    .archive.post-type-archive-velina .page-content-negative {
        margin-top: -108px;
    }

    .couple-veline .couple-veline-years {
        padding: 1.5rem;
        font-size: 60px;
        border-radius: 20px;
    }
}


/* Card Velina */

.card-velina .card-velina-image {
    width: 100%;
    height: auto;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.card-velina .card-velina-data {
    padding: 1rem;
    background-color: #ffffff;
}

.card-velina .card-velina-name {
    margin-bottom: 0;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.1;
    font-style: italic;
    text-transform: uppercase;
    text-align: center;
}

.card-velina .card-velina-years {
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    color: #ff00e2;
    text-align: center;
    display: none;
}

.card-velina .card-velina-name a {
    text-decoration: none;
    color: #ff00e2;
}

.card-velina .card-velina-name a:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {
    .card-velina .card-velina-years {
        display: block;
    }
}

@media only screen and (min-width: 1200px) {
    .card-velina .card-velina-data {
        padding: 2rem;
    }

    .card-velina .card-velina-image {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

    .card-velina .card-velina-name {
        font-size: 40px;
        font-weight: 900;
    }

    .card-velina .card-velina-name a {
        color: #000000;
    }

    .card-velina .card-velina-years {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1400px) {
    .card-velina .card-velina-data {
        padding: 2.5rem;
    }
}


/* Text Ellipsis */

.text-ellipsis {
    opacity: 0;
}


/* Recipe Ingredients */

.recipe-ingredients {
    background-color: #0090ff;
    font-style: italic;
    color: #ffffff;
    border-radius: 12px;
}

.recipe-ingredients .recipe-ingredients-title {
    margin-bottom: 1.5rem;
}

.recipe-ingredients br {
    height: 1rem;
    display: block;
    content: '';
}

@media only screen and (min-width: 1400px) {
    .recipe-ingredients br {
        height: 1.5rem;
    }
}


/* Banner SOS Gabibbo */

#banner-sos-gabibbo {
    width: 250px;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #ff0000;
    border-top-right-radius: 20px;
    z-index: 999999;
}

#banner-sos-gabibbo.active {
    width: 100%;
}

#banner-sos-gabibbo:not(.active):hover {
    cursor: pointer;
}

#banner-sos-gabibbo .banner-wrapper {
    padding: 8px 0 15px 70px;
    position: relative;
}

#banner-sos-gabibbo.active .banner-wrapper {
    padding: 10px 70px 10px 70px;
}

#banner-sos-gabibbo .banner-wrapper .gabibbo-icon {
    width: 70px;
    height: auto;
    position: absolute;
    top: -10px;
    left: 10px;
}

#banner-sos-gabibbo .banner-content {
    text-align: center;
}

#banner-sos-gabibbo .banner-title {
    margin-bottom: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-transform: uppercase;
}

#banner-sos-gabibbo.active .banner-title .label-hide,
#banner-sos-gabibbo .banner-title .sos-other {
    display: none;
}

#banner-sos-gabibbo .banner-title .label-hide {
    margin-left: 24px;
}

#banner-sos-gabibbo.active .banner-title .sos-other {
    display: initial;
}

#banner-sos-gabibbo .banner-description {
    margin-top: .75rem;
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.1;
    font-weight: normal;
    font-style: italic;
    color: #ffffff;
    display: none;
}

#banner-sos-gabibbo.active .banner-description {
    display: block;
}

#banner-sos-gabibbo .btn {
    margin-top: .75rem;
    padding: 0.5rem 3rem;
    color: #ffffff;
    font-size: 30px;
    line-height: 1;
    font-style: italic;
    border: 4px solid #ffffff;
    border-radius: 35px;
    text-transform: uppercase;
    display: none;
}

#banner-sos-gabibbo.active .btn:hover {
    background-color: #ffffff;
    color: #ff0000;
}

#banner-sos-gabibbo.active .btn {
    display: inline-block;
}

#banner-sos-gabibbo .close-icon {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
    top: 16px;
    display: none;
}

#banner-sos-gabibbo.active .close-icon {
    display: initial
}

#banner-sos-gabibbo .close-icon:before,
#banner-sos-gabibbo .close-icon:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 22px;
    width: 2px;
    background-color: #ffffff;
}

#banner-sos-gabibbo .close-icon:before {
    transform: rotate(45deg);
}

#banner-sos-gabibbo .close-icon:after {
    transform: rotate(-45deg);
}

@media only screen and (min-width: 1200px) {
    #banner-sos-gabibbo {
        width: 350px;
        border-top-right-radius: 30px;
    }

    #banner-sos-gabibbo .banner-wrapper {
        padding-top: 10px;
        padding-bottom: 10px;
        padding-left: 160px;
    }

    #banner-sos-gabibbo.active .banner-wrapper {
        padding-left: 160px;
        padding-right: 100px;
    }

    #banner-sos-gabibbo .banner-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #banner-sos-gabibbo .banner-wrapper .gabibbo-icon {
        width: 120px;
        top: -60px;
        left: 20px;
    }

    #banner-sos-gabibbo .banner-content-secondary {
        display: flex;
        align-items: center;
    }

    #banner-sos-gabibbo .banner-title {
        font-size: 40px;
    }

    #banner-sos-gabibbo .banner-description {
        font-size: 24px;
        margin-top: 0;
    }

    #banner-sos-gabibbo.active .btn {
        margin-top: 0;
        margin-left: 1.5rem;
        padding: 0.2rem 1.6rem;
        border-radius: 0;
    }

    #banner-sos-gabibbo .close-icon {
        width: 36px;
        height: 36px;
        top: 50%;
        margin-top: -18px;
    }

    #banner-sos-gabibbo .close-icon:before,
    #banner-sos-gabibbo .close-icon:after {
        height: 36px;
        width: 6px;
    }

    #banner-sos-gabibbo .banner-title .label-hide {
        margin-left: -8px;
    }
}

@media only screen and (min-width: 1600px) {
    #banner-sos-gabibbo .banner-title {
        font-size: 50px;
    }

    #banner-sos-gabibbo .banner-description {
        font-size: 40px;
    }

    #banner-sos-gabibbo.active .btn {
        margin-left: 3rem;
        font-size: 40px;
    }
}

@media only screen and (min-width: 1600px) {
    #banner-sos-gabibbo {
        width: 410px;
    }
}


/* Search Modal */

#search-modal {
    background-color: rgba(0, 144, 255, 0.85);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999999;
    overflow-y: auto;
    display: none;
}

#search-modal.active {
    display: block;
}

#search-modal .modal-wrapper {
    width: 90%;
    background-color: #ffffff;
    border: solid 1px #000000;
    border-radius: 30px;
    position: relative;
    text-align: center;
}

#search-modal .close-icon {
    width: 22px;
    height: 22px;
    position: absolute;
    right: 0;
    top: -30px;
}

#search-modal .close-icon:before,
#search-modal .close-icon:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 22px;
    width: 2px;
    background-color: #ffffff;
}

#search-modal .close-icon:before {
    transform: rotate(45deg);
}

#search-modal .close-icon:after {
    transform: rotate(-45deg);
}

#search-modal .search-icon {
    width: 40px;
    height: 40px;
    background-color: #2700ff;
    border-radius: 6px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-modal .search-icon img {
    height: 60%;
}

#search-modal .modal-title {
    margin-bottom: 0;
    position: relative;
    top: -60px;
    font-size: 60px;
    font-weight: bold;
    font-style: italic;
    line-height: 1;
    color: #ffffff;
    text-shadow: 0 5px 0 #000000;
    -webkit-text-stroke: 2px #000000;
}

#search-modal input {
    width: 100%;
    height: 40px;
    padding-left: 1rem;
    padding-left: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, 0.8);
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    line-height: 2;
    border: 0;
}

#search-modal input:focus {
    outline: none !important;
}

#search-modal .btn {
    background-color: #0090ff;
    color: #ffffff;
    font-size: 20px;
    font-weight: 900;
    padding: 10px 70px;
    text-transform: uppercase;
    border-radius: 25px;
}

@media only screen and (min-width: 768px) {
    #search-modal .search-icon {
        width: 70px;
        height: 50px;
        border-radius: 10px;
    }

    #search-modal input {
        border-radius: 20px;
        font-size: 36px;
        height: 50px;
        padding-left: 36px;
        font-weight: normal;
        box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 1);
    }

    #search-modal .modal-title {
        top: -70px;
        font-size: 60px;
    }

    #search-icon .close-icon {
        width: 28px;
        height: 28px;
        top: -48px;
    }

    #search-modal .close-icon:before,
    #search-modal .close-icon:after {
        height: 28px;
    }
}

@media only screen and (min-width: 992px) {
    #search-modal .modal-wrapper {
        width: 70%;
        border: solid 3px #000000;
    }

    #search-modal .search-icon {
        width: 80px;
        height: 60px;
        border-radius: 10px;
    }

    #search-modal input {
        height: 60px;
        padding-left: 30px;
        font-size: 32px;
        font-weight: normal;
        box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, 1);
        border-radius: 20px;
    }

    #search-modal .modal-title {
        top: -70px;
        font-size: 80px;
    }
}

@media only screen and (min-width: 1200px) {
    #search-modal .close-icon {
        width: 36px;
        height: 36px;
        top: -60px;
    }

    #search-modal .close-icon:before,
    #search-modal .close-icon:after {
        width: 6px;
        height: 36px;
    }

    #search-modal .search-icon {
        width: 100px;
        height: 70px;
        border-radius: 10px;
    }

    #search-modal input {
        border-radius: 20px;
        font-size: 40px;
        height: 70px;
        padding-left: 40px;
    }

    #search-modal .modal-title {
        top: -80px;
        font-size: 100px;
    }

    #search-modal .btn {
        margin-top: 100px;
        margin-bottom: 60px;
        font-size: 26px;
        font-weight: 900;
        border-radius: 30px;
    }
}

@media only screen and (min-width: 1400px) {

    #search-modal .close-icon {
        width: 42px;
        height: 42px;
    }

    #search-modal .close-icon:before,
    #search-modal .close-icon:after {
        height: 42px;
    }

    #search-modal .search-icon {
        width: 120px;
        height: 92px;
        border-radius: 10px;
    }


    #search-modal input {
        font-size: 44px;
        height: 92px;
        padding-left: 48px;
    }

    #search-modal .modal-title {
        top: -100px;
        font-size: 120px;
    }

    #search-modal .btn {
        margin-top: 140px;
        margin-bottom: 90px;
        padding: 16px 100px;
        font-size: 30px;
        line-height: normal;
        font-weight: 900;
        border-radius: 40px;
    }
}


/* Template Form */

.page.page-template-template-form .form-content {
    font-size: 22px;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
}

.page.page-template-template-form .form-content p:last-of-type {
    margin-bottom: 0;
}

.page.page-template-template-form .form-content h2 {
    margin-bottom: 1rem;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.page.page-template-template-form .form-buttons .btn {
    max-width: 300px;
    line-height: 1;
    font-style: italic;
    text-transform: uppercase;
    border-radius: 5px;
}

.page.page-template-template-form .form-content.sos-gabibbo:before,
.page.page-template-template-form .form-content.sos-gabibbo:after {
    width: 70px;
    height: 64px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page.page-template-template-form .form-content.sos-gabibbo:before {
    background-image: url('images/icons/gabibbo-alt.png');
}

.page.page-template-template-form .form-content.sos-gabibbo:after {
    left: initial;
    background-image: url('images/icons/gabibbo.png');
    display: none;
}

.page.page-template-template-form .form-content.partecipate:before,
.page.page-template-template-form .form-content.partecipate:after {
    width: 70px;
    height: 65px;
    content: '';
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page.page-template-template-form .form-content.partecipate:before {
    background-image: url('images/icons/hat-alt.png');
}

.page.page-template-template-form .form-content.partecipate:after {
    left: initial;
    background-image: url('images/icons/hat.png');
    display: none;
}

.page.page-template-template-form .form-section .form {
    background-color: #ffffff;
}

.page.page-template-template-form .form-warning-title {
    margin-bottom: .5rem;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    color: #ff0000;
    text-transform: uppercase;
}

.page.page-template-template-form .form-warning-description {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.1;
}

.page.page-template-template-form .form-addresses {
    border-radius: 10px;
}

.page.page-template-template-form .form-addresses h4 {
    font-size: 28px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    text-align: center;
}

.page.page-template-template-form .form-addresses label {
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    display: block;
}

.page.page-template-template-form .form-addresses span {
    font-size: 22px;
    line-height: 1.2;
    font-weight: normal;
    text-align: center;
    display: block;
}

.page.page-template-template-form .wpcf7 h3 {
    font-size: 18px;
    font-weight: bold;
}

.page.page-template-template-form .form-errors {
    margin: 0 auto;
}

.overlay_error {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255 255 255 / 88%);
    z-index: 2;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.noscroll{
    position:fixed;
    overflow:hidden;
}

.page.page-template-template-form .form-error-alert {
    min-height: 220px;
    padding: 2.5rem;
    background-color: #ffeb00;
    border: 2px solid #000000;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page.page-template-template-form .form-error-alert+.form-error-alert {
    margin-top: .75rem;
}

.page.page-template-template-form .form-error-alert .error-message {
    margin-bottom: 2rem;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    color: #000000;
    text-align: center;
}

.page.page-template-template-form .form-error-alert .error-button {
    width: 100%;
    padding: 1rem;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    border-radius: 5px;
    display: block;
    text-transform: uppercase;
}

.page.page-template-template-form .form-error-alert .error-button:hover {
    background-color: #000000;
    color: #ffffff;
}

.page.page-template-template-form #popup-success {
    display: none;
}

@media only screen and (min-width: 576px) {
    .page.page-template-template-form .form-error-alert .error-button {
        max-width: 260px;
    }
}

@media only screen and (min-width: 768px) {
    .page.page-template-template-form .form-buttons .btn {
        max-width: initial;
    }
}

@media only screen and (min-width: 992px) {
    .page.page-template-template-form .form-content {
        padding-bottom: 6rem !important;
        font-size: 28px;
        border: 6px solid #057fff;
        border-radius: 10px;
        position: relative;
    }

    .page.page-template-template-form .form-content h2 {
        font-size: 32px;
    }

    .page.page-template-template-form .form-buttons {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translate(0, 50%);
    }

    .page.page-template-template-form .form-buttons .btn {
        padding: 1.25rem 1rem;
        font-size: 28px;
        font-style: normal;
        border-radius: 20px;
    }

    .page.page-template-template-form .form-content.sos-gabibbo:before,
    .page.page-template-template-form .form-content.sos-gabibbo:after {
        width: 140px;
        height: 128px;
        transform: translate(0, -35%);
    }

    .page.page-template-template-form .form-content.partecipate:before,
    .page.page-template-template-form .form-content.partecipate:after {
        width: 140px;
        height: 130px;
        transform: translate(0, -40%);
    }

    .page.page-template-template-form .form-content.sos-gabibbo:before,
    .page.page-template-template-form .form-content.partecipate:before {
        left: 0;
    }

    .page.page-template-template-form .form-content.sos-gabibbo:after,
    .page.page-template-template-form .form-content.partecipate:after {
        right: 0;
        display: block;
    }

    .page.page-template-template-form .form-warning-title {
        margin-bottom: 0;
        font-size: 36px;
    }

    .page.page-template-template-form .form-warning-description {
        font-size: 36px;
        font-weight: bold;
    }

    .page.page-template-template-form .form-addresses {
        border-radius: 20px;
    }

    .page.page-template-template-form .form-addresses h4 {
        font-size: 40px;
    }

    .page.page-template-template-form .form-addresses label {
        font-size: 34px;
        font-weight: 900;
        font-style: italic;
    }

    .page.page-template-template-form .form-addresses span {
        font-size: 28px;
        font-style: italic;
    }

    .page.page-template-template-form .wpcf7 h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    .page.page-template-template-form .px-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .page.page-template-template-form .page-header {
        padding-bottom: 6rem !important;
    }

    .page.page-template-template-form .form-content {
        padding-bottom: 7rem !important;
    }

    .page.page-template-template-form .form-buttons .btn {
        padding: 1.5rem 1rem;
        font-size: 32px;
    }

    .page.page-template-template-form .form-addresses h4,
    .page.page-template-template-form .form-addresses label,
    .page.page-template-template-form .form-addresses span {
        text-align: left;
    }
}

@media only screen and (min-width: 1600px) {
    .page.page-template-template-form .page-header {
        padding-bottom: 7rem !important;
    }

    .page.page-template-template-form .form-content {
        padding-bottom: 8rem !important;
        font-size: 50px;
        font-weight: bold;
    }

    .page.page-template-template-form .form-content h2 {
        margin-bottom: .25rem;
        font-size: 60px;
    }

    .page.page-template-template-form .form-buttons .btn {
        padding: 2rem 1rem;
        font-size: 40px;
    }

    .page.page-template-template-form .form-content.sos-gabibbo:before,
    .page.page-template-template-form .form-content.sos-gabibbo:after {
        width: 210px;
        height: 192px;
    }

    .page.page-template-template-form .form-content.partecipate:before,
    .page.page-template-template-form .form-content.partecipate:after {
        width: 210px;
        height: 195px;
    }

    .page.page-template-template-form .form-warning-title {
        font-size: 50px;
    }

    .page.page-template-template-form .form-warning-description {
        font-size: 50px;
    }

    .page.page-template-template-form .wpcf7 h3 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 1920px) {
    .page.page-template-template-form .px-container {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .page.page-template-template-form .page-header {
        padding-bottom: 7rem !important;
    }

    .page.page-template-template-form .form-content {
        padding-bottom: 8rem !important;
    }

    .page.page-template-template-form .form-buttons .btn {
        padding: 2.5rem 1rem;
        font-size: 60px;
    }

    .page.page-template-template-form .form-content.sos-gabibbo:before,
    .page.page-template-template-form .form-content.sos-gabibbo:after {
        width: 250px;
        height: 228px;
    }

    .page.page-template-template-form .form-content.partecipate:before,
    .page.page-template-template-form .form-content.partecipate:after {
        width: 250px;
        height: 232px;
    }

    .page.page-template-template-form .form-addresses h4 {
        font-size: 60px;
    }

    .page.page-template-template-form .form-addresses label {
        font-size: 50px;
    }

    .page.page-template-template-form .form-addresses span {
        font-size: 36px;
    }
}

@media only screen and (max-width: 992px) {
    .page-header.yellow .form-content.partecipate {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 567px) {
    .page-header.yellow .form-content.partecipate {
        margin-top: 30px;
    }
}


/* Contact Form 7 */

.wpcf7 .form-control {
    padding: .5rem 1rem;
    background-color: #ffffff;
    color: #000000;
    font-size: 18px;
    border: 3px solid #ffeb00;
    border-radius: 5px;
    outline: 0 !important;
    box-shadow: none !important;
}

.wpcf7 .btn {
    width: 100%;
    padding: .5rem 1rem;
    background-color: #ffffff;
    color: #0090ff;
    font-size: 28px;
    border: 5px solid #ffeb00;
    border-radius: 5px;
    text-transform: uppercase;
}

.wpcf7 .btn:hover {
    background-color: #ffeb00;
}

.wpcf7 .form-control::placeholder {
    color: #000000;
}

.wpcf7 .wpcf7-not-valid-tip,
.wpcf7 .wpcf7-response-output {
    display: none !important;
}

.wpcf7 .select-type {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.wpcf7 .select-type select {
    display: none;
}

.wpcf7 .select-type .option-tag {
    margin-bottom: .5rem;
    padding: .75rem 1rem;
    padding-right: 3rem;
    font-size: 18px;
    line-height: 1;
    font-weight: bold;
    background-color: transparent;
    border-radius: 5px;
    border: 3px solid #ffeb00;
    text-transform: uppercase;
    position: relative;
}

.wpcf7 .select-type .option-tag+.option-tag {
    margin-left: 1rem;
}

.wpcf7 .select-type .option-tag:after {
    width: 10px;
    height: 10px;
    content: '';
    display: block;
    background-color: #ffeb00;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    border-radius: 50%;
}

.wpcf7 .select-type .option-tag.active:after {
    background-color: #ff0000;
}

.wpcf7 .select-type .option-tag:hover {
    cursor: pointer;
}

.wpcf7 .select-type .option-tag.active {
    background-color: #87d3ff;
}

.wpcf7 .select-attachment input[type=file],
.wpcf7 .select-attachment p:empty {
    display: none;
}

.wpcf7 .select-attachment .files span {
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: center;
}

.wpcf7 label {
    text-align: left;
}

.wpcf7 .wpcf7-list-item-label {
    margin-left: 1rem;
    font-size: 18px;
    line-height: 1.1;
    text-align: left;
}

.wpcf7 .checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.25;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.wpcf7 .checkbox-container input[type=text],
.wpcf7 .checkbox-container br {
    display: none;
}

.wpcf7 .checkbox-container input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.wpcf7 .checkbox-container .checkmark {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 0;
    border: 3px solid #ffeb00;
    border-radius: 50%;
    transform: translate(0, -50%);
}

.wpcf7 .checkbox-container input[type=checkbox]:checked~.checkmark {
    background-color: #ffeb00;
}

.wpcf7 .checkbox-container .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

.wpcf7 .checkbox-container input[type=checkbox]:checked~.checkmark:after {
    display: block;
}

.wpcf7 .checkbox-container .checkmark:after {
    left: 3px;
    top: 0;
    width: 8px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (min-width: 768px) {
    .wpcf7 .checkbox-container {
        font-size: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .wpcf7 .form-control {
        padding: .85rem;
        font-size: 24px;
        border-width: 5px;
        border-radius: 10px;
    }

    .wpcf7 .btn {
        border-width: 8px;
        border-radius: 10px;
    }

    .wpcf7 .form-control::placeholder {
        font-weight: bold;
        font-style: italic;
    }

    .wpcf7 .select-type .option-tag {
        padding: 1rem;
        padding-right: 3rem;
        font-size: 24px;
        font-weight: 900;
        font-style: italic;
    }

    .wpcf7 .select-type .option-tag:after {
        width: 18px;
        height: 18px;
    }

    .wpcf7 .select-attachment .btn {
        width: 60%;
    }

    .wpcf7 .wpcf7-list-item-label {
        font-size: 24px;
        font-weight: bold;
        font-style: italic;
    }

    .wpcf7 .checkbox-container {
        padding-left: 50px;
        font-size: 24px;
    }

    .wpcf7 .checkbox-container .checkmark {
        width: 30px;
        height: 30px;
    }

    .wpcf7 .checkbox-container .checkmark:after {
        left: 6px;
        top: 1px;
        width: 12px;
        height: 18px;
    }
}

@media only screen and (min-width: 1600px) {
    .wpcf7 .form-control {
        font-size: 40px;
        border-width: 8px;
        border-radius: 15px;
    }

    .wpcf7 .btn {
        border-width: 12px;
        border-radius: 15px;
    }

    .wpcf7 .select-type .option-tag {
        padding-right: 6rem;
        font-size: 50px;
        border-radius: 10px;
        border-width: 10px;
    }

    .wpcf7 .select-type .option-tag:after {
        width: 28px;
        height: 28px;
        right: 25px;
    }

    .wpcf7 .btn {
        font-size: 50px;
    }

    .wpcf7 .select-attachment .btn {
        width: 50%;
        font-size: 60px;
    }

    .wpcf7 .select-attachment .files span {
        font-size: 24px;
    }

    .wpcf7 .wpcf7-list-item-label {
        font-size: 36px;
    }

    .wpcf7 .checkbox-container {
        padding-left: 80px;
        font-size: 40px;
        line-height: 1.5;
        font-weight: bold;
        font-style: italic;
    }

    .wpcf7 .checkbox-container .checkmark {
        width: 50px;
        height: 50px;
        border-width: 10px;
    }

    .wpcf7 .checkbox-container .checkmark:after {
        width: 14px;
        height: 22px;
    }
}


/* Popup Alert */

.popup-alert-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999999999;
    background-color: rgba(0, 144, 255, .85);
}

.popup-alert-wrapper.sos-gabibbo {
    background-color: rgba(255, 0, 0, 0.85);
}

.popup-alert {
    width: 100%;
    margin: 0 35px;
    background-color: #ffffff;
    border: solid 2px #000000;
    border-radius: 30px;
    text-align: center;
    position: relative;
}

.popup-alert-wrapper.sos-gabibbo .popup-alert,
.popup-alert-wrapper.partecipate .popup-alert {
    padding-top: 5rem !important;
}

.popup-alert-wrapper.sos-gabibbo .popup-alert:after,
.popup-alert-wrapper.partecipate .popup-alert:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -30%);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.popup-alert-wrapper.sos-gabibbo .popup-alert:after {
    width: 108px;
    height: 100px;
    background-image: url(images/icons/gabibbo-alt.png);
}

.popup-alert-wrapper.partecipate .popup-alert:after {
    width: 110px;
    height: 100px;
    background-image: url(images/icons/hat-alt.png);
}

.popup-alert .popup-alert-title {
    margin-bottom: 1rem;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
}

.popup-alert .popup-alert-message {
    margin-bottom: 1.25rem;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
}

.popup-alert .btn {
    width: 100%;
    height: 100%;
    padding: 1.25rem 1rem;
    margin: 0 auto;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
    color: #000000;
    text-align: center;
    border: solid 3px #000000;
    border-radius: 12px;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.5);
    display: block;
    text-transform: uppercase;
}

.popup-alert .btn:hover {
    background-color: #000000;
    color: #ffffff;
}


@media only screen and (min-width: 768px) {
    .popup-alert {
        width: 80%;
        margin: 0;
    }

    .popup-alert .popup-alert-message {
        margin-bottom: 2rem;
    }
}

@media only screen and (min-width: 1200px) {
    .popup-alert {
        width: 75%;
    }

    .popup-alert .popup-alert-title {
        font-size: 54px;
    }

    .popup-alert .popup-alert-message {
        font-size: 40px;
    }
}

@media only screen and (min-width: 1600px) {
    .popup-alert {
        width: 80%;
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .popup-alert .popup-alert-title {
        font-size: 80px;
        margin-bottom: 1.5rem;
    }

    .popup-alert .popup-alert-message {
        margin-bottom: 3rem;
        padding-left: 10rem !important;
        padding-right: 10rem !important;
        font-size: 50px;
    }

    .popup-alert .btn {
        padding: 1.5rem;
        font-size: 50px;
    }

    .popup-alert-wrapper.sos-gabibbo .popup-alert,
    .popup-alert-wrapper.partecipate .popup-alert {
        padding-top: 10rem !important;
    }

    .popup-alert-wrapper.sos-gabibbo .popup-alert:after {
        width: 250px;
        height: 228px;
    }

    .popup-alert-wrapper.partecipate .popup-alert:after {
        width: 246px;
        height: 228px;
    }
}


/* Single Photogallery */

.single-couple-presenters article.photogallery .post-elements-wrapper,
.single-couple-veline article.photogallery .post-elements-wrapper {
    display: none;
}

.single-photogallery .page-header {
    min-height: 80px;
}

.single-photogallery .photogallery-title {
    padding: 1.5rem;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    color: #2700ff;
    text-align: center;
}

.gallery-photos .photo {
    padding-bottom: 56.25%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
}

.gallery-photos .photo.stretched {
    padding-bottom: 44.56%;
}

.gallery-photos .photo.squared {
    padding-bottom: 76%;
}

.gallery-photos .photo .photo-data {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    background-color: rgba(0, 154, 255, 0.6);
    transition: opacity 300ms ease-in;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.gallery-photos .photo:hover .photo-data,
.gallery-photos .photo:active .photo-data {
    opacity: 1;
    cursor: pointer;
}

.gallery-photos .photo .photo-data .photo-caption {
    margin-bottom: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gallery-photos .photo .photo-data .photo-year {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-poll-subtitle {
    font-size: 22px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    -webkit-text-stroke: 0 !important;
    text-shadow: none !important;
}

@media only screen and (min-width: 768px) {
    .gallery-photos .photo .photo-data .photo-caption {
        -webkit-line-clamp: 3;
    }
}

@media only screen and (min-width: 992px) {
    .single-photogallery .photogallery-title {
        padding: 2rem;
        font-size: 40px;
    }

    .gallery-photos .photo .photo-data .photo-caption {
        font-size: 36px;
    }

    .gallery-photos .photo .photo-data .photo-year {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1200px) {
    .gallery-photos .photo .photo-data .photo-caption {
        -webkit-line-clamp: 4;
    }
}

@media only screen and (min-width: 1400px) {
    .single-photogallery .photogallery-title {
        padding-top: 3rem;
        font-size: 70px;
    }
}

@media only screen and (min-width: 1920px) {
    .gallery-photos .photo .photo-data .photo-caption {
        font-size: 65px;
        -webkit-line-clamp: 3;
    }

    .gallery-photos .photo .photo-data .photo-year {
        font-size: 40px;
    }
}


/* Fancybox */

body.compensate-for-scrollbar {
    margin-right: 0;
}

.fancybox-container {
    z-index: 9999999;
}

.fancybox-container .fancybox-bg {
    background-color: rgba(0, 144, 255, .7)
}

.fancybox-container .fancybox-infobar,
.fancybox-container .fancybox-toolbar {
    display: none;
}

.fancybox-container .fancybox-navigation .fancybox-button {
    width: 12px;
    height: 20px;
    padding: 0;
    background: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    top: 50%;
    transform: translate(0, -50%);
}

.fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
    margin-left: 1rem;
    background-image: url(images/icons/arrow-left.svg);
}

.fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
    margin-right: 1rem;
    background-image: url(images/icons/arrow-right.svg);
}

.fancybox-container .fancybox-navigation .fancybox-button>div {
    display: none;
}

.fancybox-container .fancybox-caption__body {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99996;
    color: #ffffff;
    pointer-events: none;
    text-align: center;
    background: none;
    overflow: hidden;
}

.fancybox-container .fancybox-caption__body .caption {
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.fancybox-container .fancybox-caption__body .year {
    font-size: 20px;
    line-height: 1;
    font-weight: 300;
    font-style: italic;
    text-align: center;
    display: block;
}

.fancybox-container .fancybox-slide--image {
    padding: 100px 0;
}

.fancybox-container .fancybox-button--close {
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    position: absolute;
    top: 0;
    right: -6px;
    transform: translate(0, -100%);
}

.fancybox-container .fancybox-button--close svg path {
    fill: #ffffff;
}

@media only screen and (min-width: 992px) {
    .fancybox-container .fancybox-navigation .fancybox-button {
        width: 24px;
        height: 40px;
    }

    .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
        margin-left: 2rem;
    }

    .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
        margin-right: 2rem;
    }

    .fancybox-container .fancybox-caption__body .caption {
        font-size: 26px;
    }

    .fancybox-container .fancybox-caption__body .year {
        font-size: 24px;
    }
}

@media only screen and (min-width: 1400px) {
    .fancybox-container .fancybox-navigation .fancybox-button {
        width: 50px;
        height: 86px;
    }

    .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
        margin-left: 3rem;
    }

    .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
        margin-right: 3rem;
    }

    .fancybox-container .fancybox-caption__body {
        padding-bottom: 3rem;
    }

    .fancybox-container .fancybox-caption__body .caption {
        font-size: 30px;
    }

    .fancybox-container .fancybox-caption__body .year {
        font-size: 26px;
    }

    .fancybox-container .fancybox-button--close {
        width: 68px;
        height: 68px;
    }
}

@media only screen and (min-width: 1920px) {
    .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_left {
        margin-left: 4.5rem;
    }

    .fancybox-container .fancybox-navigation .fancybox-button.fancybox-button--arrow_right {
        margin-right: 4.5rem;
    }

    .fancybox-container .fancybox-caption__body .caption {
        font-size: 50px;
    }

    .fancybox-container .fancybox-caption__body .year {
        font-size: 32px;
    }
}


/* Photogallery Card */

.photogallery-card a {
    color: #ffffff;
    text-decoration: none;
}

.photogallery-card a:hover {
    text-decoration: underline;
}

.photogallery-card .photogallery-card-image {
    width: 100%;
    height: auto;
    margin-bottom: .5rem;
    border-radius: 10px;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, 0.5);
}

.photogallery-card .photogallery-card-title {
    padding: 0 1rem;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-shadow: 2px 2px 0 #000;
    text-align: center;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

@media only screen and (min-width: 992px) {
    .photogallery-card .photogallery-card-title {
        font-size: 28px;
    }
}

@media only screen and (min-width: 1200px) {
    .photogallery-card .photogallery-card-title {
        font-size: 34px;
    }
}


/* Single Poll */

.single-poll .page-header.single-poll,
body.post-type-archive .page-header.single-poll {
    min-height: initial;
}

.single-poll .page-content-negative.single-poll,
body.post-type-archive .page-content-negative.single-poll {
    margin-top: 0;
}

.single-poll .poll-question,
body.post-type-archive .poll-question {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
}

.single-poll .poll-image-wrapper,
body.post-type-archive .poll-image-wrapper {
    position: relative;
}

.single-poll .poll-image-wrapper:after,
body.post-type-archive .poll-image-wrapper:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 8px solid #ffeb00;
    border-radius: 5px;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, 0.5);
}

.single-poll .poll-image-wrapper.active:after,
body.post-type-archive .poll-image-wrapper.active:after {
    border-color: #27ff00;
}

.single-poll .poll-image,
body.post-type-archive .poll-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.single-poll .poll-answer-form {
    display: block;
}

body.post-type-archive .poll-answer-form {
    display: flex;
    align-items: center;
}

body.post-type-archive .poll-answer-form.with-content {
    display: block;
}

.poll-answer {
    transition: all 300ms ease;
}

.poll-answer:hover {
    background: #ffeb00 !important;
}

.poll-answer:disabled:hover {
    background-color: #fff !important;
}

.single-poll .poll-answer,
body.post-type-archive .poll-answer {
    width: 100%;
    padding: 1rem;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 900;
    text-align: center;
    display: block;
    background-color: #ffffff;
    color: #0090ff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
    border: 3px solid #ffeb00;
    border-radius: 5px;
    text-transform: uppercase;
    word-break: break-word;
}

.single-poll .poll-answer.selected,
body.post-type-archive .poll-answer.selected {
    border-color: #27ff00;
}

.single-poll .poll-answer-image,
body.post-type-archive .poll-answer-image {
    padding-bottom: 56.25%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    border-radius: 5px;
    box-shadow: 1.5px 1.5px 0 0 rgba(0, 0, 0, 0.5);
}

.single-poll .poll-answer-image:after,
body.post-type-archive .poll-answer-image:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 8px solid #ffeb00;
    border-radius: 5px;
}

.single-poll .poll-answer-image.selected:after,
body.post-type-archive .poll-answer-image.selected:after {
    border-color: #27ff00;
}

.single-poll .poll-answer-wrapper .poll-answer-content-wrapper,
body.post-type-archive .poll-answer-wrapper .poll-answer-content-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 40px;
}

.poll-answer-content-wrapper .poll-answer-percentage {
    width: 25% !important;
    text-align: right !important;
}

.poll-answer-content-wrapper .poll-answer {
    width: 100% !important;
    text-align: center !important;
}

.single-poll .poll-answer-wrapper .poll-answer,
body.post-type-archive .poll-answer-wrapper .poll-answer {
    font-size: 18px;
    font-style: italic;
}

.single-poll .single-poll-button,
body.post-type-archive .single-poll-button {
    width: 100%;
    padding: 1rem;
    font-size: 32px;
    font-weight: 900;
    display: block;
    background-color: #007cff;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-top: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
}

.single-poll .single-poll-button:hover,
body.post-type-archive .single-poll-button:hover {
    background-color: #ffffff;
    color: #007cff;
    border-color: #007cff;
}

body.post-type-archive .poll-answer-percentage {
    margin-right: 1.5rem;
    font-size: 44px;
    width: 22%;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
}

body.post-type-archive .poll-answer-form .poll-answer-percentage {
    color: #ffeb00;
}

body.post-type-archive .poll-answer-form.with-content .poll-answer-percentage {
    margin-right: 15px;
}

body.post-type-archive .poll-answer-percentage.selected {
    color: #27ff00 !important;
}

body.post-type-archive .results-title, .result-poll-subtitle {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    text-shadow: 0 1px 0 #ffffff;
    -webkit-text-stroke: 0.5px #ffffff;
    text-align: center;
}

.result-poll-subtitle {
    background: #fff;
    padding: 22px;
    font-size: 22px !important;
    border-radius: 5px;
    font-weight: 400 !important;
}

@media only screen and (min-width: 768px) {
    .result-poll-subtitle {
        font-size: 25px !important;
        font-weight: 300 !important;
    }
}

@media only screen and (min-width: 1200px) {
    .result-poll-subtitle {
        font-size: 33px !important;
        border-radius: 15px;
    }
}

@media only screen and (min-width: 1400px) {
    .result-poll-subtitle {
        font-size: 38px !important;
        border-radius: 22px;
    }
}

@media only screen and (min-width: 992px) {
    .single-poll .page-content-negative.single-poll,
    body.post-type-archive .page-content-negative.single-poll {
        margin-top: -20px;
    }

    .single-poll .poll-question,
    body.post-type-archive .poll-question {
        font-size: 40px;
    }

    .single-poll .poll-image,
    .single-poll .poll-answer-image,
    body.post-type-archive .poll-image,
    body.post-type-archive .poll-answer-image {
        border-radius: 25px;
    }

    .single-poll .poll-image-wrapper:after,
    .single-poll .poll-answer-image:after,
    body.post-type-archive .poll-image-wrapper:after,
    body.post-type-archive .poll-answer-image:after {
        border-radius: 25px;
    }

    .single-poll .poll-answer-form+.poll-answer-form,
    body.post-type-archive .poll-answer-form+.poll-answer-form {
        margin-top: 1.5rem;
    }

    .single-poll .poll-answer,
    body.post-type-archive .poll-answer {
        font-size: 32px;
        border-radius: 15px;
        border-width: 10px;
    }

    .single-poll .poll-answer-wrapper .poll-answer,
    body.post-type-archive .poll-answer-wrapper .poll-answer {
        font-size: 24px;
    }

    .single-poll .single-poll-button,
    body.post-type-archive .single-poll-button {
        font-size: 44px;
    }

    body.post-type-archive .poll-answer-percentage {
        margin-right: 2rem;
        font-size: 56px;
    }

    body.post-type-archive .results-title, .result-poll-subtitle {
        font-size: 44px;
    }
}

@media only screen and (min-width: 1400px) {

    .single-poll .poll-question,
    body.post-type-archive .poll-question {
        font-size: 90px;
        text-shadow: 0 5px 0 #ffffff;
        -webkit-text-stroke: 1px #ffffff;
    }

    .single-poll .poll-image,
    .single-poll .poll-answer-image,
    body.post-type-archive .poll-image,
    body.post-type-archive .poll-answer-image {
        border-radius: 30px;
    }

    .single-poll .poll-image-wrapper:after,
    body.post-type-archive .poll-image-wrapper:after {
        border-radius: 30px;
        border-width: 25px;
    }

    .single-poll .poll-answer,
    body.post-type-archive .poll-answer {
        padding: 1.5rem;
        font-size: 44px;
        border-radius: 25px;
        border-width: 25px;
    }

    .single-poll .poll-answer-image:after,
    body.post-type-archive .poll-answer-image:after {
        border-radius: 30px;
        border-width: 20px;
        box-shadow: 0 15px 0 0 #d5c400;
    }

    .single-poll .poll-answer-image.selected:after,
    body.post-type-archive .poll-answer-image.selected:after {
        box-shadow: 0 15px 0 0 rgba(39, 255, 0, 0.5);
    }

    .single-poll .poll-answer-wrapper .poll-answer,
    body.post-type-archive .poll-answer-wrapper .poll-answer {
        font-size: 40px;
    }

    .single-poll .single-poll-button,
    body.post-type-archive .single-poll-button {
        font-size: 60px;
    }

    body.post-type-archive .poll-answer-percentage {
        font-size: 80px;
    }

    body.post-type-archive .poll-answer-wrapper .poll-answer-percentage {
        font-size: 60px;
    }

    body.post-type-archive .results-title, .result-poll-subtitle {
        font-size: 60px;
    }
}

@media only screen and (min-width: 1920px) {
    body.post-type-archive .poll-answer-wrapper .poll-answer {
        font-size: 44px;
        width: 75% !important;
    }

    body.post-type-archive .poll-answer-wrapper .poll-answer-percentage {
        font-size: 70px;
        width: 25% !important;
    }

    body.post-type-archive .poll-answer-percentage {
        font-size: 100px;
    }
}

@media only screen and (max-width: 1024px) {
    .single-poll .poll-answer-wrapper .poll-answer-percentage {
        font-size: 45px;
    }

    .single-poll .poll-answer-wrapper .poll-answer-content-wrapper,
    body.post-type-archive .poll-answer-wrapper .poll-answer-content-wrapper {
        margin-top: 25px !important;
    }
}

@media only screen and (max-width: 992px) {
    .single-poll .poll-answer-wrapper .poll-answer-content-wrapper,
    body.post-type-archive .poll-answer-wrapper .poll-answer-content-wrapper {
        margin-top: 20px !important;
    }

    .single-poll .poll-answer-wrapper .poll-answer-percentage {
        font-size: 30px;
    }
}

@media only screen and (max-width: 567px) {
    body.post-type-archive .poll-answer-percentage {
        font-size: 25px;
        margin-right: 1rem;
        width: 25%;

    }

    .single-poll .poll-answer,
    body.post-type-archive .poll-answer {
        font-size: 20px;
    }

    .single-poll .poll-answer-wrapper .poll-answer-percentage {
        font-size: 25px;
    }

    .poll-answer-content-wrapper .poll-answer-percentage {
        width: 25% !important;
    }

    .poll-answer-content-wrapper .poll-answer {
        width: 100% !important;
    }
}



/* Search page */

.page-template-template-search .page-header {
    min-height: initial;
}

.page-template-template-search .search-input {
    width: 100%;
    padding: .5rem 1rem;
    font-size: 18px;
    font-style: italic;
    color: #000000;
    border: 0;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0 rgba(0, 0, 0, .15);
    outline: 0;
}

.page-template-template-search .search-input::placeholder {
    color: #000000;
}

.page-template-template-search .search-button {
    height: 100%;
    padding: 0 .5rem;
    background-color: #2700ff;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.page-template-template-search .search-button img {
    width: auto;
    height: 32px;
}

.page-template-template-search .results-title {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.page-template-template-search .search-keywords {
    margin-bottom: 1.5rem;
    font-size: 40px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

.page-template-template-search .search-keywords span {
    color: #ff0000;
}

.page-template-template-search .search-results {
    text-align: center;
}

.page-template-template-search .search-results span {
    font-size: 28px;
    display: block;
}

.page-template-template-search .search-results span.label {
    font-size: 18px;
    font-style: italic;
}

.page-template-template-search .search-results span strong {
    font-weight: 900;
}

.page-template-template-search .search-results span:not(.label)+span {
    margin-top: .15rem;
}


@media only screen and (min-width: 768px) {
    .page-template-template-search .search-input {
        padding: .75rem 1.5rem;
    }

    .page-template-template-search .search-button img {
        width: auto;
        height: 40px;
    }

    .page-template-template-search .results-title {
        margin-bottom: 0;
    }

    .page-template-template-search .search-results span {
        display: initial;
        font-size: 28px !important;
    }

    .page-template-template-search .search-results span:not(.label)+span {
        margin-top: 0;
    }

    .page-template-template-search .search-results span:not(.label)+span:before {
        content: '-';
        margin: 0 .5rem;
    }
}

@media only screen and (min-width: 992px) {
    .page-template-template-search .search-input {
        padding: .75rem 2rem;
        font-size: 24px;
        border-radius: 20px;
        box-shadow: 1px 3px 5px 0 rgba(0, 0, 0, .95);
    }

    .page-template-template-search .search-button {
        border-radius: 20px;
    }

    .page-template-template-search .search-button img {
        height: 50px;
    }

    .page-template-template-search .results-title {
        font-size: 40px;
    }

    .page-template-template-search .search-keywords {
        font-size: 50px;
    }

    .page-template-template-search .search-results span {
        font-size: 32px !important;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-search .search-input {
        padding: 1rem 3rem;
        font-size: 50px;
    }

    .page-template-template-search .search-button {
        padding: 0 1.25rem;
    }

    .page-template-template-search .search-button img {
        height: 80px;
    }

    .page-template-template-search .results-title {
        font-size: 50px;
    }

    .page-template-template-search .search-keywords {
        font-size: 60px;
    }

    .page-template-template-search .search-results span {
        font-size: 40px !important;
    }
}

/**
 * Shop
 */

.shop-title {
    margin-bottom: -90px;
}

.wrapper-prod-content {
    margin: 0 12px;
    color: #000000;
}

.wrapper-prod-content article {
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.wrapper-prod-content article .wrapper-dett-prod,
.wrapper-prod-content article .footer-prod {
    padding: 20px;
}

.wrapper-prod-content article .footer-prod {
    background: #ffffff;
    text-align: center;
}

.wrapper-prod-content article .footer-prod .share {
    color: #0090ff;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}

.wrapper-prod-content article .dett-prod {
    text-align: center;
}

.wrapper-prod-content article .entry-prod-title {
    font-weight: bold;
}

.wrapper-prod-content article .entry-prod-title,
.wrapper-prod-content article .author-prod {
    font-size: 33px;
    line-height: 34px;
}

.wrapper-prod-content article .prod-desc {
    font-size: 23px;
}

.wrapper-prod-content article .prod-desc a {
    color: #000;
    text-decoration: underline;
}

.cta-prod-shop {
    color: #0090ff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    background-color: #ffffff;
    border: 4px solid #ffeb00;
    border-radius: 10px;
    padding: 8.6px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, .3);
    transition: all 300ms ease;
}

.cta-prod-shop:hover {
    border-color: #ffffff;
    background-color: #0090ff;
    color: #fff;
}

.prod-price {
    float: left;
}

.cta-prod-shop {
    float: right;
}

.prod-price,
.cta-prod-shop {
    width: 50%;
    text-align: center;
}

.prod-price .amount {
    font-size: 33px;
    color: #ffffff;
    font-weight: bold;
    -webkit-text-stroke: 2px #0090ff;
    text-shadow: 1px 4px 4px rgba(0, 0, 0, .9);
    margin-bottom: -10px;
    display: inline-block;
}

.prod-price small {
    font-size: 11px;
}

@media only screen and (min-width: 992px) {
    .wrapper-prod-content article {
        margin-top: -25px;
        padding-top: 60px;
        margin-bottom: 60px;
    }

    .wrapper-prod-content article:last-child {
        margin-bottom: 0px;
    }

    .wrapper-prod-content article .dett-prod {
        text-align: left;
    }

    .wrapper-prod-content article .entry-prod-title,
    .wrapper-prod-content article .author-prod {
        font-size: 50px;
        line-height: 50px;
    }

    .prod-price .amount {
        font-size: 60px;
        line-height: 50.8px;
    }

    .prod-price,
    .cta-prod-shop {
        width: initial;
    }

    .wrapper-prod-content article .footer-prod .share {
        font-size: 60px;
    }

    .wrapper-prod-content article .footer-prod .share,
    .wrapper-prod-content article .footer-prod .social-icons {
        display: inline-block;
    }
}


@media only screen and (min-width: 1400px) {

    .wrapper-prod-content article {
        margin-top: -140px;
        padding-top: 60px;
        margin-bottom: 200px;
    }

    .wrapper-prod-content article .entry-prod-title,
    .wrapper-prod-content article .author-prod {
        font-size: 90px;
        line-height: 80px;
    }

    .wrapper-prod-content article .prod-desc {
        font-size: 40px;
        line-height: 50px;
        font-weight: bold;
    }

    .prod-price .amount {
        font-size: 100px;
        line-height: 50.8px;
    }

    .prod-price,
    .cta-prod-shop {
        width: initial;
    }

    .prod-price {
        margin-top: 25px;
    }

    .prod-price small {
        font-size: 25px;
    }

    .cta-prod-shop {
        font-size: 60px;
        border-width: 0px;
        border-radius: 20px;
        -moz-border-radius: 20px;
        -webkit-border-radius: 20px;
        -khtml-border-radius: 20px;
        box-shadow: 0 0 0 13px #ffeb00;
    }

    .cta-prod-shop:hover {
        box-shadow: 0 0 0 13px #ffffff;
    }

}

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

    .prod-price,
    .cta-prod-shop {
        font-size: 20px;
    }
}



/* Contacts Page */

.page-template-template-contacts .contacts-label {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    color: #0090ff;
    text-align: center;
    display: block;
}

.page-template-template-contacts .contacts-row {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    color: #000000;
    display: block;
}

.page-template-template-contacts .contacts-email a {
    color: #000000;
    text-decoration: none;
}

.page-template-template-contacts .contacts-content {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.page-template-template-contacts .contacts-content a {
    color: #0090ff;
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {

    .page-template-template-contacts .contacts-label,
    .page-template-template-contacts .contacts-row {
        display: initial;
    }
}

@media only screen and (min-width: 992px) {

    .page-template-template-contacts .contacts-label,
    .page-template-template-contacts .contacts-row,
    .page-template-template-contacts .contacts-content {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1660px) {

    .page-template-template-contacts .contacts-label,
    .page-template-template-contacts .contacts-row,
    .page-template-template-contacts .contacts-content {
        font-size: 40px;
    }
}


/* Antonio Ricci - Menu */
.antonio-ricci-menu-wrapper {
    height: 65px;
}

.antonio-ricci-menu {
    margin: 0;
    padding: 0rem 1rem 0 1rem;
    list-style: none;
    display: flex;
    overflow-x: auto;
    height: 100%;
    align-items: flex-end;
}

.antonio-ricci-menu::-webkit-scrollbar {
    height: 0px;
}

.antonio-ricci-menu li {
    flex: 1;
    display: flex;
    justify-content: center;
}

#menu-antonio-ricci-menu .menu-item {
    text-align: center;
}

.antonio-ricci-menu li a {
    padding: .5rem .95rem;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    font-stretch: normal;
    font-style: italic;
    color: #0090ff;
    text-decoration: none;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: inline-block;
    white-space: nowrap;
}

.antonio-ricci-menu li.current-menu-item a {
    background-color: #0090ff;
    color: #ffffff;
}

@media only screen and (min-width: 768px) {
    .antonio-ricci-menu {
        padding-left: 0;
        padding-right: 0;
    }
}

@media only screen and (min-width: 992px) {
    .antonio-ricci-menu li a {
        font-size: 34px;
    }

    .antonio-ricci-menu-wrapper {
        height: 70px;
    }

    #menu-antonio-ricci-menu .menu-item {
        text-align: left;
    }
}

@media only screen and (min-width: 1200px) {
    .antonio-ricci-menu li a {
        font-size: 44px;
    }

    .antonio-ricci-menu-wrapper {
        height: 100px;
    }
}

@media only screen and (min-width: 1400px) {
    .antonio-ricci-menu li a {
        padding: .5rem 2rem;
        font-size: 42px;
    }
}

@media only screen and (min-width: 1600px) {
    .antonio-ricci-menu li a {
        font-size: 54px;
    }

    .antonio-ricci-menu-wrapper {
        height: 120px;
    }
}

@media only screen and (min-width: 1920px) {
    .antonio-ricci-menu li a {
        font-size: 64px;
    }
}


/* Antonio Ricci - Home */

.page-template-template-antonio-ricci-home .home-image-wrapper {
    box-shadow: 1.5px 1.5px 5px 0 rgba(0, 0, 0, 0.5);
    position: relative;
}

.page-template-template-antonio-ricci-home .home-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-home .home-quote {
    padding: .35rem;
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    font-stretch: normal;
    font-style: italic;
    background-color: #ffffff;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 5px;
}

@media only screen and (min-width: 576px) {
    .page-template-template-antonio-ricci-home .home-quote {
        padding: .75rem;
        font-size: 36px;
        top: 50%;
        left: 100px;
        transform: translate(0, -50%);
    }
}

@media only screen and (min-width: 1200px) {
    .page-template-template-antonio-ricci-home .home-image-wrapper {
        box-shadow: none
    }

    .page-template-template-antonio-ricci-home .home-image-wrapper img {
        border-radius: 20px;
    }

    .page-template-template-antonio-ricci-home .home-quote {
        padding: 1rem;
        font-size: 56px;
        border-radius: 20px;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-antonio-ricci-home .home-quote {
        padding: 1.25rem 2.5rem;
        left: 140px;
    }
}

@media only screen and (min-width: 1920px) {
    .page-template-template-antonio-ricci-home .home-quote {
        font-size: 130px;
    }
}


/* Antonio Ricci - Awards */

.page-template-template-antonio-ricci-awards .awards-page-title {
    font-size: 36px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 1px 4px #000000;
    text-transform: uppercase;
}

.page-template-template-antonio-ricci-awards .awards-image {
    width: 75%;
    height: auto;
    margin-bottom: 2rem;
}

.page-template-template-antonio-ricci-awards .award-card {
    height: 100%;
    padding: 1.25rem;
    background-color: #2700ff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-template-template-antonio-ricci-awards .awards-fucsia .award-card.award-active {
    background-color: #ff00e2;
}

.page-template-template-antonio-ricci-awards .awards-red .award-card.award-active {
    background-color: #ff0000;
}

.page-template-template-antonio-ricci-awards .awards-light-blue .award-card.award-active {
    background-color: #00fff5;
}

.page-template-template-antonio-ricci-awards .awards-green .award-card.award-active {
    background-color: #27ff00;
}

.page-template-template-antonio-ricci-awards .awards-yellow .award-card.award-active {
    background-color: #ffeb00;
}

.page-template-template-antonio-ricci-awards .award-card.big {
    background-color: #ffeb00;
    border-radius: 0;
}

.page-template-template-antonio-ricci-awards .award-card.empty {
    padding: 2rem;
    background-color: #d4f5ff;
}

.page-template-template-antonio-ricci-awards .award-card .award-year {
    margin-bottom: .25rem;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #ffeb00;
    text-align: center;
    text-shadow: 1.5px 1.5px 0 #000000;
}

.page-template-template-antonio-ricci-awards .award-card .award-name {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    text-shadow: 1.5px 1.5px 0 #000000;
    text-transform: uppercase;
}

.page-template-template-antonio-ricci-awards .award-card.big .award-year {
    color: #ff0000;
}

.page-template-template-antonio-ricci-awards .award-card.big .award-name {
    color: #000000;
}

.page-template-template-antonio-ricci-awards .award-card.empty .award-name {
    font-size: 36px;
    color: #2700ff;
}

.page-template-template-antonio-ricci-awards .awards-slider {
    margin-left: -.5rem;
    margin-right: -.5rem;
    ;
}

.page-template-template-antonio-ricci-awards .awards-slider .slick-slide {
    margin: 0 10px;
}

@media only screen and (min-width: 768px) {
    .page-template-template-antonio-ricci-awards .awards-page-title {
        font-size: 40px;
    }

    .page-template-template-antonio-ricci-awards .awards-image {
        margin-bottom: 0;
    }

    .page-template-template-antonio-ricci-awards .award-card+.award-card {
        margin-top: 1rem;
    }

    .page-template-template-antonio-ricci-awards .awards-slider {
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (min-width: 992px) {
    .page-template-template-antonio-ricci-awards .awards-page-title {
        font-size: 50px;
    }

    .page-template-template-antonio-ricci-awards .award-card .award-year {
        margin-bottom: .5rem;
        font-size: 40px;
    }

    .page-template-template-antonio-ricci-awards .award-card .award-name {
        font-size: 40px;
    }

    .page-template-template-antonio-ricci-awards .award-card.big .award-year,
    .page-template-template-antonio-ricci-awards .award-card.big .award-name {
        font-size: 48px;
    }

    .page-template-template-antonio-ricci-awards .award-card.empty {
        padding: 3.5rem 2rem;
    }

    .page-template-template-antonio-ricci-awards .award-card.empty .award-name {
        font-size: 44px;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-antonio-ricci-awards .awards-page-title {
        font-size: 70px;
        text-shadow: 0 3px 10px rgba(0, 0, 0, 0.96);
    }

    .page-template-template-antonio-ricci-awards .award-card .award-year {
        font-size: 54px;
    }

    .page-template-template-antonio-ricci-awards .award-card .award-name {
        font-size: 54px;
    }

    .page-template-template-antonio-ricci-awards .award-card.big {
        padding: 1.5rem 12rem;
    }

    .page-template-template-antonio-ricci-awards .award-card.big .award-year,
    .page-template-template-antonio-ricci-awards .award-card.big .award-name {
        font-size: 52px;
    }

    .page-template-template-antonio-ricci-awards .award-card.empty .award-name {
        font-size: 60px;
    }

    .page-template-template-antonio-ricci-awards .special-award {
        margin-left: -6.5rem;
        margin-right: -6.5rem;
    }
}

@media only screen and (min-width: 1600px) {
    .page-template-template-antonio-ricci-awards .awards-page-title {
        font-size: 90px;
    }

    .page-template-template-antonio-ricci-awards .award-card.big .award-year,
    .page-template-template-antonio-ricci-awards .award-card.big .award-name {
        font-size: 58px;
    }
}


/* Antonio Ricci - Comments */

.page-template-template-antonio-ricci-comments .comment {
    background-color: #ffffff;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-comments .comment-image {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    border: 3px solid #0090ff;
    display: block;
}

.page-template-template-antonio-ricci-comments .comment-author {
    max-width: 120px;
    font-size: 26px;
    font-weight: 900;
    font-style: italic;
    line-height: 1.05;
    position: relative;
    z-index: 1;
    overflow-wrap: normal;
}

.page-template-template-antonio-ricci-comments .comment.without-image .comment-author {
    text-align: center;
}

.page-template-template-antonio-ricci-comments .comment-quote {
    font-size: 22px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.page-template-template-antonio-ricci-comments .comment-details {
    font-size: 18px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    .page-template-template-antonio-ricci-comments .comments>.row:nth-child(2n) {
        flex-direction: row-reverse;
    }

    .page-template-template-antonio-ricci-comments .comment {
        position: relative;
    }

    .page-template-template-antonio-ricci-comments .comment:not(.without-image):before {
        content: '';
        width: 166px;
        height: 80px;
        display: block;
        background-image: url(images/icons/comment-arrow.svg);
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        right: -100px;
        bottom: 30px;
        z-index: 0;
    }

    .page-template-template-antonio-ricci-comments .comments>.row:nth-child(2n) .comment:before {
        top: 30px;
        left: -100px;
        bottom: initial;
        right: initial;
        transform: rotate(180deg);
    }

    .page-template-template-antonio-ricci-comments .comment-image {
        width: 180px;
        height: 180px;
        margin: 0 40px;
        border: 5px solid #ffffff;
    }

    .page-template-template-antonio-ricci-comments .comment {
        border-radius: 20px;
    }

    .page-template-template-antonio-ricci-comments .comment-author {
        max-width: initial;
    }

    .page-template-template-antonio-ricci-comments .comment.without-image .comment-author {
        text-align: left;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-antonio-ricci-comments .comment-image {
        width: 334px;
        height: 334px;
        margin: 0 80px;
        border-width: 15px;
    }

    .page-template-template-antonio-ricci-comments .comment-author {
        font-size: 48px;
    }

    .page-template-template-antonio-ricci-comments .comment-quote {
        font-size: 34px;
    }

    .page-template-template-antonio-ricci-comments .comment-details {
        font-size: 24px;
    }
}


/* Antonio Ricci - Covers */

.page-template-template-antonio-ricci-covers .covers-slider .cover:not(.slick-current) {
    opacity: .5;
}

.page-template-template-antonio-ricci-covers .covers-slider .cover .cover-image-wrapper {
    position: relative;
}

.page-template-template-antonio-ricci-covers .covers-slider .cover.slick-current .cover-image-wrapper:after {
    content: '';
    border: 3px solid #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-covers .cover .cover-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-covers .cover .cover-data {
    background-color: rgba(255, 255, 255, .5);
    text-align: center;
    position: relative;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-covers .cover .cover-year {
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
}

.page-template-template-antonio-ricci-covers .cover .cover-title {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
}

.page-template-template-antonio-ricci-covers .covers-slider {
    padding-bottom: 100px;
}

.page-template-template-antonio-ricci-covers .covers-slider .slick-slide {
    margin: 0 5px;
}

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

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev,
    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        width: auto;
        height: auto !important;
        padding: .25rem 1.25rem;
        font-size: 28px;
        line-height: 1;
        font-weight: 900;
        top: initial;
        bottom: 20px;
        background-image: none;
        background-color: #ffffff;
        color: #0090ff;
        text-indent: initial;
        border-radius: 5px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev {
        content: '<';
        left: 50%;
        margin-left: -65px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        content: '>';
        right: 50%;
        margin-right: -65px;
    }
}

@media only screen and (min-width: 992px) {
    .page-template-template-antonio-ricci-covers .covers-slider .cover:not(.slick-current) {
        opacity: 1;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .cover:not(.slick-current) .cover-image {
        opacity: .5;
    }

    .page-template-template-antonio-ricci-covers .cover .cover-year {
        font-size: 30px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider {
        padding-bottom: 0;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev,
    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        width: 100px;
        height: initial;
        top: 21px;
        bottom: initial;
        background-size: 36px 62px;
        background-color: rgba(135, 211, 255, .6);
        background-position: center center;
        background-repeat: no-repeat;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev {
        left: 0;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        right: 0;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
}

@media only screen and (min-width: 1200px) {
    .page-template-template-antonio-ricci-covers .covers-slider .cover.slick-current .cover-image-wrapper:after {
        border-width: 10px;
        border-radius: 20px;
    }

    .page-template-template-antonio-ricci-covers .cover .cover-image {
        border-radius: 20px;
    }

    .page-template-template-antonio-ricci-covers .cover .cover-data {
        padding-top: 2rem !important;
        border-radius: 20px;
    }

    .page-template-template-antonio-ricci-covers .cover .cover-year {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-slide {
        margin: 0 15px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev,
    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        width: 140px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-antonio-ricci-covers .cover .cover-year {
        font-size: 40px;
    }

    .page-template-template-antonio-ricci-covers .cover .cover-title {
        font-size: 50px;
    }

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev,
    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        top: 30px;
    }
}

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

    .page-template-template-antonio-ricci-covers .covers-slider .slick-prev,
    .page-template-template-antonio-ricci-covers .covers-slider .slick-next {
        width: 200px;
    }
}


/* Antonio Ricci - Life */

.page-template-template-antonio-ricci-life .years-slider {
    visibility: hidden;
}

.page-template-template-antonio-ricci-life .years-slider.slick-initialized {
    visibility: visible;
}

.page-template-template-antonio-ricci-life .years-slider {
    margin: 0 -.5rem 2rem -.5rem;
}

.page-template-template-antonio-ricci-life .years-slider .slick-slide {
    margin: 0 5px;
}

.page-template-template-antonio-ricci-life .years-slider .slick-prev {
    background-image: url(images/icons/arrow-left-blue.svg);
}

.page-template-template-antonio-ricci-life .years-slider .slick-next {
    background-image: url(images/icons/arrow-right-blue.svg);
}

.page-template-template-antonio-ricci-life .years-slider .year {
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #ffffff;
    text-align: center;
}

.page-template-template-antonio-ricci-life .years-slider .year:hover {
    cursor: pointer;
}

.page-template-template-antonio-ricci-life .year-card {
    padding: .5rem;
    background-color: #ffffff;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-life .year-card .year {
    font-size: 50px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    text-align: center;
}

.page-template-template-antonio-ricci-life .year-card .year-image {
    width: 100%;
    height: auto;
    margin-bottom: .5rem;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-life .year-card .year-detail {
    background-color: #87d3ff;
    position: relative;
}

.page-template-template-antonio-ricci-life .year-card .year-detail:not(.no-gradient):after {
    content: '';
    height: 50px;
    background: linear-gradient(0deg, rgba(135, 211, 255, 1) 0%, rgba(135, 211, 255, .75) 50%, rgba(135, 211, 255, 0) 100%);
    ;
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    z-index: 1;
    display: block;
}

.page-template-template-antonio-ricci-life .year-card .year-detail-content {
    height: 660px;
    font-size: 22px;
    line-height: 1.15;
    text-align: center;
    overflow-y: auto;
    scrollbar-color: rgba(255, 255, 255, 1) rgba(255, 255, 255, .25);
    scrollbar-width: 10px;
}

.page-template-template-antonio-ricci-life .year-card .year-detail-content::-webkit-scrollbar {
    width: 10px;
    background-color: rgba(255, 255, 255, .25);
    border-radius: 25px;
}

.page-template-template-antonio-ricci-life .year-card .year-detail-content::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 25px;
}

.page-template-template-antonio-ricci-life .years-detail-slider .slick-slide {
    margin: 0 5px;
}

@media only screen and (min-width: 576px) {
    .page-template-template-antonio-ricci-life .years-slider .year {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) {
    .page-template-template-antonio-ricci-life .years-life-box {
        background-color: #ffffff;
        border-radius: 20px;
    }

    .page-template-template-antonio-ricci-life .years-slider {
        margin: 0;
        margin-bottom: 3rem;
    }

    .page-template-template-antonio-ricci-life .years-slider .slick-slide {
        margin: 0 10px;
    }

    .page-template-template-antonio-ricci-life .years-slider .year {
        font-size: 40px;
        color: #058cff;
    }

    .page-template-template-antonio-ricci-life .years-detail-slider .slick-slide {
        margin: 0 10px;
    }

    .page-template-template-antonio-ricci-life .year-card {
        padding: 0;
        background: none;
        border-radius: 0;
    }

    .page-template-template-antonio-ricci-life .year-card .year-image {
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .page-template-template-antonio-ricci-life .year-card .year-detail:after {
        display: none;
    }

    .page-template-template-antonio-ricci-life .year-card .year-detail-content {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-antonio-ricci-life .years-slider {
        margin-bottom: 5rem;
    }

    .page-template-template-antonio-ricci-life .years-slider .year {
        font-size: 60px;
    }

    .page-template-template-antonio-ricci-life .year-card .year {
        font-size: 80px;
    }

    .page-template-template-antonio-ricci-life .year-card .year-detail-content {
        height: 960px;
        font-size: 40px;
    }
}

@media only screen and (min-width: 1920px) {
    .page-template-template-antonio-ricci-life .years-slider .year {
        font-size: 75px;
    }

    .page-template-template-antonio-ricci-life .year-card .year {
        font-size: 100px;
    }

    .page-template-template-antonio-ricci-life .year-card .year-detail-content {
        height: 1540px;
    }
}


/* Antonio Ricci - Works */

.page-template-template-antonio-ricci-works .works-slider .post .post-elements {
    background-color: #ffeb00;
}

.page-template-template-antonio-ricci-works .works-slider .slick-current .post .post-elements {
    background-color: #0014ff;
}

.page-template-template-antonio-ricci-works .works-slider .slick-current .post .post-elements .post-category {
    color: #ffffff;
}

.page-template-template-antonio-ricci-works .works-slider .slick-current .post .post-elements .post-title {
    color: #ffeb00;
}

.page-template-template-antonio-ricci-works .works-slider .post .post-elements .post-category {
    margin-bottom: .25rem;
    font-size: 16px;
    line-height: 1;
}

.page-template-template-antonio-ricci-works .works-slider .post .post-elements .post-title {
    color: #0014ff;
    font-style: italic;
}

.page-template-template-antonio-ricci-works .works-slider .slick-slide {
    margin: 0 5px;
}

.page-template-template-antonio-ricci-works .works-slider .work-post-wrapper:hover {
    cursor: pointer;
}

.page-template-template-antonio-ricci-works .works-details {
    background-color: #ffeb00;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-works .work-details {
    display: none;
}

.page-template-template-antonio-ricci-works .work-details .work-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.page-template-template-antonio-ricci-works .work-details .work-year {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #2700ff;
}

.page-template-template-antonio-ricci-works .work-details .work-title {
    font-size: 32px;
    line-height: 1;
    font-weight: 900;
    font-style: italic;
    color: #2700ff;
    text-transform: uppercase;
}

.page-template-template-antonio-ricci-works .work-details .work-content {
    font-size: 22px;
    line-height: 1.15;
}

.page-template-template-antonio-ricci-works .works-slider .slick-prev,
.page-template-template-antonio-ricci-works .works-slider .slick-next {
    width: 75px;
    height: initial;
    top: 30px;
    bottom: 0;
    background-size: 36px 62px;
    background-color: rgba(135, 211, 255, .6);
    background-position: center center;
    background-repeat: no-repeat;
}

.page-template-template-antonio-ricci-works .works-slider .slick-prev {
    left: 0;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.page-template-template-antonio-ricci-works .works-slider .slick-next {
    right: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

@media only screen and (min-width: 992px) {
    .page-template-template-antonio-ricci-works .works-slider .post .post-elements .post-category {
        font-size: 22px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-image {
        border-radius: 10px;
        box-shadow: 3px 3px 0 0 rgba(0, 0, 0, .5);
    }

    .page-template-template-antonio-ricci-works .work-details .work-year {
        font-size: 26px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-title {
        font-size: 36px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-content {
        font-size: 26px;
    }
}

@media only screen and (min-width: 1400px) {
    .page-template-template-antonio-ricci-works .work-details .work-year {
        font-size: 36px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-title {
        font-size: 48px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-content {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1920px) {
    .page-template-template-antonio-ricci-works .work-details .work-year {
        font-size: 60px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-title {
        font-size: 80px;
    }

    .page-template-template-antonio-ricci-works .work-details .work-content {
        font-size: 40px;
    }
}



/* Footer Box */

.footer-box {
    background-color: #ffffff;
    border-radius: 5px;
}

.footer-box .footer-box-title {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 1.05;
    font-weight: 900;
    font-style: italic;
    color: #0090ff;
}

.footer-box .btn {
    padding: .5rem 1.75rem;
    font-size: 20px;
    line-height: 1;
    font-style: italic;
    font-weight: 900;
    color: #0090ff;
    border-radius: 30px;
    border: solid 4px #0090ff;
}

.footer-box .btn:hover {
    background-color: #0090ff;
    color: #ffffff;
}

@media only screen and (min-width: 768px) {
    .footer-box .footer-box-title {
        font-size: 30px;
    }

    .footer-box .btn {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1200px) {
    .footer-box {
        border-radius: 20px;
    }

    .footer-box .footer-box-title {
        font-size: 40px;
    }

    .footer-box .btn {
        padding: 1.25rem 2.5rem;
        font-size: 40px;
        border-width: 7px;
    }
}

@media only screen and (min-width: 1400px) {
    .footer-box .footer-box-title {
        font-size: 60px;
    }

    .footer-box .btn {
        padding: 2rem 4rem;
        font-size: 60px;
    }
}


#header-player {
    background-color: #ffeb00;
    padding: 10px;
    margin-top: 13px;
    border-radius: 20px;
}

#header-player .label-player {
    font-size: 25px;
    line-height: 25px;
    text-align: right;
    text-shadow: 3px 3px 0 #fff;
}

#header-player .label-player.label-live-video {
    font-size: 35px;
}

#header-player .header-player {
    position: relative;
    padding-top: 56.25%;
}

@media only screen and (max-width: 992px) {
    #header-player {
        width: 100%;
        margin-left: auto;
    }
}

@media only screen and (max-width: 567px) {
    #header-player .label-player.label-live-video {
        font-size: 25px;
    }

    #header-player {
        /* width: 100%;
        margin-left: auto; */
        /* margin-left: 15px; */
    }
}

@media only screen and (min-width: 992px) {
    #header-player .label-player {
        font-size: 35px;
        line-height: 36px;
    }

    #header-player {
        /* width: 75%; */
        /* margin-left: auto; */
        margin-left: 15px;
    }

    .container-videoplayer:not(.veline-couple .container-videoplayer) {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media only screen and (min-width: 1200px) {
    .container-videoplayer:not(.veline-couple .container-videoplayer)
    {
        margin-left: 120px;
        margin-right: 120px;
    }
}


@media only screen and (min-width: 1400px) {
    .container-videoplayer:not(.veline-couple .container-videoplayer)
    {
        margin-left: 150px;
        margin-right: 150px;
    }
}

@media only screen and (min-width: 1600px) {

    #header-player {
        /* width: 75%; */
        /* margin-left: auto; */
        margin-left: 25px;
    }
}

.poll-answer-wrapper .container-videoplayer
{
    margin-left: 0;
    margin-right: 0;
}

#videoContainerSigle .videoplayer,
#sigla-wrapper .videoplayer {
    position: relative;
}

#videoContainerSigle {
    padding: 0px;
    background-color: red;
    color: #ffffff;
}

#videoContainerSigle h3 {
    font-size: 33px;
    line-height: 38px;
    text-shadow: 2px 2px 0 #000;
    font-weight: bold;
    text-align: center;
    padding-bottom: 10px;
}

#videoContainerSigle .testoJingle {
    font-size: 23px;
    /* height: initial !important; */
    text-align: center;
    padding: 20px;
}

@media only screen and (min-width: 768px) {
    .wrapper-info-sigla {
        padding: 30px;
    }

    #videoContainerSigle {
        padding: 0px;
        background-color: red;
        color: #ffffff;
    }

    #videoContainerSigle h3 {
        font-size: 40px;
        line-height: 38px;
        text-shadow: 2px 2px 0 #000;
        font-weight: bold;
        text-align: left;
    }

    #videoContainerSigle .testoJingle {
        font-size: 23px;
        line-height: 26px;
        text-align: left;
        padding: 0px;
        overflow-y: auto;
    }
}

@media only screen and (min-width: 992px) {
    #videoContainerSigle h3 {
        font-size: 40px;
        line-height: 44px;
        text-shadow: 2px 2px 0 #000;
    }
}

.no-wrap {
    white-space: nowrap;
}


.page-template-venti-di-striscia h2.post-top-title:hover,
.page-template-trenta-di-striscia h2.post-top-title:hover {
    text-decoration: none;
}


/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ffffff red;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-thumb {
    /* background-color: #53ff17; */
    background-color: #ffffff;
    border-radius: 10px;
    /* border: 3px groove #ffffff; */
}

*::-webkit-scrollbar-track,
*::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0);
}

.wpcf7-form {
    position: relative;
}

#loading_form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8) url('images/form_loading.gif') no-repeat center center;
}

.slick-prev.slick-arrow.slick-disabled {
    display: none !important;
}

.slick-next.slick-arrow.slick-disabled {
    display: none !important;
}