@import "./template.css";
@import "../fonts/fonts.css";

html, body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--theme-body-font-family);
    font-size: var(--theme-body-font-size);
    font-weight: var(--theme-body-font-weight);
    line-height: var(--theme-body-line-height);
    color: var(--theme-body-color);
    background-color: var(--theme-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);    
}

*,
*::before,
*::after {
    box-sizing: border-box
}

hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--theme-border-width) solid;
    opacity: 1
}

body.fade-out {
    opacity: 0;
    transition: none;
    background-color: #ffffff;
}

.bg-comepartecipare {
    /*background-color: var(--theme-bg-comepartecipare)!important;*/
}

.bg-form {
    background-color: var(--theme-bg-form)!important;
}

.bg-form-page {
    background-color: var(--theme-bg-premi)!important;
}
.bg-premi {
    background-color: var(--theme-bg-premi)!important;
}

.bg-prodotti {
    background-color: var(--theme-bg-prodotti)!important;
}

.bg-partecipa {
    background-color: #cc0033;
}

.ombra-sotto {
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
}

.ombra-sopra {
    -webkit-box-shadow: 6px -6px 8px rgba(0, 0, 0, .1);
    -moz-box-shadow: 6px -6px 8px rgba(0, 0, 0, .1);
    box-shadow: 6px -6px 8px rgba(0, 0, 0, .1);
}

.height100 {
    height: 100%;
}

.letter-spacing {
    letter-spacing: 1px;
}

section {
    padding: 0;
    position: relative;
}

button:focus {
    outline: none;
}

.pre-line {
    white-space: pre-line;
}

.transform-none {
    text-transform: none;
}

.font-weight-300 {
    font-weight: 300;
}

/* Font Weight */

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.line-height-xs {
    line-height: 1rem;
}

.line-height-sm {
    line-height: 1.2rem;
}

.line-height-md {
    line-height: 1.4rem;
}

.line-height-lg {
    line-height: 1.6rem;
}

.line-height-xl {
    line-height: 1.8rem;
}

.line-height-xxl {
    line-height: 2.4rem;
}
/*   Fine Line Height   */

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 1;
}

p {
    font-size: 1rem;
}

a {
    color: var(--theme-body-link-color);
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    outline: 0;
    /*color: var(--theme-body-link-color);*/
    color: inherit;
    text-decoration: none;
}

.img-centered {
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: var(--theme-btn-padding-y) var(--theme-btn-padding-x);
    font-family: var(--theme-btn-font-family);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    border-radius: var(--theme-btn-border-radius);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--theme-btn-bg);
    color: var(--theme-btn-color);
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #FBE7C9;
}

.btn:hover {
    /*
    background-color: #FBE7C9;
    color: #E85134;
    */
    color: var(--theme-btn-color);
}

.btn:active {
    /*
    background-color: #FBE7C9;
    color: #E85134; 
    */
    color: var(--theme-btn-color);
}

.btn:focus {
    /*
    background-color: #FBE7C9;
    color: #E85134;
    */
    color: var(--theme-btn-color);
}

.btn2 {
    display: inline-block;
    padding: var(--theme-btn-padding-y) var(--theme-btn-padding-x);
    font-family: var(--theme-btn-font-family);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #E85134;
    color: #FBE7C9;
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #E85134;
}

.btn2:hover {
    background-color: #E85134;
    color: #FBE7C9;    
}

.btn2:active {
    background-color: #E85134;
    color: #FBE7C9; 
}

.btn2:focus {
    background-color: #E85134;
    color: #FBE7C9;
}

.btn3 {
    display: inline-block;
    padding: var(--theme-btn-padding-y) var(--theme-btn-padding-x);
    font-family: var(--theme-btn-font-family);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 2rem;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: #FFC600;
    color: #E85134;
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #FFC600;
}

.btn3:hover {
    background-color: #FFC600;
    color: #E85134;    
}

.btn3:active {
    background-color: #FFC600;
    color: #E85134; 
}

.btn3:focus {
    background-color: #FFC600;
    color: #E85134;
}

.btn-hp {
    width: 200px;
}

.titolo_small {
    font-family: var(--theme-title-font-family);
    /*font-weight: var(--theme-title-font-weight);*/
    font-size: 2rem;
}

.titolo {
    font-family: var(--theme-title-font-family);
    font-weight: var(--theme-title-font-weight);
    font-size: 3.5rem;
}

.titolo_premio {
    font-family: var(--theme-title-font-family);
    font-weight: var(--theme-title-font-weight);
    font-size: 3.75rem;
}

.titolo5 {
    font-family: var(--theme-title-font-family);
    font-weight: var(--theme-title-font-weight);
    font-size: 5rem;
    line-height: 0.7!important;
}

.titolo_ombra {
    font-family: var(--theme-title-font-family);
    font-weight: var(--theme-title-font-weight);
    font-size: 3.5rem;
    position: relative; /* Necessario per posizionare lo pseudo-elemento */
}

.titolo_ombra::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px; /* Altezza dell'ombra */
  background-color: rgba(0, 0, 0, 0.1); /* Colore dell'ombra */
}

.sottotitolo {
    font-family: 'campari_bitter_sansregular', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: #FFFFFF;
}

.scroll-to-top {
    z-index: 1042;
    right: 1rem;
    bottom: 1rem;
    display: none;
}

.scroll-to-top a {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(33, 37, 41, 0.5);
    line-height: 3.1rem;
}

.close {
    position: absolute;
    right: 1rem;
    top: 0;
    opacity: 1;
    font-size: 3rem;
}

.errored {
    font-family: "Roboto", sans-serif;
    display: none;
    color: #e10000;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    width: 100%;
}

.invioincorso {
    display: none;
    color: #cc0033;
    background-color: #ffffff;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    width: 100%;
}

/* evito che safari colori automaticamente i numeri che riconosce come link telefono */
a[href^=tel] {
text-decoration:inherit;
color: inherit;
}

.navbar-brand-image {
    max-height: 80px;
}

#regolamento {
    scroll-margin-top: 20vh;
}

.btn-faq {
    width: 250px;
}


.hr-line-white {
    border: 2px solid #FFC600;
}

.futura-bold {
    font-family: var(--theme-title-font-family);
}

.futura {
    font-family: var(--theme-body-font-family);
}

.modal-content {
    background-color: #C8102E;
}

.agegate-modal {
    background-image: url("../img/bg_footer.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;  
}

.icona-form {
    height: 35px;
}
.icona-customercare {
    height: 50px;
}

.img-logo-modal {
    max-width: 220px;
}

.sn_age_gate_buttons {
    gap: 10px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sn_age_gate_buttons button {
    background-color: transparent;
    border-radius: 2px !important;
    color: #fff;
    font-size: 20px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    padding: 22px;
    border: 1px solid;
}

.sn_btn {
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    margin: 0px !important;
}

.btn-active {
    background-color: #ffffff!important;
    color: #cc0033!important;
}

.border-red {
    background-color: #FFF;
    border-radius: 0rem;
}

.transparent {
    border: none!important;
    max-width: 90%;
    display: inline-block!important;
}

.cornice-bott {
    height: 20px;
}

.domanda_faq {
    font-family: "campari_bitter_sansregular", sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: left;
    padding-bottom: 10px;
}

.risposta_faq {
    display: none;
    font-family: "campari_bitter_sansregular", sans-serif;
    color: #ffffff;
    font-weight: 400;
    font-size: 1rem;    
}

.img-ico {
    width: 18px;
    height: auto;
}

.hidden {
    display: none;
}

.img-slideshow {
    max-height: 300px;
}

.carousel-control-prev, .carousel-control-next {
    background-color: transparent;
    border: none;
}
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23E85134' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23E85134' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.mfp-figure::after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0,0,0,0.6);
    background: #fff!important;
    margin: -10px;
    margin-bottom: -25px;
}

@media (min-width: 992px) {
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
      width: 2vw;
      height: 2vw;
    }
}

#btn-partecipa {
    margin-top: -92px;
}

#btn-partecipa2 {
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

#premio-hp {
    margin-top: -100px;
}


#form {
    background-image: url("../img/bg_form_hp.png");
    background-size: cover;
    background-repeat: repeat-y;
    background-position: top center;
}

@media (min-width: 768px) {
    #premi {
        background-image: url("../img/bg_premio.png");
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
}

@media (min-width: 992px) {
    #form {
        background-image: url("../img/bg_form_hp.png");
        background-size: cover;
    }
}