/****************** GENERAL ******************/
/*********************************************/

html {
    height: auto;
    padding: 0;
    margin: 0;
}

body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Work Sans', sans-serif;
    box-sizing: border-box;
    overflow-x: hidden;
}

.clearfix {
    display: block;
    clear: both;
    width: 100%;
    height: 1px;
}

* {
    outline: none;
}

.row.big-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

h2 {
    font-size: 42px;
}

h5 {
    font-size: 18px;
    text-transform: uppercase;
    color: #EC6707;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus,
.form-control:focus {   
    box-shadow: 0 0 0 0.2rem rgba(236, 103, 7, .25);
}

a.btn:focus {   
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, .25);
}

@media (max-width: 1480px) {
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 1200px) {
    h5 {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 24px;
    }
    
    h5 {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    h2 {
        font-size: 24px;
    }
}

.mt-6, .my-6 {
    margin-top: 5rem !important;
}

.mt-34, .my-34 {
    margin-top: 34px !important;
}

hr {
    display: block;
    position: relative;
    width: 100%;
    height: 1px;
    border: none;
    border-radius: 0;
    background: #ec6707;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/****************** CONTENT ******************/
/*********************************************/

.container {
    display: block;
    position: relative;
    margin: 0 auto;
    box-sizing: border-box;
}

.container.bg-gray {
    background-color: #f2f2f2;
}

@media (min-width: 1479px) {
    .container {
        max-width: 1300px;
    }
}

/************************************************************************/
/******************************** HEADER ********************************/
/************************************************************************/

.header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header.orange {
    background: #ec6707;
}

.header .floating-selector, .header .floating-selector:link, .header .floating-selector:visited {
    display: block;
    position: absolute;
    width: 75px;
    height: 60px;
    background: #ec6707;
    color: #ffffff;
    font-size: 17px;
    line-height: 60px;
    border: 0;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .floating-selector:hover {
    background: #000000 !important;
}

.header.orange .floating-selector, .header.orange .floating-selector:link, .header.orange .floating-selector:visited {
    background: #ffffff;
    color: #ec6707;
}

.header.orange .floating-selector:hover {
    background: #000000 !important;
    color: #ffffff
}

.header .website-selector {
    top: 40px;
    left: 0;
}

.header .language-selector {
    top: 40px;
    right: 0;
}

.header .language-selector-sub, .header .language-selector-sub:link, .header .language-selector-sub:visited {
    display: none;
    z-index: 100;
}

.header .currency-selector {
    top: 130px;
    right: 0;
}

.header .currency-selector-sub, .header .currency-selector-sub:link, .header .currency-selector-sub:visited {
    display: none;
    z-index: 100;
}

.header .container {
    margin: 0 auto;
}

.header .logo {
    display: block;
    float: left;
    margin-top: 40px;
    width: 220px;
    height: 100px;
    background-image: url(../img/wtc-logo-white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header.black .logo {
    background-image: url(../img/wtc-logo-black.png);
}

.header .logo.wts {
    display: block;
    float: left;
    margin-top: 40px;
    width: 220px;
    height: 165px;
    background-image: url(../img/wts-logo-white.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.header.black .logo.wts {
    background-image: url(../img/wts-logo-black.png);
}

.header .controls {
    display: block;
    float: right;
    width: calc(100% - 220px);
    margin-top: 40px;
}

.header .controls .login, .header .controls .login:link, .header .controls .login:visited {
    display: block;
    float: right;
    width: 160px;
    height: 60px;
    padding: 0 10px;
    margin: 0;
    border: 2px solid #ffffff;
    border-radius: 0;
    font-size: 20px;
    line-height: 56px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .controls .login:hover {
    background: #000000;
    border-color: #000000;
}

.header.black .controls .login, .header.black .controls .login:link, .header.black .controls .login:visited {
    border: 2px solid #ec6707;
    color: #ec6707;
}

.header.black .controls .login:hover {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.header .controls .menu-container {
    display: block;
    float: right;
    margin: 0 40px 0 0;
}

.header .controls .menu-container .menu {
    display: block;
    width: auto;
    height: 60px;
    padding: 0;
    list-style-type: none;
}

.header .controls .menu-container .menu li {
    display: block;
    float: left;
    position: relative;
    margin: 0;
    padding: 0;
}

.header .controls .menu-container .menu li a, .header .controls .menu-container .menu li a:link, .header .controls .menu-container .menu li a:visited {
    display: inline-block;
    width: auto;
    height: 60px;
    padding: 0 20px;
    margin: 0;
    background: #ec6707;
    border: 0;
    border-radius: 0;
    font-size: 20px;
    line-height: 60px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header.orange .controls .menu-container .menu li a, .header.orange .controls .menu-container .menu li a:link, .header.orange .controls .menu-container .menu li a:visited {
    background: #ffffff;
    color: #ec6707;
}

.header .controls .menu-container .menu li a:hover {
    background: #000000;
}

.header.orange .controls .menu-container .menu li a:hover {
    background: #000000;
    color: #ffffff;
}

.header .controls .menu-container .menu li a.active {
    font-weight: 600;
}

.header .controls .menu-container .menu li ul {
    display: none;
    position: absolute;
    width: 100%;
    min-width: 260px;
    padding: 5px 0 0 0;
    margin: 0;
    top: 100%;
    left: 0;
    list-style-type: none;
}

.header .controls .menu-container .menu li ul li {
    display: block;
    width: 100%;
    min-width: 260px;
}

.header .controls .menu-container .menu li ul li a, .header .controls .menu-container .menu li ul li a:link, .header .controls .menu-container .menu li ul li a:visited {
    display: block;
    width: 100%;
    min-width: 260px;
    text-align: left;
}

.header .controls .menu-container .menu li:hover > ul {
    display: block;
}

.header .controls .menu-container .submenu {
    display: block;
    width: auto;
    height: 60px;
    padding: 0;
    margin-top: 10px;
    list-style-type: none;
}

.header .controls .menu-container .submenu li {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
}

.header .controls .menu-container .submenu li a, .header .controls .menu-container .submenu li a:link, .header .controls .menu-container .submenu li a:visited {
    display: inline-block;
    width: auto;
    height: 60px;
    padding: 0 20px;
    margin: 0;
    border: 0;
    border-radius: 0;
    font-size: 20px;
    line-height: 60px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .controls .menu-container .submenu li a.active {
    font-weight: 600;
}

.header .controls .menu-container .submenu li a.checkout {
    margin-left: 30px;
    background: url(../img/carrello.png) no-repeat 80% 50% / 36px;
    padding-right: 50px;
}

.header .controls .menu-container .submenu li a.search {
    margin-left: 50px;
    background: url(../img/cerca.png) no-repeat 50% 50% / 30px;
    padding: 0 30px;
}

.header .controls .menu-container .submenu li a:hover {
    background-color:  #000000 !important;
}

.header.black .controls .menu-container .submenu li a, .header.black .controls .menu-container .submenu li a:link, .header.black .controls .menu-container .submenu li a:visited {
    color: #000000;
}

.header.black .controls .menu-container .submenu li a.checkout {
    background: url(../img/carrello-black.png) no-repeat 80% 50% / 36px;
}

.header.black .controls .menu-container .submenu li a.search {
    background: url(../img/cerca-black.png) no-repeat 50% 50% / 30px;
}

.header.black .controls .menu-container .submenu li a.checkout:hover {
    background-image: url(../img/carrello.png);
}

.header.black .controls .menu-container .submenu li a.search:hover {
    background-image: url(../img/cerca.png);
}

.header.black .controls .menu-container .submenu li a:hover {
    color: #ffffff;
}

.header .hamburger-menu {
    display: none;
    float: right;
    margin-top: 145px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .hamburger-menu a {
    display: block;
    width: 65px;
    height: 35px;
    background: url(../img/menu-open.png) no-repeat 50% 50% / 65px;
}

.header.black .hamburger-menu a {
    background-image: url(../img/menu-open-black.png);
}

.mobile-menu {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    z-index: 10000;
}

.mobile-menu .close-menu {
    display: block;
    position: absolute;
    top: 130px;
    right: 15px;
    z-index: 10010;
}

@media (min-width: 577px) {
    .mobile-menu .close-menu {
        right: 9vw;
    }
}

.mobile-menu .close-menu a {
    display: block;
    width: 65px;
    height: 65px;
    background: url(../img/menu-close.png) no-repeat 50% 50% / 65px;
}

.mobile-menu .menu-top {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
    height: 50%;
    margin: 0;
    padding: 0;
    background: rgba(236, 103, 7, 0.9);
}

.mobile-menu .menu-top ul {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    list-style-type: none;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    z-index: 10005;
}

.mobile-menu .menu-top ul li {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    padding: 2px 0;
    text-align: center;
}

.mobile-menu .menu-top ul li a, .mobile-menu .menu-top ul li a:link, .mobile-menu .menu-top ul li a:visited {
    display: block;
    width: 90%;
    max-width: 370px;
    margin: 0 auto;
    padding: 3px 0;
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
}

.mobile-menu .menu-top ul li a:hover {
    background: #000000;
}

.mobile-menu .menu-bottom {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
    height: 50%;
    margin: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
}

.mobile-menu .menu-bottom ul {
    display: block;
    position: absolute;
    width: 100%;
    height: auto;
    list-style-type: none;
    top: 20px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0;
    z-index: 10005;
}

.mobile-menu .menu-bottom ul li {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    padding: 2px 0;
    text-align: center;
}

.mobile-menu .menu-bottom ul li a, .mobile-menu .menu-bottom ul li a:link, .mobile-menu .menu-bottom ul li a:visited {
    display: block;
    width: 90%;
    max-width: 370px;
    margin: 0 auto;
    padding: 3px 0;
    font-size: 22px;
    color: #000000;
    text-decoration: none;
}

.mobile-menu .menu-bottom ul li a:hover {
    color: #ffffff;
    background: #000000;
}

.header .floating-selector.wts-selector {
    width: 145px !important;
}

@media (max-width: 2560px) {
    .header .logo, .header .logo.wts {
        width: 300px;
        height: 70px;
        margin-top: 27px;
        position: absolute;
    }
    
    .header .floating-selector, .header .floating-selector:link, .header .floating-selector:visited {
        width: 65px;
        height: 50px;
        background: #ec6707;
        color: #ffffff;
        font-size: 16px;
        line-height: 50px;
    }
    
    .header .currency-selector {
        top: 120px;
        right: 0;
    }
    
    .header .controls .login, .header .controls .login:link, .header .controls .login:visited {
        width: 140px;
        height: 50px;
        font-size: 16px;
        line-height: 46px;
    }
    
    .header .controls .menu-container .menu {
        height: 50px;
    }
    
    .header .controls .menu-container .menu li a, .header .controls .menu-container .menu li a:link, .header .controls .menu-container .menu li a:visited {
        height: 50px;
        padding: 0 20px;
        font-size: 16px;
        line-height: 50px;
    }
    
    .header .controls .menu-container .menu li ul {
        min-width: 200px;
    }
    
    .header .controls .menu-container .menu li ul li {
        min-width: 200px;
    }
    
    .header .controls .menu-container .menu li ul li a, .header .controls .menu-container .menu li ul li a:link, .header .controls .menu-container .menu li ul li a:visited {
        min-width: 200px;
    }
    
    .header .controls .menu-container .submenu {
        height: 50px;
        margin-top: 10px;
    }
    
    .header .controls .menu-container .submenu li a, .header .controls .menu-container .submenu li a:link, .header .controls .menu-container .submenu li a:visited {
        height: 50px;
        padding: 0 20px;
        font-size: 16px;
        line-height: 50px;
    }
    
    .header .controls .menu-container .submenu li a.checkout {
        margin-left: 20px;
        background: url(../img/carrello.png) no-repeat 80% 50% / 26px;
        padding-right: 50px;
    }
    
    .header .controls .menu-container .submenu li a.search {
        margin-left: 20px;
        background: url(../img/cerca.png) no-repeat 50% 50% / 20px;
        padding: 0 30px;
    }
    
    .header.black .controls .menu-container .submenu li a.checkout {
        margin-left: 20px;
        background: url(../img/carrello-black.png) no-repeat 80% 50% / 26px;
        padding-right: 50px;
    }
    
    .header.black .controls .menu-container .submenu li a.search {
        margin-left: 20px;
        background: url(../img/cerca-black.png) no-repeat 80% 50% / 26px;
        padding: 0 30px;
    }
    
    .header.black .controls .menu-container .submenu li a.checkout:hover {
        background-image: url(../img/carrello.png);
    }
    
    .header.black .controls .menu-container .submenu li a.search:hover {
        background-image: url(../img/cerca.png);
    }
}

@media (min-width: 1301px) and (max-width: 1600px) {
    .header .logo, .header .logo.wts {
        display: block;
        position: absolute;
        width: 240px;
        margin-top: 32px;
        z-index: -1;
    }
}

@media (max-width: 1300px) {
    .header .website-selector {
        top: 0;
        left: 15px;
    }
    
    .header .language-selector {
        top: 0;
        right: 90px;
    }
    
    .header .currency-selector {
        top: 0;
        right: 15px;
    }
    
    .header .logo, .header .logo.wts {
        margin-top: 117px;
    }
    
    .header .controls {
        margin-top: 80px;
    }
}

@media (min-width: 1201px) and (max-width: 1299px) {
    .header .logo, .header .logo.wts {
        margin-top: 125px;
    }
}

@media (max-width: 1200px) {
    .header .controls {
        display: none;
    }
    
    .header .hamburger-menu {
        display: block;
    }
}

@media (min-width: 1300px) {
    .header .container.top {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .header .logo, .header .logo.wts {
        margin-top: 105px;
        max-width: 50%;
        min-width: 180px;
    }
    
    .header .hamburger-menu {
        margin-top: 125px;
    }
    
    .mobile-menu .close-menu {
        top: 30px;
        right: 15px;
    }
    
    .mobile-menu .menu-top ul li a, .mobile-menu .menu-top ul li a:link, .mobile-menu .menu-top ul li a:visited {
        font-size: 18px;
    }
    
    .mobile-menu .menu-bottom ul li a, .mobile-menu .menu-bottom ul li a:link, .mobile-menu .menu-bottom ul li a:visited {
        font-size: 18px;
    }
}

/************************************************************************/
/****************************** BREADCRUMB ******************************/
/************************************************************************/

.breadcrumb {
    background: #f2f2f2;
    margin-top: -40px;
    margin-bottom: 30px;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    font-size: 16px;
    color: #ec6707;
    font-family: 'Work Sans', sans-serif;
}

.breadcrumb a, .breadcrumb a:link, .breadcrumb a:visited {
    color: #ec6707;
    text-decoration: none;
    text-transform: uppercase;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb a.active {
    cursor: default;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 1300px) {
    .breadcrumb {
        margin-top: -20px;
    }
}

@media (max-width: 576px) {
    .breadcrumb {
        font-size: 14px;
        padding-top: 11px;
    }
}

/************************************************************************/
/******************************** ELENCHI *******************************/
/************************************************************************/

/************ BOX ELENCO GENERICO ************/
/*********************************************/

.list-box, .list-box:link, .list-box:visited {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    height: 100px;
    font-size: 16px;
    line-height: 20px;
    color: #ec6707;
    background: #ffffff;
    border: 2px solid #ec6707;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.list-box:hover {
    background: #ec6707;
    color: #ffffff;
}

.list-box span {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.list-box-show-all, .list-box-show-all:link, .list-box-show-all:visited {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 100px;
    line-height: 100px;
    margin: 0 auto;
    font-size: 22px;
    color: #ffffff;
    background: #ec6707;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.list-box-show-all:hover {
    background: #000000;
}

@media (max-width: 992px) {
    .list-box, .list-box:link, .list-box:visited {
        font-size: 14px;
        line-height: 18px;
    }
    
    .list-box-show-all, .list-box-show-all:link, .list-box-show-all:visited {
        width: 90%;
        max-width: 300px;
        height: 90px;
        line-height: 90px;
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .list-box, .list-box:link, .list-box:visited {
        height: 90px;
    }
    
    .list-box-show-all, .list-box-show-all:link, .list-box-show-all:visited {
        width: 90%;
        max-width: 300px;
        height: 80px;
        line-height: 80px;
        font-size: 16px;
    }
}

/*************** BOX ELENCO 2 ****************/
/*********************************************/

.list-box-2, .list-box-2:link, .list-box-2:visited {
    display: table;
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    max-width: 400px;
    height: 150px;
    font-size: 24px;
    font-weight: 600;
    line-height: 20px;
    color: #ec6707;
    background: #ffffff;
    border: 3px solid #ec6707;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.list-box-2:hover {
    background: #ec6707;
    color: #ffffff;
}

.list-box-2 span {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    padding: 0 10px;
}

.text-right .list-box-2 {
    margin-right: 0px;
    margin-left: auto;
}

.text-left .list-box-2 {
    margin-left: 0px;
    margin-right: auto;
}

@media (max-width: 992px) {
    .list-box-2, .list-box-2:link, .list-box-2:visited {
        font-size: 18px;
        line-height: 22px;
        border: 2px solid #ec6707;
    }
}

@media (max-width: 576px) {
    .list-box-2, .list-box-2:link, .list-box-2:visited {
        height: 110px;
    }
    
    .text-right .list-box-2 {
        margin-right: auto;
        margin-left: auto;
    }
    
    .text-left .list-box-2 {
        margin-left: auto;
        margin-right: auto;
    }
}

/************************************************************************/
/********************************* HOME *********************************/
/************************************************************************/

/*************** HOME TOP IMG ****************/
/*********************************************/

.home-top-img {
    display: block;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.home-top-img .slogan {
    display: block;
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 50%;
}

.home-top-img .slogan h2 {
    display: block;
    clear: both;
    width: 100%;
    text-align: left;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 3vw;
    color: #ffffff;
    margin: 0 0 30px 0;
    padding: 0;
}

.home-top-img .slogan h3 {
    display: block;
    clear: both;
    width: 100%;
    text-align: left;
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 40px 0;
    padding: 0;
}

.home-top-img .slogan a, .home-top-img .slogan a:link, .home-top-img .slogan a:visited {
    display: inline-block;
    clear: both;
    width: auto;
    height: 50px;
    line-height: 46px;
    font-weight: 300;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    margin: 0;
    padding: 0 10px;
    border: 2px solid #ec6707;
    border-radius: 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.home-top-img .slogan a:hover {
    border-color: #000000;
    background: #000000;
}

@media (max-width: 1024px) {
    .home-top-img .slogan {
        max-width: 70%;
    }
    
    .home-top-img .slogan h2 {
        font-size: 46px;
        margin: 0 0 20px 0;
    }
    
    .home-top-img .slogan h3 {
        font-size: 18px;
        margin: 0 0 30px 0;
    }
}

@media (max-width: 960px) {
    .home-top-img .slogan {
        max-width: 70%;
    }
    
    .home-top-img .slogan h2 {
        font-size: 35px;
        margin: 0 0 20px 0;
    }
    
    .home-top-img .slogan h3 {
        font-size: 16px;
        margin: 0 0 30px 0;
    }
}

@media (max-width: 576px) {
    .home-top-img .slogan {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .home-top-img .slogan h2 {
        font-size: 30px;
        margin: 0 0 20px 0;
    }
    
    .home-top-img .slogan h3 {
        font-size: 15px;
        margin: 0 0 30px 0;
    }
}

@media (max-width: 420px) {
    .home-top-img .slogan {
        bottom: 20px;
    }
    
    .home-top-img .slogan h2 {
        font-size: 25px;
        margin: 0 0 20px 0;
    }
    
    .home-top-img .slogan h3 {
        font-size: 14px;
        margin: 0 0 30px 0;
    }
}

/*************** HOME BOX ORANGE *************/
/*********************************************/

.box-orange {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
    height: auto;
    background: #ec6707;
    margin: 0 0 30px 0;
    padding: 70px;
    box-sizing: border-box;
}

.box-orange.star:first-of-type:after {
    display: block;
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    top: 85px;
    left: -40px;
    background: url(../img/stella.png) no-repeat 50% 50%;
    background-size: contain;
}

.box-orange.rocket:first-of-type:after {
    display: block;
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    top: -35px;
    right: 30px;
    background: url(../img/razzo.png) no-repeat 50% 50%;
    background-size: contain;
}

.box-orange h4 {
    display: block;
    position: relative;
    width: 100%;
    color: #ffffff;
    font-size: 45px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    padding: 0 0 20px 0;
}

.box-orange h4:after {
    display: block;
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background: #ffffff;
    bottom: 0;
    left: 0;
    margin: auto;
}

.box-orange h6 {
    display: block;
    width: 100%;
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.box-orange h6:first-of-type {
    width: 70%;
}

.box-orange ul {
    display: block;
    margin: 20px 0;
    padding: 0 0 0 20px;
    list-style-type: decimal;
}

.box-orange ul li {
    color: #ffffff;
    font-size: 16px;
}

.box-orange a, .box-orange a:link, .box-orange a:visited {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 50px;
    background: #ffffff;
    color: #ec6707;
    text-decoration: none;
    text-align: center;
    padding: 0 25px;
    margin: 20px 0 0 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.box-orange a:hover {
    background: #000000;
    color: #ffffff;
}

@media (max-width: 992px) {
    .box-orange {
        padding: 25px;
    }
    
    .box-orange.star:first-of-type:after {
        width: 40px;
        height: 40px;
        top: 25px;
        left: 25px;
    }
    
    .box-orange.rocket:first-of-type:after {
         width: 40px;
        height: 40px;
        top: 25px;
        left: 25px;
    }
    
    .box-orange h4 {
        font-size: 35px;
        margin: 0 0 30px 0;
        padding: 0 0 15px 50px;
    }
    
    .box-orange h4:after {
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background: #ffffff;
        bottom: 0;
        left: 0;
        margin: auto;
    }
}

/************************************************************************/
/******************************** INTERNA *******************************/
/************************************************************************/

/***************** WRAPPERS ******************/
/*********************************************/

.orange-wrapper {
    background: #ec6707;
}

.orange-wrapper.full-height {
    min-height: 100vh;
}

.orange-wrapper h3 {
    color: #fff;
}

.monitor-wrapper {
    background: url(../img/wts-monitor.png) no-repeat 50% 50%;
    background-size: contain;
    padding: 160px 100px 380px 100px;
}

.monitor-wrapper .block p {
    font-size: 20px;
}

@media (max-width: 1479px) {
    .monitor-wrapper {
        background-size: contain;
        padding: 130px 100px 330px 100px;
    }
    
    .monitor-wrapper .block p {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .monitor-wrapper {
        background-size: contain;
        padding: 100px 100px 200px 100px;
    }
    
    .monitor-wrapper .block p {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .monitor-wrapper {
        background: none;
        padding: 0;
    }
    
    .monitor-wrapper .block p {
        font-size: 16px;
    }
}

/**************** INTERNA TOP ****************/
/*********************************************/

.interna-top {
    display: block;
    width: 100%;
    height: auto;
    padding-top: 300px;
}

.orange-wrapper .interna-top {
    color: #ffffff;
}

.orange-wrapper .interna-top h5 {
    color: #ffffff;
}

.orange-wrapper .interna-top h6 {
    display: block;
    max-width: 400px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ffffff;
    color: #ffffff;
}

@media (max-width: 576px) {
    .interna-top {
        padding-top: 250px;
    }
}

/************************************************************************/
/******************************** RICERCA *******************************/
/************************************************************************/

h5.search-group {
    font-size: 22px;
}

@media (max-width: 992px) {
    h5.search-group {
        font-size: 20px;
    }
}

/************************************************************************/
/******************************** TOOLTIPS ******************************/
/************************************************************************/

.popover {
    width: 200px;
    font-family: 'Work Sans', sans-serif;
}

.popover .popover-body {
    padding: 0;
}

.popover .popover-body a, .popover .popover-body a:link, .popover .popover-body a:visited {
    display: block;
    clear: both;
    width: 100%;
    padding: 10px 0;
    color: #000;
    text-indent: 10px;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,.2);
}

.popover .popover-body a:first-child {
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.popover .popover-body a:last-child {
    border-bottom-left-radius: .3rem;
    border-bottom-right-radius: .3rem;
}

.popover .popover-body a:last-of-type {
    border-bottom: none;
}

.popover .popover-body a:hover {
    color: #ffffff;
    background: #000;
}

/************************************************************************/
/***************************** AREA RISERVATA ***************************/
/************************************************************************/

.sidebar {
    display: block;
    position: relative;
    border-right: 1px solid #ec6707;
    box-sizing: border-box;
}

.sidebar a, .sidebar a:link, .sidebar a:visited {
    display: block;
    clear: both;
    width: 100%;
    color: #000000;
    text-decoration: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.sidebar a:hover {
    text-decoration: underline;
}

.sidebar a.active {
    font-weight: 600;
}

.sidebar a.active:hover {
    text-decoration: none;
    cursor: default;
}

@media (max-width: 768px) {
    .sidebar {
        border-right: none;
        /*border-bottom: 1px solid #ec6707;*/
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .sidebar:after {
        display: block;
        position: absolute;
        content: "";
        width: calc(100% - 30px);
        height: 1px;
        bottom: 0;
        left: 15px;
        background: #ec6707;
    }
}

.filter-by-category {
    display: block;
    position: absolute;
    width: 40%;
    height: 50px;
    margin: 10px 0 0 50px;
    padding: 0 20px;
    border: 1px solid #a9a9a9;
    box-sizing: border-box;
}

@media (max-width: 1199px) {
    .filter-by-category {
        width: calc(100% - 30px);
        margin: 0;
    }

    .margin-filter {
        margin-top: 80px !important;
    }
}

.contacts-order-detail { 
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    background: url(../img/contatti.png) no-repeat 30px 0 / 180px;
    box-sizing: border-box;
    margin-bottom: 80px;
}

.contacts-order-detail.no-image {
    background: none;
}

.contacts-order-detail:after {
    display: table;
    clear: both;
    content: "";
    width: 100%;
    height: 1px;
}

.contacts-order-detail .order-content {
    display: block;
    float: left;
    width: calc(100% - 250px);
    margin-left: 250px;
    height: auto;
    box-sizing: border-box;
}

.contacts-order-detail.no-image .order-content {
    display: block;
    float: none;
    clear: both;
    width: calc(100% - 50px);
    margin-left: 50px;
}

.contacts-order-detail .order-content h3 {
    display: block;
    width: 100%;
    font-weight: 600;
    font-size: 32px;
}

.contacts-order-detail .order-content h3 span {
    color: #ec6707;
}

.contacts-order-detail .order-content h5 {
    display: block;
    margin: 15px 0;
    font-size: 14px;
    text-transform: none;
    color: #000000;
}

.contacts-order-detail .order-content p {
    font-size: 16px;
}

.contacts-order-detail .order-content a, .contacts-order-detail .order-content a:link, .contacts-order-detail .order-content a:visited {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 50px;
    margin: 10px 0;
	padding: 0 30px;
    font-size: 18px;
	border: 0;
	border-radius: 0;
    color: #ffffff;
    background: #ec6707;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.contacts-order-detail .order-content a:hover {
    background: #000000;
}

.contacts-order-detail .order-content .specific-contact-detail {
    display: block;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100px;
    border: 1px solid #ec6707;
    margin: 0 0 30px 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.contacts-order-detail .order-content .specific-contact-detail .arrow {
    display: block;
    position: absolute;
    width: 40px;
    height: 21px;
    padding: 0;
    margin: 0;
    top: 40px;
    right: 30px;
    background: url(../img/arrow-down.png) no-repeat 0 50%;
}

.contacts-order-detail .order-content .specific-contact-detail.open .arrow {
    background: url(../img/arrow-up.png) no-repeat 0 50%;
}

.contacts-order-detail .order-content .specific-contact-detail .contact-title {
    display: table-cell;
    vertical-align: middle;
    width: auto;
    max-width: 35vw;
    height: 100px;
    color: #ec6707;
    font-size: 24px;
    line-height: 26px;
    margin: 0;
    padding: 0 0 0 20px;
}

.contacts-order-detail .order-content .specific-contact-detail .contact-detail {
    padding: 0 20px;
}

@media (max-width: 992px) {
    .contacts-order-detail {
        background: url(../img/contatti.png) no-repeat 0 0 / 140px;
        margin-bottom: 50px;
    }
    
    .contacts-order-detail .order-content {
        display: block;
        float: none;
        clear: both;
        width: 100%;
        margin-left: 0;
        padding-top: 180px;
    }
    
    .contacts-order-detail.no-image .order-content {
        margin-left: 0;
        padding-top: 0;
        width: 100%;
    }
    
    .contacts-order-detail .order-content h3 {
        font-size: 26px;
    }
    
    .contacts-order-detail .order-content a, .contacts-order-detail .order-content a:link, .contacts-order-detail .order-content a:visited {
        font-size: 16px;
    }
    
    .contacts-order-detail .order-content .specific-contact-detail .contact-title {
        display: table-cell;
        vertical-align: middle;
        width: auto;
        max-width: 270px;
        height: 100px;
        color: #ec6707;
        font-size: 18px;
        line-height: 20px;
        margin: 0;
        padding: 0 0 0 20px;
    }
    
    .contacts-order-detail .order-content .specific-contact-detail .arrow {
        right: 15px;
    }
    
    .contacts-order-detail .order-content .specific-contact-detail .contact-detail p {
        font-size: 14px;
    }
}

/************************************************************************/
/********************************* LOGIN ********************************/
/************************************************************************/

.login-selector div {
    box-sizing: border-box;
}

.login-selector .login-selector-cliente {
    border-right: 1px solid #ec6707;
}

.login-selector .login-selector-cliente, .login-selector .login-selector-fornitore {
    padding: 0 150px;
}

.login-selector .login-selector-cliente h3 {
    display: block;
    position: relative;
    color: #ec6707;
}

.login-selector .login-selector-cliente h3:after {
    display: block;
    position: absolute;
    content: "";
    top: -4px;
    left: -60px;
    width: 48px;
    height: 48px;
    background: url(../img/stella-arancio.png) no-repeat 0 0 / 48px;
}

.login-selector .login-selector-fornitore h3 {
    display: block;
    position: relative;
    color: #ec6707;
}

.login-selector .login-selector-fornitore h3:after {
    display: block;
    position: absolute;
    content: "";
    top: -4px;
    left: -60px;
    width: 48px;
    height: 48px;
    background: url(../img/missile-arancio.png) no-repeat 0 0 / 48px;
}

@media (max-width: 1200px) {
    .login-selector .login-selector-cliente, .login-selector .login-selector-fornitore {
        padding: 0 90px;
    }
}

@media (max-width: 992px) {
    .login-selector .login-selector-cliente, .login-selector .login-selector-fornitore {
        padding: 0 40px;
    }
    
    .login-selector .login-selector-cliente h3, .login-selector .login-selector-fornitore h3 {
        margin-top: 40px;
    }
    
    .login-selector .login-selector-cliente h3:after {
        top: -40px;
        left: 0;
        width: 32px;
        height: 32px;
        background: url(../img/stella-arancio.png) no-repeat 0 0 / 32px;
    }
    
    .login-selector .login-selector-fornitore h3:after {
        top: -40px;
        left: 0;
        width: 32px;
        height: 32px;
        background: url(../img/missile-arancio.png) no-repeat 0 0 / 32px;
    }
}

@media (max-width: 767px) {
    .login-selector .login-selector-cliente, .login-selector .login-selector-fornitore {
        padding: 0 15px;
    }
    
    .login-selector .login-selector-cliente {
        border-right: none;
        margin-bottom: 50px;
    }
    
    .login-selector .login-selector-cliente:after {
        display: block;
        position: absolute;
        content: "";
        width: calc(100% - 30px);
        height: 1px;
        background: #ec6707;
        left: 15px;
        bottom: 0;
    }
}

/************************************************************************/
/******************************* CATALOGO *******************************/
/************************************************************************/

.elenco-catalogo {
    padding: 0 15px;
}

.elenco-catalogo div {
    padding: 0;
    margin: 0;
}

.elenco-catalogo .catalogo-box, .elenco-catalogo .catalogo-box:link, .elenco-catalogo .catalogo-box:visited {
    display: block;
    position: relative;
    width: 100%;
    font-size: 20px;
    color: #000;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-decoration: none;
 }
 
.elenco-catalogo .catalogo-box span {
    display: block;
    position: absolute;
    width: 100%;
    padding: 0 20px 10px 20px;
    color: #ffffff;
    text-align: center;
    bottom: 15px;
    line-height: 24px;
    z-index: 2;
}
 
.elenco-catalogo .catalogo-box .bg-hover {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.elenco-catalogo .catalogo-box img {
    max-width: 100% !important;
}
 
.elenco-catalogo .catalogo-box:hover {
    text-decoration: none;
    color: #00aeef;
}
 
.elenco-catalogo .catalogo-box:hover .bg-hover {
    opacity: 1;
    z-index: 1;
}

.elenco-catalogo .catalogo-box.unclickable {
    cursor: default;
}

.elenco-catalogo .catalogo-box.unclickable:hover .bg-hover {
    display: none;
}

@media (max-width: 576px) {
    .elenco-catalogo {
        padding: 0;
    }
    
    .elenco-catalogo div {
        padding: 0 15px;
    }
}

/************************************************************************/
/*************************** CATALOGO > CERCA ***************************/
/************************************************************************/

.cerca-categoria {
    display: block;
    float: right;
    position: relative;
    width: 450px;
    max-width: 100%;
    margin-top: -90px;
}

.cerca-categoria input[type="text"] {
    display: block;
	clear: both;
	border: 1px solid #727272;
	border-radius: 0;
	width: 100%;
	height: 54px;
	line-height: 54px;
	color: #000000;
    padding: .375rem 3rem .375rem .75rem;
	font-family: 'Work Sans', sans-serif;
    box-sizing: border-box;
}

.cerca-categoria input[type="text"]:focus {
    box-shadow: 0 0 0 0.2rem rgba(114, 114, 114, .25);
}

.cerca-categoria button {
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    top: 17px;
    right: 20px;
    outline: none;
    background: url(../img/cerca-gray.png) no-repeat 0 0;
}

.cerca-categoria button:focus, .cerca-categoria button:active {
    outline: none;
}

.cerca-categoria button:hover {
    background: url(../img/cerca-orange.png) no-repeat 0 0;
}

@media (max-width: 992px) {
    .cerca-categoria {
        display: block;
        float: none;
        clear: both;
        position: relative;
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 50px;
    }
}

.filter-box {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
    height: auto;
    max-height: 60px;
    background: #ec6707;
    margin-top: 10px;
    overflow: hidden;
}

.filter-box .filter-title {
    display: block;
    clear: both;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    color: #ffffff;
    padding: 0 30px 0 20px;
    box-sizing: border-box;
}

.filter-box .expand-filter {
    display: block;
    position: absolute;
    width: 23px;
    height: 14px;
    background: url(../img/arrow-down-white.png) no-repeat 0 0;
    top: 24px;
    right: 20px;
}

.filter-box.open .expand-filter {
    background: url(../img/arrow-up-white.png) no-repeat 0 0;
}

.filter-box .filter-content {
    display: block;
    clear: both;
    width: 100%;
    border-top: 1px solid #ffffff;
}

.filter-box .filter-content input[type="text"] {
    display: block;
    clear: both;
	border: 0;
	border-radius: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	color: #ffffff;
    background: #ec6707;
	font-family: 'Work Sans', sans-serif;
    padding: 0 20px;
    box-sizing: border-box;
}

.filter-box .filter-content input[type="text"]::placeholder { 
    color: #f6b88c;
    opacity: 1;
}

.filter-box .filter-content input[type="text"]:-ms-input-placeholder {
    color: #f6b88c;
}

.filter-box .filter-content input[type="text"]::-ms-input-placeholder {
    color: #f6b88c;
}

/************************************************************************/
/************************* CATALOGO > ACQUISTA **************************/
/************************************************************************/

.purchase-box {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.purchase-box h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.purchase-box .purchase-box-content {
    display: block;
    clear: both;
    color: #ffffff;
    background: #ec6707;
    padding: 20px;
    box-sizing: border-box;
}

.purchase-box .purchase-box-content .purchase-box-content-top, .purchase-box .purchase-box-content .purchase-box-content-bottom {
    display: block;
    clear: both;
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.purchase-box .purchase-box-content .purchase-box-content-top:after, .purchase-box .purchase-box-content .purchase-box-content-bottom:after {
    display: table;
    clear: both;
    content: "";
    width: 100%;
    height: 1px;
}


.purchase-box .purchase-box-content .purchase-box-content-top .qta-txt {
    display: block;
    float: left;
    margin-top: 16px;
    width: 100%;
    max-width: 40%;
    line-height: 18px;
    word-break: break-all;
    box-sizing: border-box;
}

.purchase-box .purchase-box-content .purchase-box-content-top .total-txt {
    display: block;
    clear: both;
    width: 100%;
    line-height: 18px;
    padding-top: 20px;
    box-sizing: border-box;
}

.purchase-box .purchase-box-content .purchase-box-content-top .total-txt span:first-child {
    display: inline-block;
    width: 100%;
    max-width: 39%;
}

.purchase-box .purchase-box-content .purchase-box-content-top .total-txt span:last-child {
    display: inline-block;
    width: 100%;
    max-width: 40%;
    font-weight: 600;
}

.purchase-box .purchase-box-content .purchase-box-content-top .total-txt div {
    display: block;
    clear: both;
    font-size: 14px;
    padding: 5px 0 0 41%;
    box-sizing: border-box;
}

.purchase-box .purchase-box-content .purchase-box-content-top .input-box {
    display: block;
    float: right;
    position: relative;
    width: 100%;
    max-width: 60%;
    height: 50px;
    line-height: 50px;
    background: #ffffff;
    color: #000000;
    padding: 0 20px 0 10px;
    box-sizing: border-box;
}

.purchase-box .purchase-box-content .purchase-box-content-top .input-box a.add, .purchase-box .purchase-box-content .purchase-box-content-top .input-box a.add:link, .purchase-box .purchase-box-content .purchase-box-content-top .input-box a.add:visited {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 13px;
    height: 13px;
    background: url(../img/plus-gray-small.png) no-repeat 0 0;
}

.purchase-box .purchase-box-content .purchase-box-content-top .input-box a.add:hover {
    background: url(../img/plus-orange-small.png) no-repeat 0 0;
}

.purchase-box .purchase-box-content .purchase-box-content-top .input-box a.remove, .purchase-box .purchase-box-content .purchase-box-content-top .input-box a.remove:link, .purchase-box .purchase-box-content .purchase-box-content-top .input-box a.remove:visited {
    display: block;
    position: absolute;
    top: 30px;
    right: 10px;
    width: 13px;
    height: 13px;
    background: url(../img/minus-gray-small.png) no-repeat 0 0;
}

.purchase-box .purchase-box-content .purchase-box-content-top .input-box a.remove:hover {
    background: url(../img/minus-orange-small.png) no-repeat 0 0;
}

.purchase-box .purchase-box-content .purchase-box-content-bottom a, .purchase-box .purchase-box-content .purchase-box-content-bottom a:link, .purchase-box .purchase-box-content .purchase-box-content-bottom a:visited {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin: 20px 0 0 0;
    padding: 0;
    font-size: 16px;
    border: 0;
    border-radius: 0;
    color: #ec6707;
    background: #ffffff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.purchase-box .purchase-box-content .purchase-box-content-bottom a:hover {
    color: #ffffff;
    background: #000000;
}

.purchase-box .expand-purchase-box, .purchase-box .expand-purchase-box:link, .purchase-box .expand-purchase-box:visited {
    display: none;
    position: absolute;
    width: 23px;
    height: 14px;
    top: 24px;
    right: 20px;
    background: url(../img/arrow-down-orange.png) no-repeat 0 0;
}

.purchase-box.open .expand-purchase-box, .purchase-box.open .expand-purchase-box:link, .purchase-box.open .expand-purchase-box:visited {
    background: url(../img/arrow-up-orange.png) no-repeat 0 0;
}

@media (max-width: 768px) {
    .purchase-box {
        border: 2px solid #ec6707;
    }
    
    .purchase-box h4 {
        display: block;
        height: 60px;
        line-height: 60px;
        font-size: 16px;
        padding: 0 0 0 20px;
        margin: 0;
    }
    
    .purchase-box p {
        display: none;
        padding: 0 0 0 20px;
        font-size: 14px;
        max-width: 60%;
        margin-top: -10px;
    }
    
    .purchase-box .purchase-box-content {
        display: none;
    }
    
    .purchase-box .expand-purchase-box, .purchase-box .expand-purchase-box:link, .purchase-box .expand-purchase-box:visited {
        display: block;
    }
    
    .purchase-box.open p {
        display: block;
    }
    
    .purchase-box.open .purchase-box-content {
        display: block;
    }
}

/************************************************************************/
/********************* CATALOGO > PREVIEW CONTATTI **********************/
/************************************************************************/

.contacts-preview {
    display: block;
    width: 350px;
    height: 400px;
    margin: 57px auto 0 auto;
    background: url(../img/contatti-preview.png) no-repeat 0 0 / 350px;
    padding: 80px 0 0 50px;
    box-sizing: border-box;
}

.contacts-preview h3 {
    display: block;
    clear: both;
    text-align: center;
    color: #ec6707;
    font-weight: 600;
    font-size: 20px;
    padding: 0;
    margin: 0 auto;
}

.contacts-preview h4 {
    display: block;
    clear: both;
    text-align: center;
    color: #ec6707;
    font-weight: 600;
    font-size: 20px;
    padding: 0;
    margin: 0 auto;
}

@media (max-width: 1092px) {
    .contacts-preview {
        width: 300px;
        height: 350px;
        margin: 57px auto 0 auto;
        background: url(../img/contatti-preview.png) no-repeat 0 0 / 300px;
        padding: 70px 0 0 40px;
    }
    
    .contacts-preview h3 {
        font-size: 18px;
    }
    
    .contacts-preview h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .contacts-preview {
        display: block;
        width: 250px;
        height: 300px;
        margin: 20px auto 0 auto;
        background: url(../img/contatti-preview.png) no-repeat 0 0 / 250px;
        padding: 60px 0 0 30px;
    }
    
    .contacts-preview h3 {
        font-size: 16px;
    }
    
    .contacts-preview h4 {
        font-size: 16px;
    }
}

/************************************************************************/
/******************************* CARRELLO *******************************/
/************************************************************************/

.cart-step {
    display: table;
    width: 100%;
    border: 2px solid #ec6707;
    color: #ec6707;
    text-transform: uppercase;
    padding: 30px 30px 30px 20px;
    margin: 0 0 20px 0;
    box-sizing: border-box;
    background: url(../img/arrow-right-orange.png) no-repeat 94% 50%;
}

.cart-step.active {
    background-color: #f2f2f2;
    border-color: #f2f2f2;
}

.cart-step p {
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.cart-table {
    display: table;
    width: 100%;
}

.cart-table .cart-table-head {
    display: table-header-group;
}

.cart-table .cart-table-head .cart-table-head-row {
    display: table-row;
}

.cart-table .cart-table-head .cart-table-head-row .cart-table-head-cell {
    display: table-cell;
    font-size: 16px;
    text-transform: uppercase;
    padding: 30px 0;
    border-bottom: 1px solid #000000;
}

.cart-table .cart-table-body {
    display: table-row-group;
}

.cart-table .cart-table-body .cart-table-body-row {
    display: table-row;
}

.cart-table .cart-table-body .cart-table-body-row .cart-table-body-cell {
    display: table-cell;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    padding: 30px 0;
    border-bottom: 1px solid #000000;
}

.cart-table .cart-table-body .cart-table-body-row .cart-table-body-cell .mobile-th {
    display: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.cart-table .more-info, .cart-table .more-info:link, .cart-table .more-info:visited {
    color: #ec6707;
    text-decoration: none;
}

.cart-table .more-info:hover {
    text-decoration: underline;
}

.cart-table .qty-add, .cart-table .qty-add:link, .cart-table .qty-add:visited {
    display: block;
    position: absolute;
    left: 60px;
    top: 20px;
    width: 16px;
    height: 16px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.cart-table .qty-add:hover {
    color: #ec6707;
}

.cart-table .qty-remove, .cart-table .qty-remove:link, .cart-table .qty-remove:visited {
    display: block;
    position: absolute;
    left: 60px;
    top: 40px;
    width: 16px;
    height: 16px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.cart-table .qty-remove:hover {
    color: #ec6707;
}

.cart-summary-box {
    display: block;
    width: 100%;
    background: #f2f2f2;
    padding: 30px 30px 20px 30px;
    box-sizing: border-box;
}

.cart-summary-box.fullpadding {
    padding: 30px;
}

.cart-summary-box input[type="text"] {
    display: block;
    clear: both;
    border: none;
    border-radius: 0;
    width: 100%;
    height: 54px;
    line-height: 54px;
    color: #000000;
    font-family: 'Work Sans', sans-serif;
    padding: 0 50px 0 20px;
}

.cart-summary-box button[type="submit"] {
    display: block;
    position: absolute;
    top: 16px;
    right: 35px;
    width: 14px;
    height: 23px;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    background: url(../img/arrow-right-orange.png) no-repeat 94% 50%;
}

.cart-summary-box #coupon_result h4 {
    font-size: 20px;
    margin-bottom: 0;
}

.cart-summary-box .total {
    display: block;
    height: 54px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    padding: 13px 0 0 0;
    box-sizing: border-box;
}

.cart-summary-box .total span {
    display: block;
    clear: both;
    font-size: 14px;
}

.cart-summary-box .btn, .cart-summary-box .btn:link, .cart-summary-box .btn:visited {
    display: inline-block;
    width: auto;
    height: 50px;
    line-height: 50px;
    margin: 0;
	padding: 0 80px 0 20px;
    font-size: 16px;
	border: 0;
	border-radius: 0;
    color: #ffffff;
    background: #ec6707 url(../img/arrow-right-white.png) no-repeat 90% 50%;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    box-sizing: border-box;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.cart-summary-box .btn:hover {
    background: #000000 url(../img/arrow-right-white.png) no-repeat 90% 50%;
}

.cart-summary-box .btn.back, .cart-summary-box .btn.back:link, .cart-summary-box .btn.back:visited {
    text-align: right;
    color: #ec6707;
    background: #ffffff url(../img/arrow-left-orange.png) no-repeat 10% 50%;
    border: 2px solid #ec6707;
    height: 50px;
    line-height: 46px;
    font-size: 14px;
    padding: 0 20px 0 60px;
}

.cart-summary-box .btn.back:hover {
    background: #ec6707 url(../img/arrow-left-white.png) no-repeat 10% 50%;
    color: #ffffff;
}

.cart-summary-box .btn.no-top {
    margin-top: 0px !important;
}

@media (max-width: 992px) {
    .cart-step {
        padding: 20px 20px 20px 15px;
        margin: 0 0 10px 0;
    }
    
    .cart-step p {
        font-size: 14px;
    }
    
    .cart-summary-box {
        padding: 30px;
    }
    
    .cart-summary-box .total {
        margin-top: 20px;
    }
    
    .cart-summary-box .btn, .cart-summary-box .btn:link, .cart-summary-box .btn:visited {
        margin-top: 20px;
    }
    
    .cart-table .qty-add, .cart-table .qty-add:link, .cart-table .qty-add:visited {
        left: 50px;
    }
    
    .cart-table .qty-remove, .cart-table .qty-remove:link, .cart-table .qty-remove:visited {
        left: 50px;
    }
}

@media (max-width: 768px) {
    .cart-table {
        display: block;
        width: 100%;
        clear: both;
    }
    
    .cart-table .cart-table-head {
        display: none;
    }
    
    .cart-table .cart-table-body {
        display: block;
        width: 100%;
        clear: both;
    }
    
    .cart-table .cart-table-body .cart-table-body-row {
        display: block;
        width: 100%;
        clear: both;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #000000;
    }
    
    .cart-table .cart-table-body .cart-table-body-row .cart-table-body-cell {
        display: block;
        width: 100%;
        clear: both;
        padding: 10px 0;
        border-bottom: none;
    }
    
    .cart-table .cart-table-body .cart-table-body-row .cart-table-body-cell .mobile-th {
        display: block;
        width: 100%;
        clear: both;
    }
    
    .cart-table .qty-add, .cart-table .qty-add:link, .cart-table .qty-add:visited {
        left: 90px;
        top: 20px;
    }
    
    .cart-table .qty-remove, .cart-table .qty-remove:link, .cart-table .qty-remove:visited {
        left: 90px;
        top: 40px;
    }
    
    .cart-summary-box .btn.no-top:not(.back) {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 576px) {
    .cart-step {
        padding: 10px 20px 10px 15px;
        margin: 0 0 7px 0;
    }
    
    .cart-step p {
        font-size: 14px;
    }
}

/************************************************************************/
/********************************* BLOG *********************************/
/************************************************************************/

.blog-filters {
    display: block;
    margin: 0 0 30px 0;
    padding: 0;
    list-style-type: none;
}

.blog-filters li {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.blog-filters li a, .blog-filters li a:link, .blog-filters li a:visited {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 18px;
    color: #000000;
    margin-right: 20px;
}

.blog-filters li a:hover {
    text-decoration: underline;
}

.blog-filters li a.active {
    font-weight: 600;
    text-decoration: underline;
}

.blog-list, .blog-list:link, .blog-list:visited {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 460px;
    box-sizing: border-box;
    margin: 0 0 30px 0;
    text-decoration: none;
    border: none;
    border-radius: 0;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    color: #000000;
}

.blog-list:before, .blog-list:after {
    display: table;
    clear: both;
    width: 100%;
    height: 1px;
    content: "";
}

.blog-list .blog-list-content {
    display: block;
    position: absolute;
    width: 400px;
    height: auto;
    max-height: 400px;
    right: 30px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.8);
    color: #000000;
    padding: 40px 30px;
    box-sizing: border-box;
}

.blog-list .blog-list-content .blog-list-category {
    display: block;
    width: 100%;
    font-size: 14px;
    text-transform: uppercase;
}

.blog-list .blog-list-content .blog-list-title {
    display: block;
    width: 100%;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 26px;
    font-weight: 600;
}

.blog-list .blog-list-content .blog-list-description {
    display: block;
    width: 100%;
    font-family: 'Lora', serif;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin: 20px 0 20px 0;
}

.blog-list .blog-list-content .blog-list-article-details {
    display: block;
    width: 100%;
    font-size: 14px;
    border-top: 1px solid #707070;
    padding: 20px 0 0 0;
}

@media (max-width: 980px) {
    .blog-list, .blog-list:link, .blog-list:visited {
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .blog-list, .blog-list:link, .blog-list:visited {
        min-height: 220px;
    }
    
    .blog-list .blog-list-content {
        display: block;
        width: calc(100% - 40px);
        height: auto;
        max-height: 320px;
        right: 20px;
        bottom: 20px;
        padding: 20px 20px;
    }
    
    .blog-list .blog-list-content .blog-list-category {
        font-size: 12px;
    }
    
    .blog-list .blog-list-content .blog-list-title {
        font-size: 20px;
    }
    
    .blog-list .blog-list-content .blog-list-description {
        font-size: 16px;
        margin: 20px 0 20px 0;
    }
    
    .blog-list .blog-list-content .blog-list-article-details {
        font-size: 12px;
        padding: 20px 0 0 0;
    }
}

@media (max-width: 576px) {
    .blog-list, .blog-list:link, .blog-list:visited {
        width: calc(100% + 30px);
        margin-left: -15px;
        margin-bottom: 15px;
        min-height: 220px;
    }
}

@media (max-width: 420px) {
    .blog-filters li a, .blog-filters li a:link, .blog-filters li a:visited {
        font-size: 16px;    
    }
    
    .blog-list .blog-list-content .blog-list-category {
        font-size: 12px;
    }
    
    .blog-list .blog-list-content .blog-list-title {
        font-size: 16px;
    }
    
    .blog-list .blog-list-content .blog-list-description {
        font-size: 14px;
        margin: 20px 0 20px 0;
        max-height: 100px;
        text-overflow: ellipsis;
        overflow: hidden; 
    }
    
    .blog-list .blog-list-content .blog-list-article-details {
        font-size: 12px;
        padding: 20px 0 0 0;
    }
}

/************************************************************************/
/****************************** PAGINATION ******************************/
/************************************************************************/

.pagination {
    display: block;
    width: 100%;
    text-align: center;
}

.pagination .pagination-prev, .pagination .pagination-prev:link, .pagination .pagination-prev:visited {
    display: inline-block;
    width: 21px;
    height: 39px;
    background: url(../img/arrow-left.png) no-repeat 0 0;
}

.pagination .pagination-next, .pagination .pagination-next:link, .pagination .pagination-next:visited {
    display: inline-block;
    width: 21px;
    height: 39px;
    background: url(../img/arrow-right.png) no-repeat 0 0;
}

.pagination span {
    display: inline-block;
    height: 39px;
    vertical-align: bottom;
    padding: 0 40px;
}

/************************************************************************/
/******************************** FOOTER ********************************/
/************************************************************************/

.footer {
    display: block;
    position: relative;
    width: 100%;
    border-top: 2px solid #ec6707;
    margin-top: 200px;
    overflow-x: hidden;
}

.footer:before {
    display: block;
    position: absolute;
    content: "";
    width: 25%;
    height: 100%;
    top: 0;
    left: 0;
    background: #ec6707;
    z-index: -1;
}

.footer .bgorange {
    background: #ec6707;
}

.footer .bgorange ul {
    list-style-type: none;
    margin: 40px 0;
    padding: 0;
}

.footer .bgorange ul li a, .footer .bgorange ul li a:link, .footer .bgorange ul li a:visited {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
}

.footer .bgorange ul li a:hover {
    text-decoration: underline;
}

.footer .logo {
    width: 192px;
    float: right;
    margin-right: 30px;
}

.footer .block {
    margin: 40px 0;
}

.footer .block p {
    font-size: 14px;
}

.footer .block p span {
    color: #ec6707;
}

.footer .block p a, .footer .block p a:link, .footer .block p a:visited {
    color: #ec6707;
    text-decoration: underline;
}

.footer .block p a:hover {
    text-decoration: none;
}

.footer .row.website-selector-row {
    margin: 30px 0;
    padding-left: 80px;
}

.footer .row .row:last-of-type div:first-of-type .block p {
    padding-left: 80px;
}

.footer .block .social, .footer .block .social:link, .footer .block .social:visited {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 0;
    margin: 0 3px 0 0;
}

.footer .block .social.facebook { 
    background: url(../img/facebook.png) no-repeat 50% 50% / 36px;
}
.footer .block .social.linkedin { 
    background: url(../img/linkedin.png) no-repeat 50% 50% / 36px;
}
.footer .block .social.instagram { 
    background: url(../img/instagram.png) no-repeat 50% 50% / 36px;
}
.footer .block .social.twitter { 
    background: url(../img/twitter.png) no-repeat 50% 50% / 36px;
}

.footer .block.bottom {
    margin: 0px 0 20px 0;
}

.footer .block p a.credits, .footer .block p a.credits:link, .footer .block p a.credits:visited {
    color: #000000;
    text-decoration: underline;
}

.footer .block p a.credits:hover {
    text-decoration: none;
}

.footer .website-selector {
    display: block;
    height: 50px;
    background: #ec6707;
    color: #ffffff;
    font-size: 14px;
    line-height: 50px;
    border: 0;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

@media (max-width: 1480px) {
    .footer .row.website-selector-row {
        padding-left: 40px;
    }

    .footer .row .row:last-of-type div:first-of-type .block p {
        padding-left: 40px;
    }
}

@media (max-width: 1300px) {
    .footer .logo {
        float: none;
        margin: 0 auto;
    }
}

@media (max-width: 1200px) {
    .footer .row.website-selector-row {
        padding-left: 0px;
    }

    .footer .row .row:last-of-type div:first-of-type .block p {
        padding-left: 0px;
    }
}

@media (max-width: 767px) {
    .footer {
        margin-top: 100px;
    }
    
    .footer:before {
        display: none;
    }
    
    .footer .bgorange:before {
        display: block;
        position: absolute;
        content: "";
        width: 200%;
        height: 100%;
        top: 0;
        left: -50%;
        background: #ec6707;
        z-index: -1;
    }
    
    .footer .bgorange ul {
        margin: 30px 0;
    }
    
    .footer .logo {
        float: none;
        width: 50%;
        max-width: 170px;
        margin: 20px 0 0 0;
    }
    
    .footer .block {
        margin: 10px 0;
    }
    
    .footer .block .social, .footer .block .social:link, .footer .block .social:visited {
        width: 32px;
        height: 32px;
    }
    
    .footer .block .social.facebook { 
        background: url(../img/facebook.png) no-repeat 50% 50% / 32px;
    }
    .footer .block .social.linkedin { 
        background: url(../img/linkedin.png) no-repeat 50% 50% / 32px;
    }
    .footer .block .social.instagram { 
        background: url(../img/instagram.png) no-repeat 50% 50% / 32px;
    }
    .footer .block .social.twitter { 
        background: url(../img/twitter.png) no-repeat 50% 50% / 32px;
    }
    
    .footer .block.bottom {
        margin: 10px 0 0 0;
    }
}

/************************************************************************/
/********************************* MODALI *******************************/
/************************************************************************/

.mfp-wrap {
	z-index: 99999960;
}

.mfp-bg {
	z-index: 99999942;
	background-color: #000;
	opacity: 0.4!important;
}

.modal-content {
	-webkit-box-shadow: none;
	box-shadow: none;
	border: none;
}

button.mfp-close {
	top: -50px!important;
	right: -5px!important;
}

button.mfp-close {
	background-image: url(../img/close-popup-white.png);
	background-position: center;
	background-repeat: no-repeat;
}

.mfp-figure .mfp-close {
	top: -50px;
	right: -5px;
	width: 44px;
}

img.mfp-img {
	box-sizing: border-box;
	display: block;
	height: auto;
	line-height: 0;
	margin: 0 auto;
	max-width: 100%;
	padding: 0px 0 40px 0;
	width: auto;
}

.modal-content {
	-webkit-border-radius: 0px 0px 0px 0px;
	border-radius: 0px 0px 0px 0px;
}

.modal-content-box {
	padding: 15px;
}

.modal-content-box.lg {
	padding: 50px 100px;
}

.white-popup {
	margin-top: 60px;
}

.modal-content .form-group input {
	text-align: center;
}

.modal-content .button-cus {
	display: table;
	margin: auto;
}

@media (max-width: 992px) {
	button.mfp-close {
		top: 10px!important;
		right: 10px!important;
	}
    
	button.mfp-close {
		background-image: url(../img/close-popup.png);
		background-position: center;
		background-repeat: no-repeat;
		width: 30px;
		height: 30px;
		background-size: 80%;
	}
    
	.white-popup {
		padding-top: 40px;
		margin-top: 0px;
	}
}

/************************************************************************/
/******************************* NICESCROLL *****************************/
/************************************************************************/

.nicescroll-rails.nicescroll-rails-vr {
    background: #e3e3e3 !important;
}

.nicescroll-rails.nicescroll-rails-vr .nicescroll-cursors {
    background-color: #000000 !important;
    width: 100% !important;
    border: none !important;
    border-radius: 0 !important;
}

/************************************************************************/
/****************************** LEAFLET MAP *****************************/
/************************************************************************/

#leaflet-map {
    display: block;
    clear: both;
    width: 100%;
    height: 400px;
}

/************************************************************************/
/******************************* WTS - HOME *****************************/
/************************************************************************/

.block.wts-home {
    display: block;
    background: url(../img/wts-home.png) no-repeat 50% 0;
    background-size: cover;
    padding-top: 50%;
    text-align: left;
    margin: -100px 0 50px 0;
}

.block.wts-home h1 {
    display: block;
    float: right;
    width: 35%;
    margin-right: calc(50% - 40%);
    font-size: 56px;
    margin-top: -170px;
    color: #ffffff;
    font-weight: 600;
}

.block.wts-home h2 {
    display: block;
    float: right;
    clear: right;
    width: 35%;
    margin-right: calc(50% - 40%);
    font-size: 38px;
    margin-top: -100px;
    color: #000000;
}

@media (max-width: 1479px) {
    .block.wts-home h1 {
        font-size: 46px;
        margin-top: -150px;
    }
    
    .block.wts-home h2 {
        font-size: 28px;
        margin-top: -90px;
    }
}

@media (max-width: 1300px) {
    .block.wts-home {
        margin: -50px 0 50px 0;
    }
}

@media (max-width: 1200px) {
    .block.wts-home h1 {
        font-size: 46px;
        margin-top: -130px;
    }
    
    .block.wts-home h2 {
        font-size: 28px;
        margin-top: -70px;
    }
}

@media (max-width: 992px) {
    .block.wts-home h1 {
        font-size: 36px;
        margin-top: -95px;
    }
    
    .block.wts-home h2 {
        font-size: 22px;
        margin-top: -50px;
    }
}

@media (max-width: 768px) {
    .block.wts-home h1 {
        width: 50%;
        margin-right: 0;
        font-size: 34px;
        margin-top: -75px;
    }
    
    .block.wts-home h2 {
        width: 50%;
        margin-right: 0;
        font-size: 22px;
        margin-top: -30px;
    }
}

@media (max-width: 576px) {
    .block.wts-home {
        display: block;
        background: url(../img/wts-home-mobile.png) no-repeat 50% 1vh;
        background-size: contain;
        padding-top: 50vw;
        text-align: left;
        margin: -20px 0 50px 0;
    }
    
    .block.wts-home h1 {
        display: block;
        float: none;
        clear: both;
        width: 100%;
        font-size: 36px;
        margin: 130px 0 0 0;
    }
    
    .block.wts-home h2 {
        display: block;
        float: none;
        clear: both;
        width: 100%;
        font-size: 26px;
        margin: 0;
    }
}

.wts-service-list, .wts-service-list:link, .wts-service-list:visited {
    display: block;
    width: 100%;
    text-align: center;
    color: #000;
    text-decoration: none;
    padding-top: 200px;
    font-size: 22px;
    line-height: 30px;
    box-sizing: border-box;
}

.wts-service-list span {
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ec6707;
    padding-top: 15px;
}

.wts-service-list.s-1 {
    background: url(../img/wts-telecomando.png) no-repeat 50% 30px / 200px;
}

.wts-service-list.s-2 {
    background: url(../img/wts-missile.png) no-repeat 50% 30px / 70px;
}

.wts-service-list.s-3 {
    background: url(../img/wts-canocchiale.png) no-repeat 50% 60px / 140px;
}

.wts-service-list.s-4 {
    background: url(../img/wts-monitor.png) no-repeat 50% 60px / 160px;
}

.wts-service-list:hover span {
    color: #ec6707;
}

/************************************************************************/
/******************************* WTS - ALIEN ****************************/
/************************************************************************/

#wts-alien {
    background: url(../img/wts-alien.png) no-repeat 50% 50%;
    background-size: cover;
    min-height: 1300px;
}

#wts-alien .block p {
    display: block;
    max-width: 550px;
    margin: 400px auto 0 auto;
    color: #ffffff;
    text-align: center;
    font-size: 22px;
}

#wts-alien .block p strong {
    color: #ec6707;
}

@media (max-width: 1600px) {
    #wts-alien {
        min-height: 1000px;
    }
    
    #wts-alien .block p {
        max-width: 500px;
        margin: 280px auto 0 auto;
        font-size: 20px;
    }
}

@media (max-width: 1479px) {
    #wts-alien {
        min-height: 900px;
    }
    
    #wts-alien .block p {
        max-width: 450px;
        margin: 250px auto 0 auto;
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    #wts-alien {
        min-height: 800px;
    }
    
    #wts-alien .block p {
        max-width: 450px;
        margin: 250px auto 0 auto;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    #wts-alien .block p {
        max-width: 420px;
        margin: 200px auto 0 auto;
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    #wts-alien .block p {
        max-width: 420px;
        margin: 200px auto 0 auto;
        font-size: 14px;
    }
}

/************************************************************************/
/**************************** WTS - ROCKET LIST *************************/
/************************************************************************/

.wts-rocket-list {
    display: block;
    position: relative;
    float: right;
    list-style-type: none;
    background: #ec6707;
    margin: 200px 0 0 0;
    padding: 50px 40px;
    max-width: 375px;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}

.wts-rocket-list:before {
    display: block;
    position: absolute;
    background: url(../img/wts-missile-right.png) no-repeat 0 0;
    background-size: contain;
    content: "";
    width: 130%;
    height: 270px;
    top: -200px;
    left: -200px;
    z-index: 10;
}

.wts-rocket-list li {
    display: block;
    position: relative;
    color: #ffffff;
    padding: 0 0 0 15px;
}

.wts-rocket-list li:before {
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(../img/star.png) no-repeat 50% 50% / 16px;
    content: "";
    top: 3px;
    left: -10px;
}

@media (max-width: 1300px) {
    .wts-rocket-list:before {
        display: block;
        position: absolute;
        background: url(../img/wts-missile-right.png) no-repeat 0 0;
        background-size: contain;
        content: "";
        width: 100%;
        height: 230px;
        top: -160px;
        left: -100px;
    }
}

@media (max-width: 980px) {
    .wts-rocket-list:before {
        display: block;
        position: absolute;
        background: url(../img/wts-missile-right.png) no-repeat 0 0;
        background-size: contain;
        content: "";
        width: 90%;
        height: 230px;
        top: -120px;
        left: -30px;
    }
}

@media (max-width: 768px) {
    .wts-rocket-list {
        float: none;
        clear: both;
        margin: 200px 0 0 0;
        padding: 50px 40px;
        max-width: 100%;
        width: 100%
    }

    .wts-rocket-list:before {
        display: block;
        position: absolute;
        background: url(../img/wts-missile-right.png) no-repeat 0 0;
        background-size: contain;
        content: "";
        width: 100%;
        height: 210px;
        top: -200px;
        left: 0;
        
    }
}

.wts-list {
    display: block;
    position: relative;
    list-style-type: none;
    background: #ec6707;
    margin: 0;
    padding: 40px;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}

.wts-list li {
    display: block;
    position: relative;
    color: #ffffff;
    padding: 0 0 0 15px;
}

.wts-list li:before {
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background: url(../img/star.png) no-repeat 50% 50% / 16px;
    content: "";
    top: 3px;
    left: -10px;
}

/************************************************************************/
/*********************** WTC - NUOVA REGISTRAZIONE **********************/
/************************************************************************/

.row.registrazione-selector-row {
    margin: 0px 0px 30px 0px;
}

.row.registrazione-selector-row input[type="checkbox"] {
    position: absolute;
    margin: 18px 0 0 18px;
    z-index: 2;
}

.row.registrazione-selector-row .registrazione-selector {
    display: block;
    position: relative;
    height: 50px;
    background: #ec6707;
    color: #ffffff;
    font-size: 14px;
    line-height: 50px;
    border: 0;
    border-radius: 0;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    cursor: pointer;
}

.row.registrazione-selector-row .registrazione-selector:hover {
    background: #6e6e6e !important; 
}

.row.registrazione-selector-row input[disabled="disabled"]+.registrazione-selector {
    background: #ccc;
    cursor: default;
}

.row.registrazione-selector-row input[disabled="disabled"]+.registrazione-selector:hover {
    background: #ccc !important;
}

.row.registrazione-selector-row .registrazione-selector > img {
    display: block;
    position: absolute;
    width: 32px;
    height: 32px;
    right: -10px;
    top: -10px;
}