/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Montserrat', sans-serif;
    color: #000;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid black;
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6bc1e9;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: #000;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: #000;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #fff;
}

#header .logo img {
    max-height: 40px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 20px;
    margin-left: 30px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    border: 2px solid #47b2e4;
    font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    background: #31a9e1;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
    color: #0c3c53;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }
    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(40, 58, 90, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
    color: #37517e;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: auto;
}

#hero .container {
    padding-top: 20px;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #47b2e4;
}

#hero .btn-get-started:hover {
    background: #209dd8;
}

#hero .btn-watch-video {
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    margin: 10px 0 0 25px;
    color: #fff;
    line-height: 1;
}

#hero .btn-watch-video i {
    line-height: 0;
    color: #fff;
    font-size: 32px;
    transition: 0.3s;
    margin-right: 8px;
}

#hero .btn-watch-video:hover i {
    color: #47b2e4;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
    #hero {
        height: auto;
        text-align: center;
    }
    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }
    #hero .hero-img {
        text-align: center;
    }
    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 28px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    #hero .hero-img img {
        width: 70%;
    }
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
    #hero .btn-get-started {
        font-size: 16px;
        padding: 10px 24px 11px 24px;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f3f5fa;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/

.skills .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
}

.skills .content ul {
    list-style: none;
    padding: 0;
}

.skills .content ul li {
    padding-bottom: 10px;
}

.skills .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.skills .content p:last-child {
    margin-bottom: 0;
}

.skills .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.skills .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #e8edf5;
    height: 10px;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #4668a2;
}


/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/

.header p {
    margin-bottom: 0;
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.header h1 {
    font-size: 24px;
    font-weight: 900;
    font-family: 'Lato', sans-serif;
    color: white;
    margin-bottom: 0;
}

.header a {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #000;
    background-color: #ffd501;
    border-radius: 3px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .5);
    padding: 15px 30px;
}

.header p i {
    color: #f0ad4e;
}

.header .titolo,
.header .ordina,
.header .spedizione {
    margin: 0 20px;
}

.hero-home .descrizione h2,
.hero-home .descrizione h3 {
    color: #000913;
    font-size: 32px;
    font-weight: 600;
    text-shadow: 0 0 2px rgba(0, 0, 0, .3);
}

.hero-home .descrizione h4 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4em;
}

.hero-home .descrizione a {
    background-color: #009619;
    border-radius: 6px 6px 6px 6px;
    color: white;
    padding: 11px;
    width: 100%;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.hero-home .caratteristiche .progress {
    height: 60px;
    display: block;
    background: none;
    border-radius: 0;
}

.hero-home .caratteristiche .progress .skill {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
}

.hero-home .caratteristiche .progress .skill .val {
    float: right;
    font-style: normal;
}

.hero-home .caratteristiche .progress-bar-wrap {
    background: #eeeeee;
    height: 30px;
}

.hero-home .caratteristiche .progress-bar {
    width: 1px;
    height: 30px;
    transition: 0.9s;
    background-color: #ffa13a;
}

.hero-home .caratteristiche ul {
    padding-left: 0;
    list-style: none;
}

.hero-home .caratteristiche .lista i {
    color: #008d26;
    margin-right: .5rem;
}

.hero-home .caratteristiche .lista span {
    font-size: 22px;
    font-weight: 500;
}

.hero-home .punteggio {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.hero-home .punteggio i {
    color: #f0ad4e;
}

.hero-home .caratteristiche .disponibilita {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    text-align: left;
    margin-left: 1rem;
}

.raccomandato-home {
    background-color: #d7f6d5;
    padding: 10px;
}

.raccomandato-home img {
    margin-right: 3rem;
    height: 74px;
}

.raccomandato-home .testo {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.raccomandato-home .testo h2 {
    color: #00ba1a;
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 0;
}

.raccomandato-home .testo p {
    margin-bottom: 0;
    color: #00ba1a;
    font-size: 12px;
    font-weight: 400;
}

.btn-ordina-adesso {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    background-color: #23a455;
    border-radius: 7px 7px 7px 7px;
    box-shadow: 3px 3px 4px 0 #000;
    padding: 10px 25px;
    display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: center;
}

.btn-ordina-adesso .testo-xs {
    font-size: 10px;
}

.btn-ordina-adesso:hover {
    color: white;
}

.icone-home {
    padding: 30px 0;
}

.icone-home h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 19px;
    font-weight: 600;
    color: #272f40;
}

.icone-home img {
    height: 80px;
}

.caratteristiche-testi-home {
    padding: 30px 0;
}

.caratteristiche-testi-home h3 {
    color: #000913;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.caratteristiche-testi-home p {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: justify;
}

.caratteristiche-testi-home img {
    width: 100%;
}

.caratteristiche-tecniche-home {
    padding: 30px 0;
    background-color: #eaeaea;
}

.caratteristiche-tecniche-home h2 {
    color: #000913;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.caratteristiche-tecniche-home p {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: justify;
}

.garanzia-home {
    padding: 30px 0;
    background-color: #ededed;
}

.garanzia-home h2 {
    color: #000913;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.garanzia-home p {
    color: #000;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: justify;
}

.garanzia-home .separatore {
    width: 100%;
    border: 1px solid #00132B;
}

.recensioni-home {
    padding: 30px 0;
}

.recensioni-home .recensioni .content h3 {
    font-weight: 700;
    font-size: 32px;
    color: #37517e;
}

.recensioni-home .recensioni .content ul {
    list-style: none;
    padding: 0;
}

.recensioni-home .recensioni .content ul li {
    padding-bottom: 10px;
}

.recensioni-home .recensioni .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #47b2e4;
}

.recensioni-home .recensioni .content p:last-child {
    margin-bottom: 0;
}

.recensioni-home .recensioni .progress {
    height: auto;
    display: block;
    background: none;
    border-radius: 0;
    margin-bottom: 2rem;
}

.recensioni-home .recensioni .progress .skill {
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    color: #37517e;
}

.recensioni-home .recensioni .progress .skill .val {
    float: right;
    font-style: normal;
}

.recensioni-home .recensioni .progress-bar-wrap {
    background: #eeeeee;
    height: 15px;
    border-radius: 2px;
}

.recensioni-home .recensioni .progress-bar {
    width: 0;
    height: 15px;
    transition: 0.9s;
    background-color: #ecab1b;
    border-radius: 2px 0 0 2px;
}

.recensioni-home h2 {
    color: #000913;
    font-size: 29px;
    font-weight: 600;
    text-align: center;
}

.recensioni-home .recensioni-clienti-home span {
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
}

.recensioni-home .recensioni-clienti-home span i {
    color: #ecab1b;
    margin-right: 0.5rem;
}

.recensioni-home .punteggio {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.recensioni-home .punteggio .voto {
    color: #fff;
    font-size: 25px;
    padding: 15px;
    background: #ecab1b;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.recensioni-home .punteggio .numero-recensioni {
    color: #303030;
    font-size: 16px;
    font-weight: bold;
}

.recensioni-home .box-recensione-cliente {
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .5);
    margin: 0 15px;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    text-align: center;
    border-radius: 4px;
    height: 100%;
}

.recensioni-home .box-recensione-cliente h6 {
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
}

.recensioni-home .box-recensione-cliente .voto span {
    font-size: 14px;
    color: #7A7A7A;
    font-weight: bold;
}

.recensioni-home .box-recensione-cliente .voto span i {
    color: #ecab1b;
}

.recensioni-home .box-recensione-cliente .data-acquisto {
    color: #0c0c0c;
    font-size: 10px;
}

.recensioni-home .box-recensione-cliente .testo-recensione {
    font-size: 14px;
    font-style: italic;
    color: #0c0c0c;
}

.come-ordinare-home {
    padding: 30px 0;
}

.come-ordinare-home h2 {
    color: #000913;
    font-size: 29px;
    font-weight: 600;
    text-align: center;
}

.come-ordinare-home img {
    height: 84px;
}

.come-ordinare-home h6 {
    color: #272f40;
    font-weight: 700;
}

.come-ordinare-home p {
    font-size: 14px;
}

ordina-adesso-home {
    padding: 30px 0;
}

.ordina-adesso-home h2 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.ordina-adesso-home .promo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.ordina-adesso-home .promo p {
    color: #23a455;
    font-family: 'Lato', sans-serif;
    margin-bottom: 0;
    font-size: 15px;
}

.ordina-adesso-home .promo .prezzo {
    font-size: 40px;
    color: #039f00;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.ordina-adesso-home .promo .prezzo-precedente {
    font-size: 19px;
    font-weight: 400;
    color: #000;
    font-size: 17px;
    text-decoration: line-through;
}

.ordina-adesso-home .form {
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
    color: #000;
}

.ordina-adesso-home .form .form-select,
.ordina-adesso-home .form .form-control {
    background-color: #fff;
    border-color: #000;
    border-radius: 5px 5px 5px 5px;
    padding: 6px 16px;
    border-top-left-radius: 5px !important;
    border-bottom-left-radius: 5px !important;
}

.ordina-adesso-home .form label {
    font-size: 14px;
    margin-bottom: 0.25rem;
}

.ordina-adesso-home .form label span {
    color: red;
}

.ordina-adesso-home .form .btn-completa-ordine {
    background-color: #00b739;
    color: #fff;
    border: 1px solid #00b739;
    font-size: 26px;
    font-weight: 600;
    display: block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 8px 16px;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.ordina-adesso-home .consulenza {
    padding: 10px;
    background-color: #d0ebc4;
    border-style: dashed;
    border-color: #19a800;
    border-width: 3px;
}

.ordina-adesso-home .consulenza p {
    text-align: center;
    color: #045d00;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 15px;
}

.domande-frequenti-home {
    padding: 30px 0;
}

.domande-frequenti-home h2 {
    color: #000913;
    font-size: 29px;
    font-weight: 600;
    text-align: center;
}

.domande-frequenti-home .box-domanda {
    border-bottom: 1px solid #d5d8dc;
}

.domande-frequenti-home .box-domanda .domanda {
    padding: 15px;
    cursor: pointer;
}

.domande-frequenti-home .box-domanda .domanda h6 {
    font-weight: 600;
    color: #0c0c0c;
    margin-bottom: 0;
}

.domande-frequenti-home .box-domanda .domanda h6 i {
    font-size: 11px;
}

.domande-frequenti-home .box-domanda .risposta {
    display: none;
}

.domande-frequenti-home .facebook {
    text-align: center;
    margin-top: 1.5rem;
}

.domande-frequenti-home .facebook p {
    text-align: center;
    font-family: roboto, Sans-serif;
    font-size: 9px;
    font-weight: 400;
    color: #7A7A7A;
    margin-bottom: 0;
}

.footer {
    text-align: center;
}

.footer a {
    color: #000;
    font-family: roboto, Sans-serif;
    font-size: 6px;
    font-weight: 600;
}

.hero-home .descrizione h3 .barra {
    text-decoration: line-through;
}

@media (max-width: 991px) {
    .header a {
        padding: 7px 14px;
        font-size: 14px;
    }
    .header .titolo,
    .header .ordina,
    .header .spedizione {
        margin: 0 5px;
    }
    .header h1 {
        font-size: 14px;
    }
    .header p {
        font-size: 14px;
    }
    .icone-home img {
        height: 60px;
    }
    .icone-home h3 {
        font-size: 14px;
    }
    .raccomandato-home img {
        margin-right: 1rem;
        height: 62px;
    }
    .raccomandato-home .testo h2 {
        font-size: 15px;
    }
    #hero .container {
        padding-top: 40px;
    }
    .hero-home .caratteristiche .lista span {
        font-size: 19px;
        text-align: left;
    }
    .hero-home .caratteristiche .progress {
        text-align: left;
    }
    .caratteristiche-testi-home p {
        text-align: center;
        font-size: 17px;
    }
    .caratteristiche-testi-home .custom-padding {
        padding: 0;
    }
    .hero-home .descrizione h3 {
        font-size: 19px;
    }
    .hero-home .descrizione a {
        font-size: 16px;
    }
    .caratteristiche-testi-home h3 {
        margin-top: 1.5rem;
    }
}

text/css personalizzato.css ( UTF-8 Unicode text) body {}

.ekko-lightbox .modal-header {
    padding: 10px;
}

.ekko-lightbox .modal-body {
    padding: 0px;
    text-align: center !important;
}

.alert {
    margin: 25px;
}

.preloader {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
}


/* LOADER 1 */

.loader-1:before,
.loader-1:after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 10px solid transparent;
    border-top-color: #3498db;
}

.loader-1:before {
    z-index: 100;
    animation: spin 1s infinite;
}

.loader-1:after {
    border: 10px solid #ccc;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

form .preloader {
    display: none;
}

form .preloader.show {
    float: left;
    display: block;
    width: 35px;
    margin: 10px 0px 0px 15px;
    height: 35px;
}

form.loading {
    opacity: 0.5;
}

form.loading .preloader {
    display: block;
    position: absolute;
    left: calc(50% - 50px);
    top: calc(50% - 50px);
}

#submit-button {
    margin-top: 10px;
}

.new-sbm-btn {
    font-weight: bold;
    margin-left: -5px;
    border-radius: 0px;
    cursor: pointer;
}

.force-hidden {
    display: none !important;
}

@media (min-width:480px) {
    button.new-sbm-btn:before {
        top: 0.5px;
        left: -17px;
        position: relative;
        content: "\f07a";
        font-family: Font Awesome\ 5 Free;
        color: white;
        background-color: #343a40;
        padding: 0.87rem 1rem;
        font-size: 1.25rem;
        line-height: 1.5;
    }
}

img {
    cursor: pointer;
}

#metodo_pagamento ul {
    list-style-type: none;
    padding: 0px;
}

#metodo_pagamento li {
    display: inline-block;
}

#metodo_pagamento label {
    border: 1px solid #fff;
    padding: 10px 0px;
    display: block;
    position: relative;
    margin: 1px;
    height: 10%;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#metodo_pagamento label::before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -7px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 24px;
    transition-duration: 0.4s;
    transform: scale(0);
}

#metodo_pagamento label img {
    width: 100%;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
    display: inline;
}

#metodo_pagamento :checked+label {
    border-color: #a32631;
}

#metodo_pagamento :checked+label::before {
    content: "✓";
    background-color: #a32631;
    transform: scale(1);
}

#metodo_pagamento li {
    display: inline-block;
    width: 48%;
    max-width: 400px;
    text-align: center;
}

#scegli_prodotti input[type="radio"] {
    opacity: 0;
    height: 0px;
    visibility: hidden
}

.m_p {
    position: absolute;
    opacity: 0;
    width: 100px;
    height: 80px;
    z-index: 1111;
    margin-left: -50px !important;
}

.m_p_input {
    height: 80px;
}

.visibile {
    height: 70px;
    width: 100%;
    margin: auto;
    position: relative;
    z-index: 10000;
    background-color: #ffffff50;
    top: -55px;
    margin-bottom: -20px;
    padding-top: 50px;
    display: block !important;
    font-size: 12px;
}

#alert_campi {
    display: none;
}

small {
    font-size: 12px !important;
}

.row {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.first_image {
    margin: -20px 50px;
    padding: 0px;
}

.product-right {
    position: fixed;
    top: 200px;
    right: 3%;
}

.hide_on_mobile {
    display: block !important;
}

.hide_on_desktop {
    display: none !important;
}

.photo-gallery {
    color: #313437;
    background-color: #fff;
}

.photo-gallery p {
    color: #7d8285;
}

.photo-gallery h2 {
    font-weight: bold;
    margin-bottom: 40px;
    padding-top: 40px;
    color: inherit;
}

@media (max-width:767px) {
    .photo-gallery h2 {
        margin-bottom: 25px;
        padding-top: 25px;
        font-size: 24px;
    }
    .form_box {
        width: calc(100% - 10px) !important;
        margin: 10px auto;
        padding: 40px 20px;
    }
}

.photo-gallery .intro {
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.photo-gallery .intro p {
    margin-bottom: 0px;
}

.photo-gallery .photos {
    padding-bottom: 10px;
}

.photo-gallery .item {
    padding-bottom: 10px;
}

.fixed-container {
    display: none;
    width: 100%;
    top: 0;
    position: fixed;
    background: #333333;
    z-index: 99;
}

.zpre-container {
    background: #524031;
}

.fixed-container img {
    width: 200px;
    height: auto;
}

.newStar {
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.newStar::before {
    content: "★★★★★";
    color: rgb(211, 210, 210);
}

.newStar span {
    position: absolute;
    left: 0;
    color: #fdbf14;
    overflow: hidden;
}

.newStar span::before {
    content: "★★★★★";
}

.button_zero {
    color: #fff;
    background-color: #333;
    padding: 7px 7px;
    font-size: 26px;
}

.button_zero:hover {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
    color: #fff;
    text-decoration: none;
}

.zpre-container .zpre {
    line-height: 25px;
    box-sizing: border-box;
    padding: 10px 20px 0px 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Lato', sans-serif;
}

.card-header {
    padding: 5px 20px;
    margin-bottom: 0;
    border: 1px solid #524031;
    background-color: #ffffff00;
}

.card-header button {
    color: #524031 !important;
}

#accordion {
    width: 840px;
}

.product-view .product-shop .short-description ul li:before {
    content: '';
    background: url('img/check_bullet.png') no-repeat;
    width: 28px;
    height: 28px;
    position: absolute;
    left: 0;
    top: 0;
}

.filtri img {
    width: 100px !important;
    height: auto;
}

.catalog-product-view .prod-blocks .prod-block1 .box {
    margin: 40px -40px 0;
    padding: 30px 40px;
    background-color: #7b4e27;
    color: #fff;
}

.product-right .forma .ceneje-right {
    position: absolute;
    background: #444;
    padding: 4px 29px;
    color: #fff;
    top: 0;
    font-size: 35px;
    font-weight: 600;
    transform: translate(-50%, -50%);
    left: 50%;
}

.price-box .price {
    color: #444;
}

.catalog-product-view .prod-blocks .prod-block6 .inner .content h3 {
    color: #444;
}

.catalog-product-view .prod-blocks .prod-block6 .inner .content h3:after {
    background-color: #ff006c00;
}

.inner p {
    display: inline-table;
    text-align: center;
    width: 200px;
    height: 200px;
    font-size: 15px;
}

.inner img {
    vertical-align: top;
}

.product-right .prednosti li {
    color: #444;
}

.catalog-product-view .prod-blocks .prod-block4 .cont .content ul li h3:after {
    background-color: #444;
}

.footer-container {
    background-color: #e0e2e4;
}

.form_box {
    background: #fff;
    /* border: 2px dotted;*/
    border-radius: 40px;
    width: calc(50% - 150px) !important;
    margin: 50px;
}

.catalog-product-view .prod-blocks .prod-block3 .block-icons .ic .icn img {
    border: 1px solid #444;
    border-radius: 50%;
}

#scegli_prodotti ul {
    list-style-type: none;
}

#scegli_prodotti li {
    display: inline-block;
}

#scegli_prodotti input[type="checkbox"][id^="cb"] {
    display: none;
}

#scegli_prodotti label {
    border: 1px solid #fff;
    display: block;
    position: relative;
    margin: 10px;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#scegli_prodotti label::before {
    background-color: white;
    color: white;
    content: " ";
    display: block;
    border-radius: 50%;
    border: 1px solid grey;
    position: absolute;
    top: -7px;
    left: -5px;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 24px;
    transition-duration: 0.4s;
    transform: scale(0);
}

#scegli_prodotti label img {
    height: 100px;
    width: 100px;
    transition-duration: 0.2s;
    transform-origin: 50% 50%;
}

#scegli_prodotti :checked+label {
    border-color: #444;
}

#scegli_prodotti :checked+label::before {
    content: "✓";
    background-color: #444;
    transform: scale(1);
}

#scegli_prodotti li {
    display: inline-block;
    width: 49%;
    text-align: center;
}

.product-right .prednosti li.dostava {
    background-image: url('img/track.png');
    background-size: contain;
}

.product-right .prednosti li.vracilo {
    background-image: url('img/reso.png');
    background-size: contain;
}

.product-right .forma .special-price .price,
.product-right .forma .regular-price .price {
    font-size: 55px;
    line-height: 20px;
}

ul.horiz_list {
    white-space: nowrap;
    overflow-x: auto;
}

ul.horiz_list li {
    display: inline-block;
    zoom: 0.7;
    width: 300px;
    padding: 30px;
    margin-left: 10px;
    border: solid #524031 1px;
    -moz-box-shadow: 2px 0px 11px #33333350;
    -webkit-box-shadow: 2px 0px 11px #33333350;
    box-shadow: 2px 0px 11px #33333350;
}

#box_list {
    max-width: 1300px !important;
}

@media only screen and (max-width: 768px) {
    .form_box {
        width: calc(100% - 10px) !important;
        margin: 10px;
    }
    #accordion {
        width: 100%;
    }
    .product-right {
        display: none !important;
    }
    .zpre {
        display: none;
    }
    .hide_on_mobile {
        display: none !important;
    }
    .hide_on_desktop {
        display: block !important;
    }
    .sticky-addto-cart {
        background: #be9562;
    }
    button.button.btn-cart span,
    button.button.btn-checkout span {
        background: #444;
    }
}

#totale_ordine_form {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
}

.resoconto {
    padding: 10px;
    margin: 15px 0px;
    border: solid 1px #ffc203;
}

.resoconto span {
    display: block;
}

.yellow_bl {
    color: black;
    padding: 4px;
    background: #ffc205;
    font-weight: bold;
    border-radius: 5px;
}

@media screen and (max-width: 767px) {
    .form-container {
        padding: 60px 10px;
    }
}

.form-control {
    padding: 1rem .75rem;
    height: 40px;
}

@media screen and (max-width: 479px) {
    .form-block {
        text-align: left;
    }
}

#resoconto {
    text-align: center;
}