@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: .25
}
*/

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-premi {
    background-color: var(--theme-bg-premi)!important;
}

.bg-prodotti {
    background-color: var(--theme-bg-prodotti)!important;
    background-image: url("../img/background-prodotti_mob.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;    
}

.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: 2.5rem;
}

/*   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);
    text-decoration: none;
}

.underline {
    text-decoration: underline!important;
}

.underline a:link {
    text-decoration: underline!important;
}

.img-centered {
    margin: 0 auto;
}

#btn-partecipa {
        /*
        lo gestisco in js
        margin-top: -9vh;
        padding-bottom: 9vh;
        */
}

.btn {
    display: inline-block;
    padding: var(--theme-btn-padding-y) var(--theme-btn-padding-x);
    font-family: var(--theme-btn-font-family);
    font-size: 1rem;
    font-weight: var(--theme-btn-font-weight);
    line-height: var(--theme-btn-line-height);
    color: var(--theme-btn-color);
    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;
    border: var(--theme-btn-border-width) solid var(--theme-btn-border-color);
    background-color: var(--theme-btn-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn:hover {
    color: var(--theme-btn-color)!important;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color);
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.btn:active {
    color: var(--theme-btn-color)!important;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color); 
}

.btn:focus {
    color: var(--theme-btn-color)!important;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-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: 1rem;
    font-weight: var(--theme-btn-font-weight);
    line-height: var(--theme-btn-line-height);
    color: var(--theme-btn-bg);
    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;
    border: var(--theme-btn-border-width) solid var(--theme-btn-border-color);
    background-color: var(--theme-btn-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn2:hover {
    color: var(--theme-btn-bg)!important;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color);
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

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

.sottotitolo {
    font-family: var(--theme-subtitle-font-family);
    font-weight: var(--theme-subtitle-font-weight);
    font-size: var(--theme-subtitle-font-size);
    color: var(--theme-subtitle-color);
    line-height: var(--theme-subtitle-font-size);
}

.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 {
    display: none;
    color: #ffffff;
    background-color: #e10000;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    width: 100%;
}

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

/*
.sfondo_fisso01{
    background-image: url(../img/sfondo.jpg);
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: top;
    background-attachment: fixed;
    background-size: cover;
}

.sfondo_fisso02 {
    background-image: url(../img/bg_meccanica.png);
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.background {
  background-image: url("../img/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
*/
/* 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: 70px;
}

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

.img-max-width {
    max-width: 75%;
}

.button-max-width {
    max-width: 20%;
}

.hr-line {
    border: 1px solid var(--theme-body-color);
}

.hr-line-white {
    border: 1px solid #fff;
}
.hr-title {
  display:flex;
  flex-flow:row;
  justify-content:center;
  align-items:center;
}
hr {
  flex:1;
}

#torna-home {
    cursor: pointer;
}

.bg-waves {
    background-image: url(../img/bg_waves.png);
    background-color: #ff5000;
    background-repeat: repeat-y;
    background-position: center center;
    background-size: auto;
}

@media (min-width: 992px) {
    .bg-waves {
        background-size: 100%;
    }    
}


.icona {
    width: 50px;
}

.icona-wa {
    width: 100px;
}
.es-modal {
    background-image: url(../img/bg_modal.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

.agegate-modal {
    background-image: url(../img/bg_modal.png);
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    min-height: 621px;
}

.modal-content {
    background-color: transparent;!important;
    border: none!important;
}


.afacad {
  font-family: "Afacad", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.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: #ff5000!important;
}

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

.text-underline {
    text-decoration: underline!important;
}

.btn-faq {
    width: 100%;
    max-width: 400px;
    display: inline-block;
    padding: 1rem 2rem;
    font-family: "Afacad", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: var(--theme-btn-line-height);
    color: #ff5000;
    border-radius: 3rem;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color); 
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    background-color: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn-faq:hover {
    color: #fff;
    background-color: #ff5000;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color); 
}

.btn-faq.active {
    color: #fff;
    background-color: #ff5000;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color); 
}

.risposta_faq {
    display: none;
    font-family: "Afacad", serif;
    color: #000;
    font-weight: 400;
    font-size: 1.3rem;    
}

.domanda_faq {
    font-family: "Afacad", serif;
    color: #ff5000;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff5000;
}

.hidden {
    display: none;
}

.btn-agegate {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    padding: 0.5rem 2rem;
    font-family: "Afacad", serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: var(--theme-btn-line-height);
    color: #ff5000;
    border-radius: 3rem;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color); 
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    background-color: #fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn-agegate:hover {
    color: #fff;
    background-color: #ff5000;
    border: var(--theme-btn-border-width) solid var(--theme-btn-hover-border-color); 
}

.ombrata {
    -webkit-box-shadow: 0px 5px 0px rgba(0, 0, 0, .1), 0px -5px 0px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0px 5px 0px rgba(0, 0, 0, .1), 0px -5px 0px rgba(0, 0, 0, .1);
    box-shadow: 0px 5px 0px rgba(0, 0, 0, .1), 0px -5px 0px rgba(0, 0, 0, .1);
}

.icona-form {
    height: 35px;
}

.btn-hp {
    width: 200px;
}

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

.border-orange {
    border: 2px solid #ff5000;
}

.icona-customercare {
    height: 50px;
}