/*@import url(https://fonts.googleapis.com/css?family=Satisfy); */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,600,400italic);
@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700);

:root {
    --ap-alertbar-bg: #3C3C3B;
    --ap-alertbar-fg: #ffffff;
    --ap-alertbar-link: #ffd166;

    /* Velocità scorrimento (px/sec) */
    --ap-marquee-speed: 50;
    /* Spazio tra la prima e la seconda copia del testo in scroll */
    --ap-marquee-gap: 48px;
}

.ap-blink {
    animation: blinker 1.5s linear infinite;
}

/* Icona/emoji */
#ap-alertbar .ap-blink {
    flex: 0 0 auto;
    color: yellow;
    font-weight: bold;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

#ap-alertbar {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99;
    background: var(--ap-alertbar-bg);
    color: var(--ap-alertbar-fg);
}

/* Contenitore interno: usa tutta la larghezza, centrato nella griglia quando serve */
#ap-alertbar .ap-inner {
    margin: 0 auto;
    padding: 10px 16px;

    /* layout base: centrato e in una riga */
    display: flex;
    align-items: center;
    gap: 12px;

    /* Niente a capo */
    white-space: nowrap;

    /* Nasconde il testo che eccede quando scorre */
    overflow: hidden;
}

/* Contenitore del messaggio:
 - occupa TUTTO lo spazio disponibile
 - centra il testo quando NON scorre
*/
#ap-alertbar .ap-msg-wrap {
    flex: 1 1 auto;
    min-width: 0; /* fondamentale per permettere l'overflow misurabile */
    display: flex;
    justify-content: center; /* centra quando non scorre */
    overflow: hidden; /* nasconde l'extra quando scorre */
}

/* Il testo reale */
#ap-alertbar .ap-msg {
    display: inline-block; /* misurabile in larghezza */
    white-space: nowrap; /* una sola riga */
}

/* === Modalità SCROLL (si attiva via classe .is-overflowing aggiunta da JS) === */
#ap-alertbar.is-overflowing .ap-msg-wrap {
    /* quando scorre, non vogliamo l'effetto "centrato" ma un nastro che parte da destra */
    justify-content: flex-start;
    position: relative;
}

/* Nastro scorrevole: duplicazione del testo per loop infinito */
#ap-alertbar.is-overflowing .ap-marquee {
    display: inline-flex;
    align-items: center;
    gap: var(--ap-marquee-gap);
    /* L’animazione viene settata in JS con una durata proporzionata alla larghezza del contenuto */
    will-change: transform;
    animation-name: ap-marquee-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

/* Di default mostra solo una copia del testo */
#ap-alertbar .ap-msg-dup {
  display: none;
}

/* Quando serve lo scroll (overflow), mostra anche la seconda copia */
#ap-alertbar.is-overflowing .ap-msg-dup {
  display: inline-block;
}

@keyframes ap-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
    /* -50% perché il nastro contiene 2 copie identiche */
}

/* Rispetto accessibilità: onora chi preferisce meno animazioni */
/*@media (prefers-reduced-motion: reduce) {*/
/*    #ap-alertbar.is-overflowing .ap-marquee {*/
/*        animation: none;*/
/*        transform: translateX(0);*/
/*    }*/
/*}*/


@media (max-width: 767px) {
    #ap-alertbar {
        top: 70px !important;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    #ap-alertbar {
        top: 108px !important;
    }
}

.flex-direction-nav a:before {
    border-color: transparent #FF6600 transparent transparent !important;
}

.flex-direction-nav a.flex-next:before {
    border-color: transparent transparent transparent #FF6600 !important;
}

[style*="--aspect-ratio"] > :first-child {
    width: 100%;
}

[style*="--aspect-ratio"] > img {
    height: auto;
}

@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }

    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }

    [style*="--aspect-ratio"] > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

body {
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
}

p {
    font-size: 13px;
    line-height: 21px;
}

@-webkit-viewport {
    width: device-width;
}

@-moz-viewport {
    width: device-width;
}

@-ms-viewport {
    width: device-width;
}

@-o-viewport {
    width: device-width;
}

@viewport {
    width: device-width;
}

a {
    color: #F0820C;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    outline: 0;
}

a:hover,
a:focus,
a:active,
a.active {
    color: #ee2524;
    text-decoration: none;
    outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.text-primary {
    color: #F0820C;
}

.pointer {
    cursor: pointer;
}

.white-text {
    color: #fff !important;
}

.section-title h3, B {
    color: #666;
/ / font-style: italic;
    font-size: 28px;
    font-family: 'Oswald', sans-serif;
    text-transform: none;
}

.section-title h4 {
    color: #666;
    font-size: 21px;
    text-transform: none;
}

.section-title p {
    padding-bottom: 20px;
    color: #666;
    font-size: 18px;
/ / font-style: italic;
    font-weight: 300;
}

.btn-primary, .btn-login {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-color: #F0820C;
    background-color: #F0820C;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #fff;
    border-color: #ea321e;
    background-color: none !important;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #F0820C;
    background-color: #F0820C;
}

.btn-primary .badge {
    color: #F0820C;
}

.btn-login {
    margin-top: 15px;
    width: 100%;
}

.btn-login .cliente:hover,
.btn-login .cliente:focus,
.btn-login .cliente:active,
.btn-login .cliente.active {
    color: #fff;
    background-color: #ee2524;
}

.btn-xl {
    border-color: #F0820C;
    background-color: #F0820C;
}

.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active,
.btn-xl.active,
.open .dropdown-toggle.btn-xl {
    border-color: #ea321e;
    background-color: #ea321e;
}

.btn-xl.disabled,
.btn-xl[disabled],
fieldset[disabled] .btn-xl,
.btn-xl.disabled:hover,
.btn-xl[disabled]:hover,
fieldset[disabled] .btn-xl:hover,
.btn-xl.disabled:focus,
.btn-xl[disabled]:focus,
fieldset[disabled] .btn-xl:focus,
.btn-xl.disabled:active,
.btn-xl[disabled]:active,
fieldset[disabled] .btn-xl:active,
.btn-xl.disabled.active,
.btn-xl[disabled].active,
fieldset[disabled] .btn-xl.active {
    border-color: #F0820C;
    background-color: #F0820C;
}

.btn-xl .badge {
    color: #F0820C;
    background-color: #fff;
}

/*------------------------------------------------*/
/* Start Top Navbar Section                           */
/*------------------------------------------------*/

.navbar-default {
    border-color: transparent;
    background-color: #fff;
    -webkit-box-shadow: 0px 7px 10px -2px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 7px 10px -2px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 7px 10px -2px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.navbar-default .nav.secondary {
    width: 100%;
/ / border-bottom: 1 px solid white;
    margin-top: 0px;
    padding: 5px;
}

.navbar-default .nav.secondary a {
    padding: 10;
    color: white;
    text-transform: uppercase;
}

.navbar-brand {
    margin-left: 0px;
}

.navbar-brand > img {
    height: 100%;
    width: auto;
}

.navbar-default img.icon {
    width: 30px
}

.navbar-default.navbar-shrink .navbar-brand {
    height: 80px;
}

.navbar-default.navbar-shrink img.icon {
    width: 24px;
}

.navbar-default .navbar-brand {
    padding: 0px;
    height: 90px;
    color: #F0820C;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:active,
.navbar-default .navbar-brand.active {
    color: #ee2524;
}

.navbar-default .navbar-collapse {
    border-color: rgba(255, 255, 255, .02);
}

.navbar-default .navbar-toggle {
    border-color: #F0820C;
    background-color: #F0820C;
}

.navbar-default .nav li a:hover,
.navbar-default .nav li a:focus {
    outline: 0;
    color: #F0820C;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #F0820C;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-default .nav li span, .navbar-default .nav li a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #666666;
    font-size: 13px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
}

.navbar-default .nav li span, .navbar-default .nav li a:hover, .navbar-default .nav li #cercainput:focus {
    color: #ee2524;
}

.navbar-default .nav li.righter {
    float: right;
}

.navbar-default .navbar-nav > .active > a {
    border-radius: 0;
    color: #fff;
    background-color: #F0820C;
}

.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #ee2524;
    background-color: #F0820C;
}

.navbar-default .nav li a svg,
.navbar-default .nav li div svg {
    width: 36px;
}

.navbar-default .nav li a img,
.navbar-default .nav li div img {
    /* should be 36px but visually 40px is right */
    width: 40px;
}

svg path {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.navbar-default .nav li a:hover svg path, .navbar-default .nav li div:hover svg path, svg:hover path {
    fill: #ee2524;
}

.navbar-collapse.in {
    margin-right: -50px; /* maximum width of scrollbar */
    padding-right: 50px; /* maximum width of scrollbar */
}

.navbar-right {
    margin-top: 5px;
    margin-right: 0px;
    /*background-color: #b92c28;*/ /* DEBUG */

    width: 77%;
    min-width: fit-content;
    /* <AUTOMATIC_GAP_AND_SIZE> */
    display: flex;
    justify-content: space-around; /* Automatically distributes space */
    flex-wrap: wrap; /* Ensures items don't wrap */
    gap: min(1vw, 70px); /* Increases gap dynamically */
    /* </AUTOMATIC_GAP_AND_SIZE> */
}

.cercainputLI {
    position: absolute;
    top: 40px;
    right: 510px;
    float: right;
}

#cercainput {
    width: 100%;
    line-height: 12px;
    margin: 0;
    padding: 0 0 3px 0;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #666666;
    font-size: 14px;
}

.navbar-default.navbar-shrink .cercainputLI input {
    margin: 0;
}

.navbar-collapse.in::-webkit-scrollbar {
    width: 0 !important;
    overflow: -moz-scrollbars-none;
}

@media (min-width: 768px) {

    .navbar-default {
        padding: 0;
        border: 0;
        background-color: #fff;
        -webkit-transition: padding .3s;
        -moz-transition: padding .3s;
        -o-transition: padding .3s;
        transition: padding .3s;

    }

    .navbar-default .navbar-brand, .navbar-default img.icon {
        font-size: 2em;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .navbar-default .navbar-nav > .active > a {
        border-radius: 3px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -o-border-radius: 3px;
    }

    .navbar-default.navbar-shrink {
        padding: 0;
        background-color: #fff;
    }

    .navbar-default.navbar-shrink .navbar-brand {
        font-size: 1.5em;
    }

    .nav > li > a.navlink, .nav > li > div.navlink {
        display: table;
        /* <AUTOMATIC_GAP_AND_SIZE> */
        flex: 1; /* Makes all items take equal space */
        max-width: 150px; /* Prevents elements from growing beyond 150px */
        text-align: center;
        /* </AUTOMATIC_GAP_AND_SIZE> */
    }

    .navicon, .navlabel {
        display: table-row;
        white-space: nowrap;
    }

}

@media (max-width: 767px) {

    .navbar-default.navbar-shrink .navbar-brand {
        height: 68px;
    }

    .navbar-default .navbar-brand {
        height: 68px;
    }

    .navbar-collapse .nav li a, .navbar-collapse .nav li div {
        padding-left: 15px;
    }

    .navbar-collapse .nav.secondary {
        background-color: #fff;
    }

    .navbar-collapse .nav.secondary a {
        padding-left: 25px;
        color: #F0820C;
    }

    .navbar-collapse .nav li.righter {
        float: none;
    }

    .navbar-brand {
        margin-left: 15px;
    }

    .navbar-right {
        margin-top: 0px;
        margin-right: 0px;
        /* <AUTOMATIC_GAP_AND_SIZE>: fix wrapping */
        display: block;
        /* </AUTOMATIC_GAP_AND_SIZE> */
    }

    .cercainputLI {
        position: absolute;
        top: 0px;
        margin-top: 5px;
        right: -25px;
        float: left;
    }

    .cercainputLI INPUT {
        width: 300px;
    }

    .nav > li > a.navlink, .nav > li > div.navlink {
        display: table;
        text-align: left;
    }

    .navicon, .navlabel {
        display: table-cell;
        vertical-align: middle;
        padding-left: 0px;
    }

    #cercainput {
        width: 140px;
        margin: -3px 0 0 -5px;
        text-align: left;
    }

}

@media (max-width: 479px) {
    .cercainputLI INPUT {
        width: 200px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {

    #containermenu {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .navbar-default .navbar-brand {
        padding: 0px;
        height: 65px;
    }

    .navbar-default.navbar-shrink .navbar-brand {
        height: 65px;
    }

    .navbar-default .cercainputLI INPUT {
        margin: 3px 0;
    }

    .navbar-default {
        background-image: url("../images/px_orange.3d39ca651866.gif");
        background-size: 100% 36px;
        background-position: bottom;
        background-repeat: repeat-x;
    }

}

@media (min-width: 1200px) {

    .navbar-default {
        background-image: url("../images/px_orange.3d39ca651866.gif");
        background-size: 100% 36px;
        background-position: bottom;
        background-repeat: repeat-x;
    }

}

/*--------------------------------------------------*/
/* Start Side Nav Section
/*--------------------------------------------------*/


.menu-wrap a {
    color: #fff;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

.menu-wrap .logo {
    font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive;
    font-size: 35px;
}


/* Menu Button */
.menu-button {
    position: fixed;
    z-index: 1000;
    margin: 1em;
    padding: 0;
    width: 2.5em;
    height: 2.25em;
    border: none;
    text-indent: 2.5em;
    font-size: 1.5em;
    color: transparent;
}

.menu-button::before {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    bottom: 0.5em;
    left: 0.5em;
    background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
    content: '';
}


@media (max-width: 479px) {
    .menu-button {
        width: 1.5em;
        height: 1.5em;
    }

    .menu-button::before {
        position: absolute;
        top: 0.5em;
        right: 0.5em;
        bottom: 0.5em;
        left: 0.5em;
        background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
        content: '';
    }

    .menu-wrap a {
        padding: 5px !important;
    }
}

@media (max-width: 767px) {
    .menu-button {
        width: 2em;
        height: 2em;
    }

    .menu-button::before {
        position: absolute;
        top: 0.5em;
        right: 0.5em;
        bottom: 0.5em;
        left: 0.5em;
        background: linear-gradient(#373a47 20%, transparent 20%, transparent 40%, #373a47 40%, #373a47 60%, transparent 60%, transparent 80%, #373a47 80%);
        content: '';
    }
}


.menu-button:hover {
    opacity: 0.6;
}

/* Close Button */
.close-button {
    width: 1em;
    height: 1em;
    position: absolute;
    right: 1em;
    top: 1em;
    overflow: hidden;
    text-indent: 1em;
    font-size: 0.75em;
    border: none;
    background: transparent;
    color: transparent;
}

.close-button::before,
.close-button::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    background: #bdc3c7;
}

.close-button::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close-button::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
    position: absolute;
    z-index: 1001;
    width: 300px;
    height: 100%;
    background: #111;
    padding: 2.5em 1.5em 0;
    font-size: 1.15em;

    -webkit-transform: translate3d(-320px, 0, 0);
    -moz-transform: translate3d(-320px, 0, 0);
    -o-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0);

    -webkit-transition: -webkit-transform 0.4s;
    -moz-transition: -webkit-transform 0.4s;
    -o-transition: -webkit-transform 0.4s;
    transition: transform 0.4s;

    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.menu-wrap a:hover, .menu-wrap a:focus {
    color: #F0820C;
}

.menu-wrap .logo {
    color: #F0820C;
}

.menu-button {
    background: #F0820C;
}

.menu, .icon-list {
    height: 100%;
}

.header .intro-text h1 span {
    color: #F0820C;
}

.main-title strong {
    color: #F0820C;
}

.icon-list {
    -webkit-transform: translate3d(0, 100%, 0);
    -moz-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.icon-list a {
    display: block;
    padding: 0.8em;

    -webkit-transform: translate3d(0, 500px, 0);
    -moz-transform: translate3d(0, 500px, 0);
    -o-transform: translate3d(0, 500px, 0);
    transform: translate3d(0, 500px, 0);
}

.icon-list,
.icon-list a {
    -webkit-transition: -webkit-transform 0s 0.4s;
    -moz-transition: -webkit-transform 0s 0.4s;
    -o-transition: -webkit-transform 0s 0.4s;
    transition: transform 0s 0.4s;

    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.icon-list a:nth-child(2) {
    -webkit-transform: translate3d(0, 1000px, 0);
    -moz-transform: translate3d(0, 1000px, 0);
    -o-transform: translate3d(0, 1000px, 0);
    transform: translate3d(0, 1000px, 0);
}

.icon-list a:nth-child(3) {
    -webkit-transform: translate3d(0, 1500px, 0);
    -moz-transform: translate3d(0, 1500px, 0);
    -o-transform: translate3d(0, 1500px, 0);
    transform: translate3d(0, 1500px, 0);
}

.icon-list a:nth-child(4) {
    -webkit-transform: translate3d(0, 2000px, 0);
    -moz-transform: translate3d(0, 2000px, 0);
    -o-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
}

.icon-list a:nth-child(5) {
    -webkit-transform: translate3d(0, 2500px, 0);
    -moz-transform: translate3d(0, 2500px, 0);
    -o-transform: translate3d(0, 2500px, 0);
    transform: translate3d(0, 2500px, 0);
}

.icon-list a:nth-child(6) {
    -webkit-transform: translate3d(0, 3000px, 0);
    -moz-transform: translate3d(0, 3000px, 0);
    -o-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
}

.icon-list a span {
    margin-left: 10px;
    font-weight: 500;
}

/* Shown menu */
.show-menu .menu-wrap {
    position: fixed;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -webkit-transition: -webkit-transform 0.8s;
    -moz-transition: -webkit-transform 0.8s;
    -o-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;

    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list,
.show-menu .icon-list a {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    -webkit-transition: -webkit-transform 0.8s;
    -moz-transition: -webkit-transform 0.8s;
    -o-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;

    -webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
    transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.show-menu .icon-list a {
    -webkit-transition-duration: 0.9s;
    -moz-transition-duration: 0.9s;
    -o-transition-duration: 0.9s;
    transition-duration: 0.9s;
}

/*-- Animation --*/
.carousel .item.active .animated1 {
    -webkit-animation: lightSpeedIn 1s ease-in 800ms both;
    animation: lightSpeedIn 1s ease-in 800ms both;
}

.carousel .item.active .animated2 {
    -webkit-animation: bounceIn 1s ease-in 800ms both;
    animation: bounceIn 1s ease-in 800ms both;
}

.carousel .item.active .animated3 {
    -webkit-animation: flipInX 2s ease-in-out 800ms both;
    animation: flipInX 2s ease-in-out 800ms both;
}

.carousel P.animated2 {
    margin: 0;
}

P.animated2 A {
    white-space: nowrap;
}

#main-slide .slider-content h1 strong {
    color: #F0820C;
}

@media (min-width: 992px) {

    #main-slide .slider-content h1 {
        font-size: 35px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {

    #main-slide .slider-content h1 {
        font-size: 35px;
        margin-bottom: 10px;
        margin-top: 0;
    }

    #main-slide .slider-content p {
        font-size: 20px;
        margin-top: 0;
        line-height: 25px;
    }

    .slider.btn {
        padding: 5px 25px;
        margin-top: 5px;
        font-size: 16px;
    }

    #main-slide .item {
        height: 550px;
    }

}


@media (max-width: 767px) {

    #main-slide .slider-content {
        margin-top: 50px;
    }

    #main-slide .slider-content h1 {
        font-size: 28px;
        line-height: normal;
        margin-bottom: 0;
    }

    #main-slide .slider-content p {
        font-size: 14px;
        margin-top: 5px;
    }

    .slider.btn {
        padding: 0 15px;
        margin-top: 0;
        font-size: 12px;
    }

    #main-slide .carousel-indicators {
        display: none;
    }

    #main-slide .item .slider-content {
    / / display: none;
    }

    #main-slide .item {
        height: 400px;
    }

    .section-title h3 {
        font-size: 21px;
    }

    .elenco P {
        font-size: 12px;
    }

    .opzioni LI {
        display: list-item;
        float: left;
        margin-top: 20px;
    }

}


@media (max-width: 479px) {

    #main-slide .slider-content {
        margin-top: 50px;
    }

    #main-slide .carousel-indicators {
        display: none;
    }

    #main-slide .carousel-control {
        display: none;
    }

    #main-slide .item .slider-content {
    / / display: none;
    }

    #main-slide .item {
        height: 300px;
    }

}


/*------------------------------------------------------ */
/* Start Cart Section                                    */
/*------------------------------------------------------ */

.cart-section {
    width: 100%;
}

.cartview {
    position: relative;
    z-index: 1;
    background-color: white;
    border-top: 0px;
    border-right: 2px solid #F0820C;
    border-bottom: 2px solid #F0820C;
    border-left: 2px solid #F0820C;
    padding: 10px 10px 5px 10px;
    /* margin-bottom: 20px; */
    border-radius: 0 0 8px 8px;
    width: inherit;
}

.cartview .TDpic {
    width: 32px;
}

.cartview .pic {
    width: 32px;
    display: inline-block;
}

.narroarro {
    color: #666666;
    font-size: 20px;
    width: 22px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}

.com {
    width: 100%;
    max-width: 88px;
    margin: auto;
}

.coms {
    margin-top: 30px;
    white-space: nowrap;
}

.cartview A, #agente A {
    color: #666666;
    font-size: 16px;
    opacity: 1;
    line-height: 32px;
    -webkit-filter: grayscale(0%);
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-align: left;
}

.cartview A:hover, #agente A:hover {
    -webkit-filter: grayscale(100%);
    color: red;
    opacity: .5;
}

.cartview h5 {
    color: #666;
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: none;
}

.cartview .cartnumber {
    font-weight: bold;
    color: white;
    background-color: #57DE38;
    border-radius: 50%;
    text-align: center;
    width: 28px;
    height: 28px;
    padding: 3px;
    display: inline-block;
}

.cartview .divProfilePic.miniature {
    position: relative;
}

.cartview .cornice {
    position: absolute;
    left: 0px;
    top: 0px;
    /* background-image profile_pic_mask.png */
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}

.cartview .miniature {
    width: 38px;
    height: 38px;
}

.divScorrevole {
    display: none;
    padding: 10px 0 0 0;
}

.divTohide {
    position: absolute;
    float: right;
    display: inline-block;
}

.incart_green {
    background-color: #57DE38;
}

.incart p.white {
    color: white;
}

.incart p {
    padding-top: 8px;
    text-align: center;
}

.incart2dispo {
    font-size: 13px;
    line-height: 2.5em;
    color: #666;
    display: none;
}

.incart2tools {
    display: none;
}

.incart2tools .toolbox {
    padding-top: 10px;
}

td.incart2dispo-txt {
    text-align: center;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

td.incart2dispo-qta {
    text-align: right;
}

.tools_list {
    list-style: none;
    display: inline;
    width: 100%;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}


.tools_list IMG {
    margin-left: 2px;
    margin-bottom: -4px;
}

.tools_list LI {
    display: inline;
    margin-left: 10px;
    vertical-align: top;
}

.tools_list SPAN {
    width: 100px;
    line-height: 16px;
    display: inline-block;
    text-align: center;
}

.tools_list IMG {
    width: 48px;
    top: -6px;
    position: relative;
}

.toolstitle {
    position: relative;
    top: 18px;
}

.toolstitle SPAN {
    background-color: white;
    color: #F0820C;
    padding: 3px 10px;
    font-weight: 700;
    border-left: solid 1px #F0820C;
    border-right: solid 1px #F0820C;
}

@media (min-width: 768px) and (max-width: 1199px) {

    .cartview .TDpic, .cartview .pic {
        width: 24px;
    }

    .narroarro {
        font-size: 15px;
        width: 10px;
    }

    .truncate {
        width: 30vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .cartview h5 {
        font-size: 15px;
    }

    .cartview A {
        font-size: 15px;
    }

    .cartview .cartnumber {
        width: 24px;
        height: 24px;
        padding: 0;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .cartview .TDpic, .cartview .pic {
        width: 22px;
    }

    .narroarro {
        font-size: 14px;
        width: 10px;
    }

    .truncate {
        width: 37vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .cartview h5 {
        font-size: 14px;
    }

    .cartview A {
        font-size: 14px;
    }

    .cartview .cartnumber {
        width: 22px;
        height: 22px;
        padding: 0;
    }

    #agente A {
        font-size: 14px;
    }
}


@media (max-width: 479px) {

    .cartview .TDpic, .cartview .pic {
        width: 20px;
    }

    .narroarro {
        font-size: 12px;
        width: 10px;
    }

    .truncate {
        width: 28vw;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .cartview h5 {
        font-size: 12px;
    }

    .cartview A {
        font-size: 12px;
    }

    .cartview .cartnumber {
        width: 20px;
        height: 20px;
        padding: 0;
    }

    H3.animated2, H4.animated2 {
        font-size: 16px;
    }

    H4.animated2 {
        font-size: 16px;
    }

    .tools_list SPAN {
        margin-bottom: 14px;
        width: 70px;
    }

    #agente A {
        font-size: 12px;
    }
}

/*-----------------------------------------------*/
/* Start AGENTE section
/*-----------------------------------------------*/

.agent-section {
    padding-top: 20px;
    padding-bottom: 40px;
    background: #fff;
}

.cornice {
    position: absolute;
    left: 0px;
    top: 0px;
    /* background-image profile_pic_mask.png */
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.edit_pic {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 32px;
    height: 32px;
}

/*-----------------------------------------------*/
/* Start Pricing Table
/*-----------------------------------------------*/

.cart-section {
    padding-top: 113px;
    padding-bottom: 0px;
    /*    background: url("../images/parallax/bg-01.80c5e8a1d567.jpg");
        background-attachment: fixed;
        background-size: cover; */
    position: fixed;
    z-index: 99;
}

.services-section {
    padding-top: 80px;
    padding-bottom: 20px;
}

.page-top-spacer {
    padding-top: 114px;
    background: url("../images/parallax/bg-01.80c5e8a1d567.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.barra-alta-spacer {
    padding-top: 52px;
    background: url("../images/parallax/bg-01.80c5e8a1d567.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.feature-section {
    padding-top: 20px;
    padding-bottom: 30px;
    background: url("../images/parallax/bg-01.80c5e8a1d567.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.feature-section .section-title h3 {
    color: #666;
}


.feature, .feature-2, .feature-3 {
    padding-bottom: 0px;
}

.feature-2 {
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid white;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
    background-size: cover;
    background-position: center center;
}

.backlogin {
    background-image: url("../images/back_login.fecd1136d608.png");
}

.backcart {
    background-image: url("../images/back_cart.c4dfbe6c1a73.png");
}

.backagente {
    background-image: url("../images/back_login_agente.a1d2f3a24b28.png");
}

.backcliente {
    background-image: url("../images/back_login_cliente.2e19e7fc9825.png");
}

.feature, .feature-3 {
    text-align: center;
}

.feature h4,
.feature-3 h4 {
    font-size: 15px;
    color: #666;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

.feature-2 h4 {
    font-size: 16px;
    color: #666;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
}

.feature p,
.feature-2 p,
.feature-3 p {
    color: #444;
    font-size: 13px;
    line-height: 20px;
    font-weight: 300;
}

.feature {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #fff;
}

.feature:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.feature B {
    color: #666;
    font-style: normal;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    text-transform: none;
    position: absolute;
    bottom: 0%;
    border-top: 1px solid;
    padding-bottom: 3px;
    margin-left: -50%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    border-top-color: #F0820C;
}

.feature:hover B {
    background-color: #F0820C;
    color: #fff;
}

#led.feature B, #alimentazione.feature B, #batterie.feature B, #audiovideo B, #solar B {
    border-top-color: #fff;
    background-color: rgba(255, 255, 255, 0.75);
}

.feature i,
.feature-3 i {
    width: 100%;
    padding: 30px;
    margin-bottom: 0px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.feature i {
    color: #333;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 65%;
    box-shadow: 0 0 0 30px transparent;
    -webkit-transform: translate3d(2, 2, 2);
    -moz-transform: translate3d(2, 2, 2);
    -o-transform: translate3d(2, 2, 2);
    transform: translate3d(2, 2, 2);
    -webkit-transition: box-shadow .6s ease-in-out;
    -moz-transition: box-shadow .6s ease-in-out;
    -o-transition: box-shadow .6s ease-in-out;
    transition: box-shadow .6s ease-in-out;
}

.no-touch .feature:hover i,
.no-touch .feature:active i,
.no-touch .feature:focus i {

    -webkit-transition: box-shadow .4s ease-in-out;
    -moz-transition: box-shadow .4s ease-in-out;
    -o-transition: box-shadow .4s ease-in-out;
    transition: box-shadow .4s ease-in-out;
}

.feature-3 i {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    color: #F0820C;
    border: 1px solid #F0820C;
}

.feature-3:hover i {
    background: #F0820C;
    color: #fff;
}

.feature-3:hover .border {
    margin: 0 35%;
    border-color: #F0820C;
}

.feature-2 i {
    font-size: 2.5em;
    color: #fff;
    padding: 0px;
    position: relative;
    background: #F0820C;
    border: 1px solid #F0820C;
}

.feature-2:hover i {
    background: transparent;
    color: #F0820C;
}

.feature-2 .media-body {
    margin-left: 25px !important;
    width: 100%;
}

.feature-2 .border {
    margin-top: 0px;
    margin-left: 49.999%;
    margin-right: 49.999%;
}

.feature-2:hover .border {
    border-color: #F0820C;
    margin-left: 0%;
    margin-right: 0%;
}

.feature-2 .border .agente {
    border-color: #302D9C;
}

.feature-2 .border .cliente {
    border-color: #fc7921;
}

#riepilogo_carrello LI {
    width: 100%;
    font-size: 12px;
    font-weight: 400;
}

#riepilogo_carrello LI:nth-child(odd) {
    color: rgba(0, 0, 0, .8);
    background-color: rgba(0, 0, 0, .05);
}

#riepilogo_carrello LI:nth-child(even) {
    color: rgba(0, 0, 0, .6);
}

.cliente {
    border-color: #fc7921;
    background-color: #fc7921;
}

.cliente:hover,
.cliente:focus,
.cliente:active,
.cliente.active {
    border-color: #fff;
    color: #fff;
    background-color: #ee2524;
}

@keyframes mover {
    0% {
        left: 0px;
        margin-right: 10px;
    }
    25% {
        left: 5px;
        margin-right: 5px;
    }
    50% {
        left: 10px;
        margin-right: 0px;
    }
    75% {
        left: 5px;
        margin-right: 5px;
    }
    100% {
        left: 0px;
        margin-right: 10px;
    }
}

.cont_indicator {
    position: relative;
    display: inline-block;
    margin-right: 40px;
    width: 1px;
    height: 1px;
}

.indicator {
    width: 26px;
    height: 20px;
    display: inline-block;
    top: -14px;
    position: absolute;
    -webkit-animation: mover 1s infinite; /* Safari 4+ */
    -moz-animation: mover 1s infinite; /* Fx 5+ */
    -o-animation: mover 1s infinite; /* Opera 12+ */
    animation: mover 1s infinite; /* IE 10+, Fx 29+ */
}

.rimpiazzi A {
    color: red;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
}

.rimpiazzi A:hover {
    color: #F0820C;
}


/* colore feature */

#led.feature i {
    background-image: url("../images/svg/sect_led.5878e1e2b51f.svg");
}

#led.feature:hover B, #alimentazione.feature:hover B, #batterie.feature:hover B, #audiovideo.feature:hover B, #solar.feature:hover B {
    color: #F0820C;
}

#alimentazione.feature i {
    background-image: url("../images/svg/sect_carica.a865c9739c5f.svg");
}

#batterie.feature i {
    background-image: url("../images/svg/sect_batterie.932d5ed402f7.svg");
}

#audiovideo.feature i {
    background-image: url("../images/svg/sect_audiovideo.416a198a108f.svg");
}

#solar.feature i {
    background-image: url("../images/svg/sect_solar.59f4f11ee287.svg");
}

.hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border: 0;
    border-top: 2px solid #F0820C;
}

.hr.fine {
    background-color: #F0820C;
    border-top: 1px solid #F0820C;
}

.grey {
    background-color: #cccccc;
    border-top: 1px solid #cccccc;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 30px;
}

.hr.trasp {
    margin-bottom: 0em;
    background-color: rgba(0, 0, 0, 0);
    border-top: 1px solid rgba(0, 0, 0, 0);
}

.no-touch .feature:hover i,
.no-touch .feature:active i,
.no-touch .feature:focus i {

    box-shadow: 0 0 0 0 #F0820C;
}

/* fine colore feature */


/*------------------------------------------*/
/* Start Portfolio Section
/*------------------------------------------*/

.portfolio-section-1 {
    padding-top: 190px;
    padding-bottom: 60px;
    background: url("../images/parallax/bg-01.80c5e8a1d567.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.portfolio-section-2 {
    padding-top: 20px;
    padding-bottom: 30px;
    background: #fff;
    background: url("../images/parallax/bg-01.80c5e8a1d567.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.portfolio-section-3 {
    padding-top: 80px;
    padding-bottom: 120px;
    background: #111;
}

#portfolio-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: block;
    font-size: 0px;
    line-height: 0px;
}

.portfolio-section-2 #portfolio-list li {
    padding: 2px;
}

#portfolio-list li {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 25%;
    margin: 0px;
    padding: 0px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

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

    #portfolio-list li {
        width: 49.9%;
    }
}

@media only screen
and (max-width: 767px)
and (min-width: 551px) {

    #portfolio-list li {
        width: 49.9%;
    }
}

@media (min-width: 768px) {
    #portfolio-list li {
        width: 25%;
    }
}

@media only screen and (min-width: 601px) and (max-width: 800px) {
    #portfolio-list li {
        width: 50%;
    }
}


@media only screen and (min-width: 801px) and (max-width: 991px) {
    #portfolio-list li {
        width: 50%;
    }
}

.portfolio-item A {
    margin: 0px;
    padding: 0px;
}

.portfolio-item {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: left;
    cursor: default;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.portfolio-item .novita {
    padding: 0px;
    margin: 0px;
}

.portfolio-item .settore {
    background-color: #bbb;
    padding: 0px;
    margin: 0px;
}

.portfolio-item img {
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -o-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
}

.portfolio-item:hover img {
    -webkit-transform: scale(1, 5);
    -moz-transform: scale(1.5);
    -o-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);

}

.portfolio-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.novita .portfolio-caption {
    opacity: 0;
    filter: Alpha(Opacity=0);
}

.settore .portfolio-caption {
    opacity: 1;
    filter: Alpha(Opacity=1);
}

.portfolio-item:hover .portfolio-caption {
    opacity: 1;
    filter: Alpha(Opacity=100);
    background-color: rgba(254, 209, 54, 0.8);
}

.portfolio-caption h1 {
    display: inline-table;
    text-transform: none;
    color: #fff;
    font-weight: 700;
    text-align: left;
    position: relative;
    font-size: 64px;
    padding: 10px;
/ / margin: 20 px 0 0 0;
    position: relative;
    top: -25px;
    font-family: 'Oswald', sans-serif;
}

.portfolio-caption h4 {
    display: inline-table;
    text-transform: none;
    color: #333;
    width: 100%;
    font-weight: 400;
    text-align: center;
    position: relative;
    padding: 10px;
/ / margin: 20 px 0 0 0;
    position: relative;
    font-family: 'Oswald', sans-serif;
}

.novita .portfolio-caption h4 {
    font-size: 18px;
    top: 35%;
}

.settore .portfolio-caption h4 {
    font-size: 24px;
    top: -10px;
}

.portfolio-caption a i {
    width: 60px;
    height: 60px;
    padding: 20px;
    font-size: 25px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    background: #fff;
    position: absolute;
    top: 60%;
/ / left: 40 %;
    color: #F0820C;
}

.portfolio-caption a.link-1 i {
    left: 30%;
}

.portfolio-caption a.link-2 i {
    left: 50%;
}


/*---------------------------------------------------------*/
/* Start About Us Section                                  */
/*---------------------------------------------------------*/

.about-us-section-1 {
    padding-top: 20px;
    padding-bottom: 30px;
}

.about-us-section-2 {
    padding-top: 20px;
    padding-bottom: 30px;
    background: url("../images/sfondi/bg-about-us.0191848507b6.jpg");
    background-attachment: none;
    background-repeat: repeat-x;
    background-size: contain;
}

.welcome-section {
    padding-bottom: 20px;
    cursor: pointer;
}

.welcome-section img {
    width: 100%;
    border: 2px solid white;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -o-border-radius: 16px;
    border-radius: 16px;
}

.welcome-section:hover img {
    border: 2px solid #ee2524;
}

.border {
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    margin: 0 45%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.welcome-section h4 {
    padding-top: 20px;
    color: #777;
    font-family: 'Oswald', sans-serif;
}

.welcome-section:hover h4 {
    color: #ee2524;
}

.welcome-section p {
    padding-top: 20px;
    color: #999;
}

.welcome-section:hover .border {
    margin: 0 40%;
    border-color: #ee2524;
}

.about-us-section-2 .carousel {
    margin-top: 8px;
}

.about-us-section-2 .carousel-indicators li, .project-image .carousel-indicators li {
    border: 2px solid #F0820C !important;
}

.about-us-section-2 .carousel-indicators .active, .project-image .carousel-indicators .active {
    background-color: #F0820C;
}

.project-image .carousel img {
    width: 100%;
    height: auto;
}

.about-text p {
    color: #999;
    text-align: justify;
}

.about-text ul {
    margin-top: 30px;
    font-size: 13px;
}

.about-text li {
    margin-bottom: 10px;
    color: #999;
}

.about-text li i {
    padding-right: 10px;
    color: #ee2524;
}

.about-slide img {
    width: 100%;
}


/*----------------------------------------------------------*/
/* Start Fun Facts Counter Section
/*----------------------------------------------------------*/

.fun-facts {
    background: url("../images/parallax/bg-02.be705b2b453a.jpg");
    background-attachment: fixed;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 80px;
}

.counter-item {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
}

.counter-item h5 {
    text-align: center;
    margin-bottom: 0px;
    color: #fff;
}

.counter-item i {
    font-size: 40px;
    color: #F0820C;
}


.timer {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 80px;
    font-family: 'Oswald', sans-serif;
    color: #F0820C;
}


/*-------------------------------------------------*/
/* Start Latest News Section                       */
/*-------------------------------------------------*/


.latest-news-section {
    padding-top: 80px;
    padding-bottom: 60px;
}

.latest-post {
    margin-bottom: 30px;
    border: 1px solid rgba(254, 209, 54, 0.8);
    border-radius: 8px;
    background-color: #FFFFFF;
}

.latest-post IMG {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.latest-post h4 {
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    color: #F0820C;
}

.latest-post h4 A {
    color: #F0820C;
}

.latest-post .post-details .date {
    position: absolute;
    top: 0;
    left: 10%;
    color: #fff;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    opacity: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    background: rgba(254, 209, 54, 0.8);
}

.latest-post .post-details .date strong {
    font-size: 16px;
}

.latest-post .post-details li {
    display: inline;
    font-size: 13px;
    color: #999;
    padding-left: 10px;
    padding-right: 10px;
}

.latest-post .post-details li i {
    padding-right: 5px;
    color: #F0820C;
}

.latest-post p {
    color: #999;
    font-weight: 300;
    padding-left: 10px;
    padding-right: 10px;
}

.latest-post .btn-primary {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    font-weight: 300;
}

.latest-post .btn-primary:hover {
    background: none;
    color: #666;
    border: 1px solid #888;
    box-shadow: none;
}

.latest-post:hover .date {
    opacity: 1;
    -webkit-animation: bounceIn;
    -moz-animation: bounceIn;
    -o-animation: bounceIn;
    animation: bounceIn;
    -webkit-animation-duration: 0.7s;
    -moz-animation-duration: 0.7s;
    -o-animation-duration: 0.7s;
    animation-duration: 0.7s;
}


/*************** Testimonials ***************/

.testimonial-section {
    background: url("../images/parallax/testimonial-bg.a5c0ea99933f.jpg") no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    padding-bottom: 120px;
    color: #fff;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-content img {
    width: 150px;
    height: auto;
    margin-bottom: 40px;
    border: 3px solid #F0820C;
}

.testimonials .testimonial-content p {
    font-size: 20px;
    line-height: 30px;
/ / font-style: italic;
    font-weight: 400;
    margin-bottom: 40px;
    color: #fff;
}

.testimonials .testimonial-content {
    position: relative;
}

.testimonials .testimonial-author {
    margin-bottom: 40px;
}

.testimonials .testimonial-author .author {
    font-family: "Kaushan Script", "Helvetica Neue", Helvetica, Arial, cursive;
    font-size: 18px;
    padding-bottom: 5px;
    color: #F0820C;
}

.testimonials .testimonial-author .designation {
    color: #d3d3d3;
}

.testimonials-carousel .owl-controls.clickable .owl-buttons div {
    color: #F0820C;
}

.touch-slider .owl-controls.clickable .owl-buttons div:hover {
/ / background-color: #00afd1;
}

.touch-carousel .owl-controls.clickable .owl-buttons div:hover {
/ / background-color: #00afd1;
}

.owl-controls.clickable .owl-buttons div {
    background: none;
    font-size: 40px;
}

.owl-controls.clickable .owl-buttons .owl-next {
    position: absolute;
    right: -60px;
    top: 40%;
    z-index: 20;
}

.owl-controls.clickable .owl-buttons .owl-prev {
    position: absolute;
    left: -60px;
    top: 40%;
    z-index: 20;
}

.owl-theme .owl-controls .owl-page.active {
    background-color: #F0820C;
    padding: 2px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.owl-theme .owl-controls .owl-page.active span {
    background: #fff;
}

.owl-theme .owl-controls .owl-buttons div:hover {
    background: #F0820C;
    color: #fff;
}

.owl-theme .owl-controls .owl-buttons div {
    background: #fff;
    color: #F0820C;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


/*--------------------------------------------------*/
/* Start Clients Section                            */
/*--------------------------------------------------*/


#partner {
    padding-top: 80px;
    padding-bottom: 50px;
    text-align: center !important;
}

.clients .owl-buttons {
    padding-top: 50px;
}

.owl-theme .owl-controls .owl-buttons div {
    opacity: 1;
    filter: Alpha(Opacity=100);
}

.form-control {
    padding: 3px 3px;
    color: #333;
    height: 28px;
    font-weight: bold;
}

/*-------------------------------------------------*/
/* Start Contact Section                           */
/*-------------------------------------------------*/

.contact {
    background: url("../images/parallax/contact-bg.8475a91508c2.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 100px;
}

.contact .btn-primary {
    padding: 20px;
    font-size: 16px;
}

.contact .btn-primary:hover {
    background: transparent;
}

.contact .section-title h3 {
    color: #fff;
}

.feature-section .section-title .hr {
    width: 200px;
}

HR.longest {
    width: 100%;
    background-color: #F0820C;
    border-top: 1px solid #F0820C;
}

.contact .section-heading {
    color: #fff;
}

.contact .form-group {
    margin-bottom: 25px;
}

.contact .form-group input,
.contact .form-group textarea {
    padding: 20px;
}

.contact .form-group input.form-control {
    height: auto;
}

.contact .form-group textarea.form-control {
    height: 236px;
}

.contact .form-control:focus {
    border-color: #F0820C;
    box-shadow: none;
}

.contact::-webkit-input-placeholder {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact:-moz-placeholder {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact::-moz-placeholder {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact:-ms-input-placeholder {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #bbb;
}

.contact .text-danger {
    color: #e74c3c;
}

.contact button {
    font-weight: 400;
    margin-top: 30px;
}


.footer-contact-info {
    color: #fff;
    padding: 20px 30px;
    margin-top: 80px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: rgba(254, 209, 54, 0.8);
}

.footer-contact-info ul {
    padding-bottom: 10px;
}

.footer-contact-info h4 {
    padding-bottom: 10px;
}

.footer-contact-info li strong {
    font-weight: 600;
}

/*-------------------------------------------------------*/
/* Start Footer Section                                  */
/*-------------------------------------------------------*/

footer.style-1 {
    /*    margin-top: 100px;*/
    padding: 25px 0;
    background: #666;
    border-top: 2px solid #F0820C;
}

footer.style-1 .copyright {
    text-transform: uppercase;
    text-transform: none;
    color: #FFF;
}

footer.style-1 .footer-social {
    padding: 20px 0px 20px 0px;
}

footer.style-1 .footer-social li {
    display: inline;
    padding: 0 10px;
}

footer.style-1 .footer-social li a {
    padding: 10px 9px 8px 9px;
    color: #fff;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    background: #F0820C;
}

footer.style-1 .footer-social li i {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

footer.style-1 .footer-social li:hover a {
    background: #fff;
    color: #ee2524;
}

footer.style-1 .footer-link {
    padding: 20px 0px 20px 0px;
}

footer.style-1 .footer-link li {
    display: inline;
    padding-left: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

footer.style-1 h4, .elenco H4 {
    font-size: 16px;
    font-family: 'Oswald', sans-serif;
    text-transform: none;
    color: white;
}

.elenco h4 {
    padding-top: 0px;
    color: #666;
}

.elenco P {
    color: #666;
}

.elenco .row {
    margin: 10px;
}

.elenco .prodotto.carrello, .conferma .economics {
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 5px;
    border-radius: 6px;
}

/* omaggio / salvadanaio */
.elenco .prodotto.carrello.omaggio {
    /* background-image: url("../images/back_omaggio.41ed342edc9f.png");
    background-repeat: repeat;
    background-size: contain; */
    background-color: #E3FFE1;
}

.conferma .economics TD {
    padding: 5px 10px;
}

.elenco .prodotto H4 a {
    color: #666666;
}

.elenco .prodotto IMG.thumbnail, .table-storico IMG.thumbnail {
    border: 1px solid #CCCCCC;
    padding: 0px;
    margin-bottom: 0px;
}

.elenco .prodotto IMG.thumbnail:hover, .table-storico IMG.thumbnail:hover {
    border: 1px solid #F0820C;
}

.table-storico IMG.thumbnail {
    max-width: 60px;
}

.table-storico A {
    color: #F0820C;
}

.divOmaggio {
    position: absolute;
    top: 0;
    left: 0;
}

TABLE TR.table-header {
    font-size: 12px;
    font-weight: bold;
    color: #666;
    text-align: center;
    white-space: nowrap;
    border-bottom: 2px ridge #E6E6E6;
}

TABLE TR.table-footer {
    font-size: 12px;
    font-weight: bold;
    color: #666;
    text-align: center;
    white-space: nowrap;
    border-top: 2px ridge #E6E6E6;
}

.elenco .prodotto TABLE TD {
    padding: 1px 3px;
/ / white-space: nowrap;
}

.elenco .prodotto TABLE TD.TDvoid {
    width: 21px;
}

.elenco .prodotto:hover {
/ / background-color: #F0820C;
/ / cursor: pointer;
}

.elenco .prodotto:hover .hr.fine {
/ / border-top: 1 px solid #ffffff;
}

.table-carrello {
    font-size: 16px;
}

.table-carrello A {
    color: #666666;
    font-weight: bold;
}

.table-carrello A:hover {
    color: #F0820C;
}

.opzioni {
    margin-top: 20px;
    margin-bottom: 80px;
}

.opzioni UL {
    padding-top: 20px;
    padding-bottom: 20px;
}

.opzioni LI {
    display: inline;
    padding-right: 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.opzioni A, .opzioni button, A.bottone {
    background-color: #666;
    color: white;
    border: 1px solid #666;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 3px;
    padding-bottom: 3px;
    margin-right: 15px;
    margin-top: 10px;
    white-space: nowrap;
    font-family: 'Oswald', sans-serif;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.opzionivert A {
    display: block;
    line-height: 32px;
    background-color: #666;
    color: white;
    border: 1px solid #666;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 3px;
    padding-bottom: 3px;
    width: 200px;
    margin: 5px 10px 5px 10px;
    white-space: nowrap;
    font-family: 'Oswald', sans-serif;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.opzioni A:hover, .opzioni button:hover, .opzionivert A:hover, A.bottone:hover {
    background-color: #F0820C;
    color: white;
    border: 1px solid #F0820C;
}

.btn:focus,
.btn:active,
.btn.active,
.btn:active:focus {
    outline: 0;
}

footer.style-2 {
    margin-top: 0px;
    padding: 25px 0;
    background: rgba(10, 10, 10, 1);
    color: white;
}

footer.style-2 P {
    text-align: center;
    color: white;
}

/**** Start Modal Section ****/

.section-modal .modal-content {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 7% 0 !important;
    min-height: 100%;
    border: 0 !important;
    border-radius: 0;
    background-clip: border-box;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
    color: #888;
    font-weight: 300;
}

.section-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background-color: transparent;
    cursor: pointer;
    z-index: 1051;
}

.section-modal .close-modal:hover {
    opacity: .3;
}

.section-modal .close-modal .lr {
    z-index: 1052;
    width: 3px;
    height: 50px;
    margin-left: 35px;
    background-color: #ee2524;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.section-modal .close-modal .lr .rl {
    z-index: 1052;
    width: 3px;
    height: 50px;
    background-color: #ee2524;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.section-modal .section-title p {
    padding-bottom: 30px;
}

.section-modal .container {
    background-color: transparent;
}

.section-modal img {
    margin-bottom: 15px;
}

.section-modal P.idbold {
    font-weight: bold;
    color: #ee2524;
}

/*---------------------------------------------------------------*/
/* Start Call To Action
/*---------------------------------------------------------------*/


.call-to-action {
    background: url("../images/parallax/call-to.02bc4f5dec52.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 90%;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.call-to-action h1 {
    font-weight: 300;
    line-height: 50px;
    padding-bottom: 40px;
    font-size: 30px;
}

.call-to-action h1 strong {
    font-weight: 600;
    color: #F0820C;
}

.call-to-action .btn-primary {
    padding: 20px;
    font-size: 16px;
}

.call-to-action .btn-primary:hover {
    background: transparent;
}


/*-----------------------------------------*/
/* Start Team Section
/*-----------------------------------------*/


.team-member-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

#team-section .our-team {
    padding-top: 20px;
}

#team-section .nav-tabs.nav-justified {
    background: #F0820C;
}

#team-section .team-member img {
    width: 99%;
    height: auto;
    text-align: center;
}

.team-member .team-details {
    position: absolute;
    top: 0;
    width: 99%;
    height: 100%;
    color: #fff;
    padding: 0 2px;
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: rgba(254, 209, 54, 0.8);
}

.team-member:hover .team-details {
    opacity: 1;
    -webkit-animation: bounceIn;
    animation: bounceIn;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
}

.team-member .team-details h4 {
    padding-top: 30%;
    font-size: 22px;
    font-family: 'Oswald', sans-serif;
}

.team-member .team-details li {
    display: inline-block;
    padding-top: 20px;
}

.team-member .team-details li a {
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #fff;
    color: #666;
    font-size: 16px;
}

.team-member .team-details li:hover a {
    background: transparent;
    border: 1px solid #ddd;
    color: #fff;
}

.team-details li a {
    background: #F0820C;
}

.owl-controls {
    margin-top: 35px !important;
}

.custom-tab .nav-tabs.nav-justified {
    background: #F0820C;
}

/*-----------------------------------------*/
/* Start Progress Bar Section
/*-----------------------------------------*/


/* progress bar */

.skill {
    padding-bottom: 5px;
}

.skill p {
    margin-bottom: 7px;

}

.progress {
    background: #fff;
    overflow: visible;
    height: 30px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-bar {
    float: left;
    height: 100%;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
    position: relative;
    background: #F0820C;
}

.progress-bar-span {
    opacity: 1;
    position: absolute;
    top: -5px;
    background: #ACB2B8;
    padding: 10px 15px;
    color: #FFF;
    border-radius: 0px;
    right: 0px;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.skill:hover .progress-bar-span {
    opacity: 1;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}


/*-----------------------------------------------*/
/* Start Pricing Table
/*-----------------------------------------------*/


.pricing-section {
    padding: 80px 0;
    background: url("../images/parallax/pricing-bg.35e8e745c355.jpg");
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 50%;
}

.pricing-section .section-title h3 {
    color: #fff;
}

.pricing-table {
    text-align: center;
    background: #fff;
}

.pricing-table a {
    color: #666;
}

.pricing-table a:hover {
    color: #ee2524;
}

.pricing-tables .pricing-table.highlight-plan .plan-name {
    background: #F0820C;
}

.pricing-tables .pricing-table.highlight-plan .plan-signup {
    background: #F0820C;
}

.plan-name {
    padding: 15px 0;
    background: #F0820C;
    color: #fff;
}

.plan-name h3 {
    font-weight: 300;
    color: #fff;
}

.plan-price {
    padding: 25px 0;
}

.plan-price .price-value {
    font-size: 38px;
    line-height: 40px;
    font-weight: 600;
    color: #444;
}

.plan-price .price-value span {
    font-size: 18px;
    font-weight: 300;
    line-height: 18px;
}

.plan-price .interval {
    line-height: 14px;
}

.plan-list li {
    padding: 13px;
    font-size: 14px;
/ / border-bottom: 1 px solid #eee;
    font-family: 'Oswald', sans-serif;
}

.plan-list li:first-child {
    border-top: 1px solid #eee;
}

.plan-signup {
    padding: 25px 0;
    background: #F0820C;
}

.plan-signup a {
    text-transform: uppercase;
    color: #fff;
}

.pricing .owl-buttons {
    padding-top: 30px;
}

.pricing .owl-buttons div {
    color: #fff !important;
}


iframe {
    border: 0;
}

/******* Style Loader *******/

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999999;
}

.spinner {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -40px;
    -webkit-animation: rotatee 2.0s infinite linear;
    animation: rotatee 2.0s infinite linear;
}

.dot1, .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -o-border-radius: 100%;
    -webkit-animation: bouncee 2.0s infinite ease-in-out;
    animation: bouncee 2.0s infinite ease-in-out;
    background-color: #F0820C;
}

.dot2 {
    top: auto;
    bottom: 0px;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes rotatee {
    100% {
        -webkit-transform: rotate(360deg)
    }
}

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

@-webkit-keyframes bouncee {
    0%, 100% {
        -webkit-transform: scale(0.0)
    }
    50% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes bouncee {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

.nopadding {
    padding: 0 !important;
    margin: 0 !important;
}

.padding2 {
    padding: 2px 0px 2px 2px;
    margin: 0 !important;
}

.margin30 {
    margin: 30px 0px;
}

.forgotten {
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px solid white;
}

.forgotten a {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #fc7921;
}

.forgotten a:hover {
    color: #ee2524;
}

.prod_commands {
    position: relative;
    right: 0px;
    bottom: 0px;
    padding-bottom: 20px;
    padding-right: 20px;
}

.prod_commands a {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    display: block;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border: 1px solid #F0820C;
    background-color: #F0820C;
    padding: 10px;
    color: white;
}

.prod_commands a:hover {
    color: #ee2524;
}

.prod_commands i {
    font-size: 20px;
}

.prod_commands li {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin: 0px;
    margin-left: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.profileimg {
    height: 100%;
    display: inherit;
}


@media (min-width: 768px) {
    .nav > li.hide768 {
        display: none;
    }
}


@media (min-width: 768px) and (max-width: 1199px) {

    .feature-section {
        padding-top: 20px;
    }

}

@media (min-width: 992px) and (max-width: 1199px) {

    .cartview {
        top: -14px;
    }
}


@media (min-width: 768px) and (max-width: 991px) {

    footer.style-1 h4 {
        font-size: 14px;
    }

    .hider A {
        font-size: 12px;
    }

    .cartview {
        top: -14px;
    }

    .show767 {
        display: none;
    }
}


@media (max-width: 767px) {

    .novita .owl-buttons {
        display: none;
    }

    footer.style-1 h4 {
        font-size: 12px;
    }

    .hider A {
        font-size: 10px;
    }

    .hide767 {
        display: none;
    }

    .show767 {
        display: block;
    }

    .nav > li.hide767 {
        display: none;
    }

    .feature-section {
        padding-top: 0px;
    }

    .about-us-section-2, .portfolio-section-1, .portfolio-section-2 {
        padding-top: 0px;
        padding-bottom: 10px;
    }

    .cartview {
        top: -44px;
    }

    .tools_list IMG {
        width: 44px;
    }

    .agent-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .coms {
        margin-top: 0px;
    }

}

.hometop {
    /*   background back_slider.jpg */
    background-repeat: no-repeat;
    background-position: 0 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.show479 {
    display: none;
}

@media (max-width: 479px) {

    .feature B {
        font-size: 14px;
    }

    .feature i {
        font-size: 0em;
    }

    .novita .owl-buttons {
        display: none;
    }

    .hider {
        display: none;
    }

    .padding2 {
        padding: 2px;
    }

    .hometop, .hide479 {
        display: none;
    }

    .tools_list IMG {
        margin-left: 2px;
    }

    .show479 {
        display: inherit;
        white-space: nowrap;
    }

    .agent-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .plan-name {
        font-size: 12px;
    }

    .plan-list li {
        font-size: 10px;
    }

    .table-carrello {
        font-size: 14px;
    }

    .table-storico {
        font-size: 11px;
    }

    .table-storico IMG.icona {
        width: 28px;
    }

    .table-storico IMG.thumbnail {
        max-width: 28px;
    }

    .com {
        max-width: 64px;
    }

}

.conferma P {
    font-size: 14px;
}

/** storico ordini **/
.table-storico {
    width: 100%;
    background-color: #fff;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    padding: 5px;
    border-radius: 6px;
    margin-top: 20px;
}

.table-storico IMG.icona {
    width: 32px;
    margin-right: 8px;
}

.table-storico TD {
    padding: 5px 2px;
}

.table-legenda {
    font-size: 11px;
}

.last-order {
    background: #FFFFCE;
}

.evenrow {
    background: #FFFFFF;
}

.oddrow {
    background: #FAFAFA;
}

.inevaso {
    background: #FFF5E8;
}

TR.last-order:hover, TR.evenrow:hover, TR.oddrow:hover, TR.inevaso:hover {
    background: #D3DFE1;
    cursor: pointer;
}

/***** PAGINAZIONE *****/

.pagination > .disabled > span, .pagination > .disabled:hover > span {
    color: #CCCCCC;
    background: none;
}

.pagination > .active > span, .pagination > .active:hover > span {
    background-color: #F0820C;
    color: white;
    font-weight: bold;
    border-color: #F0820C;
}

.pagination > li > a {
    color: #333;
}

.pagination > li > a:hover {
    color: #F0820C;
    border-color: #F0820C;
}

.content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
}

/** SVG PULSANTE **/

A.omaggilink {
    color: #FF0000;
}

.omaggi {
    height: 30px;
    position: relative;
    width: 30px;
    display: inline-block;
    line-height: 22px;
}

.omaggi img {
    border-radius: 9999px;
    height: 30px;
    position: relative;
    width: 30px;
    z-index: 2;
}

@keyframes pulse {
    to {
        opacity: 0;
        transform: scale(2);
    }
}

.omaggi::before,
.omaggi::after {
    animation: pulse 2s linear infinite;
    border: #ff0000 solid 2px;
    border-radius: 9999px;
    box-sizing: border-box;
    content: ' ';
    height: 140%;
    left: -20%;
    opacity: .6;
    position: absolute;
    top: -20%;
    transform: scale(1);
    width: 140%;
    z-index: 1;
}

.omaggi::after {
    animation-delay: 1s;
}

.feature B.smaller, .smaller {
    font-size: smaller;
}
