﻿﻿ /*
    --------------------------------------------------

    Theme Name: WDstudio

    file: style.css

    version: 2.0

    author: WDStudio - Stefano Cagol / Andrea Paolazzi 2020

    ---------------------------------------------------
*/





 /*
  ============================
    RESET CSS
  ============================
*/

 html,
 body,
 div,
 span,
 applet,
 object,
 iframe,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p,
 blockquote,
 pre,
 a,
 abbr,
 acronym,
 address,
 big,
 cite,
 code,
 del,
 dfn,
 em,
 img,
 ins,
 kbd,
 q,
 s,
 samp,
 small,
 strike,
 strong,
 sub,
 sup,
 tt,
 var,
 b,
 u,
 i,
 center,
 dl,
 dt,
 dd,
 ol,
 ul,
 li,
 fieldset,
 form,
 label,
 legend,
 table,
 caption,
 tbody,
 tfoot,
 thead,
 tr,
 th,
 td,
 article,
 aside,
 canvas,
 details,
 embed,
 figure,
 figcaption,
 footer,
 header,
 hgroup,
 menu,
 nav,
 output,
 ruby,
 section,
 summary,
 time,
 mark,
 audio,
 video {
     margin: 0;
     padding: 0;
     border: 0;
     font-size: 100%;
     font: inherit;
     vertical-align: baseline;
 }

 /* HTML5 display-role reset per browser vecchi */
 article,
 aside,
 details,
 figcaption,
 figure,
 footer,
 header,
 hgroup,
 menu,
 nav,
 section {
     display: block;
 }

 body {
     line-height: 1;
 }

 ol,
 ul {
     list-style: none;
 }

 blockquote,
 q {
     quotes: none;
 }

 blockquote:before,
 blockquote:after,
 q:before,
 q:after {
     content: '';
     content: none;
 }

 table {
     border-collapse: collapse;
     border-spacing: 0;
 }





 /*
  ============================
    GENERALI
  ============================
*/

 html {
     -moz-osx-font-smoothing: grayscale;
     -webkit-font-smoothing: antialiased;
     font-smoothing: antialiased;
     font-weight: 400;
 }


 /* Risolve problema Bootstrap con MAC e Safari per allineamento griglie */

 .row:before,
 .row:after {
     display: inline-block !important;
 }

 /* -------------------------------------------------------------------- */


 body {
     font-size: 16px;
 }

 .full-width {
     padding-left: 0 !important;
     padding-right: 0 !important;
     overflow: hidden;
 }

 .wrapper{
	 max-width: 1600px;
	 margin: 0 auto;
 }

 h1 {
     color: #666666;
     font-size: 3em;
     font-family: 'Rancho';
     margin-bottom: .5em;
 }

 h2 {
     color: #666666;
     font-size: 2.5em;
     font-family: 'Rancho';
     margin-bottom: 1.5em;
 }

 h3 {
     color: #666666;
     font-size: 2em;
     font-family: 'Rancho';
     margin-bottom: 1.5em;
 }

 h4 {
     color: #666666;
     font-size: 1.6em;
     font-family: 'Rancho';
     margin-bottom: 1.5em;
 }

 h5 {
     color: #666666;
     font-size: 1.4em;
     font-family: 'Rancho';
     margin-bottom: 1.5em;
 }

 h6 {
     color: #666666;
     font-size: 1.1em;
     font-family: 'Lato';
     margin-bottom: 1.5em;
 }

 p {
     color: #666666;
     font-size: 1em;
     font-family: 'Lato';
     line-height: 30px;
     margin-bottom: 1em;
 }

 a {
     color: #666666;
     font-size: 14px;
     font-family: 'Lato';
 }

 a:hover,
 a:focus {
     text-decoration: none !important;
 }

 button#responsive-menu-pro-button {
     display: none !important;
 }


 /* ----- BARRA SCROLL LATERALE ----- */

 /* width */

 body::-webkit-scrollbar {
     width: 10px;
 }

 /* Track */

 body::-webkit-scrollbar-track {
     background: #b1b1b1;
 }

 /* Handle */

 body::-webkit-scrollbar-thumb {
     background: #666666;
 }

 /* -------------------------------- */


 /* MENU */

 ul#responsive-menu-pro {
     margin-top: 0;
 }

 .menu-item a.responsive-menu-pro-item-link {
     color: #ffffff !important;
 }






 /* 
    =============================
    404 ERROR PAGE
    =============================
*/

 .quattrozeroquattro {
     background-image: url(http://www.gruppobluecity.it/wp-content/uploads/2018/01/home5.jpg);
     background-size: cover;
 }

 .inzider {
     background: white;
     display: block;
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
     padding: 5em;
 }

 .absoluter {
     padding-top: 14em;
     padding-bottom: 14em;
 }





 /*
  ============================
    ELEMENTI GENERICI
  ============================
*/


 /* ---------- PULSANTE ---------- */

 .PulsanteCustom {
     padding: 12px 35px;
     border: 2px solid #a7000a;
     color: #a7000a;
     text-align: center;
     text-decoration: none;
     text-transform: uppercase;
     font-weight: 400;
     vertical-align: middle;
     margin: 0 auto;
     display: inline-block;
     position: relative;
     z-index: 999;
     font-size: 17px
 }

 .PulsanteCustom:hover {
     color: white
 }

 .PulsanteCustom:after {
     content: '';
     position: absolute;
     width: 0%;
     height: 100%;
     bottom: 0;
     left: 0;
     background: #a7000a;
     display: block;
     -webkit-transition: width 500ms;
     transition: width 500ms;
     z-index: -1;
 }

 .PulsanteCustom:hover:after {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     bottom: 0;
     left: 0;
     background: #a7000a;
     display: block;
 }


 /* ---------- BACK TO TOP ---------- */

 #return-to-top {
     position: fixed;
     bottom: 20px;
     right: 20px;
     background: rgb(0, 0, 0);
     background: rgba(0, 0, 0, 0.7);
     width: 50px;
     height: 50px;
     display: block;
     text-decoration: none;
     -webkit-border-radius: 35px;
     -moz-border-radius: 35px;
     border-radius: 35px;
     display: none;
     -webkit-transition: all 0.3s linear;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
     z-index: 999;
 }

 #return-to-top i {
     color: #fff;
     margin: 0;
     position: relative;
     left: 10px;
     top: 10px;
     font-size: 2em;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -ms-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
     transition: all 0.3s ease;
 }

 #return-to-top:hover {
     background: rgba(0, 0, 0, 0.9);
 }

 #return-to-top:hover i {
     color: #fff;
     top: 5px;
 }

 .TitoloArancio {
     text-align: center;
     margin: 0 auto;
     padding: 3em 0;
 }

 .TitoloArancio h3 {
     margin-bottom: 0.5em;
     color: #f16c2b;
     text-transform: uppercase;
 }

 .BottoneBlu {
     display: inline-block;
     background-color: #3891a6 !important;
     border: 2px solid #3891a6 !important;
     border-radius: 8px !important;
     color: #ffffff !important;
     padding: 0.6em 1em !important;
     transition: 0.2s !important;
     cursor: pointer;
 }

 .BottoneBlu:hover {
     background-color: #ffffff !important;
     color: #3891a6 !important;
 }

 .BottoneArancio {
     display: unset;
     background-color: #f16c2b !important;
     border: 2px solid #f16c2b !important;
     border-radius: 8px !important;
     color: #ffffff !important;
     padding: 0.5em 0.8em !important;
     transition: 0.2s !important;
 }

 .BottoneArancio:hover {
     background-color: #ffffff !important;
     color: #f16c2b !important;
 }












 /*
  ============================
    MENU
  ============================
*/

 .menu-item {
     display: inline-block;
     margin-right: 0.6em;
 }

 .menu-item a {
     text-transform: uppercase;
     color: #003652 !important;
 }

 .menu .current-menu-item a {
     text-decoration: underline;
     font-weight: bold;
 }




 /*
  ============================
    HEADER
  ============================
*/

 header {
     width: 100%;
     z-index: 999;
     padding-top: 10px;
     padding-bottom: 10px;
 }

 .logo {
     width: auto;
     height: 140px;
     z-index: 99;
     margin: 0 auto;
     position: relative;
     display: block;
 }

 .containerlogo {
     max-width: 1600px;
     display: flex;
     align-items: center;
     position: relative;
	 height: inherit;
	 justify-content: space-around;
     margin: 0 auto;
 }

 .OfferteHeader {
     background-color: #f16b2a;
     padding: 10px 15px;
     border-radius: 10px;
     margin-left: 12%;
 }

 .OfferteHeader .material-icons {
     vertical-align: middle;
 }

 .OfferteHeader a {
     color: #ffffff;
 }

 .IntroChiSiamo .col-1 {
     padding-left: 0;
     padding-right: 0;
 }

 .IntroChiSiamo .carousel {
     padding-left: 0;
     padding-right: 0;
 }

 .LogoSito {
     width: 10%;
 }

 .LogoSito img {
     width: 60%;
 }

 .SliderInterno .carousel-item.active img {
	position: absolute;
	bottom: 12em;
	left: -11em;
	width: 50%;
}

.SliderInterno .carousel-item h2 {
	bottom: 3.4em;
}

/* 
 .SliderInterno .carousel-item.active img {
     position: absolute;
     bottom: 10em;
     left: -11em;
     width: 50%;
 }

 .carousel-item.active img {
    position: absolute;
    bottom: 16em;
    left: -11em;
}
.carousel-item.active {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vh;
    border-bottom-left-radius: 300px;
} 

.SliderInterno .carousel-item.active img {
    position: absolute;
    bottom: 20em;
    left: -11em;
    width: 50%;
}

.SliderInterno .carousel-item.active h2 {bottom:7em;} */


 .SliderInterno .carousel-item.active h2 {
     text-shadow: 2px 0 0 #012738, -2px 0 0 #012738, 0 2px 0 #012738, 0 -2px 0 #012738, 1px 1px #012738, -1px -1px 0 #012738, 1px -1px 0 #012738, -1px 1px 0 #012738;
 }





 /* 
    =============================
    FOOTER
    =============================
*/

 .footer {
     width: 100%;
     padding: 4em 0;
     display: inline-block;
     background-repeat: no-repeat;
     background-position: 50% 70%;
     background-size: cover;
     background: #003652;
 }

 .footer p,
 .footer a {
     color: #ffffff;
     font-size: 0.9em;
 }

 .footer .Generali {
     margin-top: 1em;
 }

 .page_item {
     margin-bottom: 5px;
 }

 .footer img {
     margin-top: 3em;
     width: 2em;
     margin-left: 15px;
 }

 .footer .Logo img {
     margin-top: 1em;
     width: 60%;
 }

 .footer .menu-item a {
     color: #ffffff !important;
 }

 .footer .menu-item {
     margin-bottom: 5px;
 }







 /* 
    =============================
    HOMEPAGE
    =============================
*/

 .IconaSocial {
     display: block;
     text-align: center;
     margin: 3em;
     margin-right: 1em;
 }

 i.fa.fa-facebook-f {
     font-size: 2.5em;
     color: #012738;
 }

 i.fa.fa-instagram {
     font-size: 2em;
     color: #012738;
 }

 i.fa.fa-envelope {
     font-size: 1.8em;
     color: #012738;
 }



 .IntroHomepage .IconaSocial img {
     width: 36%;
 }

 .IntroHomepage a.BottoneBlu {
     position: absolute;
     bottom: 8em;
     left: -10em;
 }

 .carousel-item.active {
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     height: 80vh;
     border-bottom-left-radius: 300px;
 }

 .carousel-item.active img {
     position: absolute;
     bottom: 16em;
     left: -11em;
 }

 .carousel-item.active h2 {
     position: absolute;
     color: #ffffff;
     font-family: 'Lato';
     font-weight: bold;
     text-transform: uppercase;
     left: -4em;
 }

 .IconaSocial img {
     width: 20%;
     display: block;
     margin: 3em auto;
 }

 .LoopCatHome .Prodotti h4 {
     text-transform: uppercase;
 }

 .Prodotti img {
     width: 100%;
     border: 8px solid #f16c2b;
     border-radius: 50%;
     margin-bottom: 15px;
 }

 .Prodotti .cat {
     text-align: center;
 }

 .ProdottoOfferte img {
     margin-top: 2.5em;
 }

 #icona {
     margin-top: 0;
 }

 .TestoChiSiamo {
     float: right;
     margin-right: 4em;
 }

 .ChiSiamoContent {
     background-color: #f5ad37;
     border-top-right-radius: 5em;
     border-bottom-right-radius: 5em;
     padding: 5em 0;
 }

 .ChiSiamoContent p {
     color: #ffffff;
     margin-bottom: 3em;
     text-align: justify;
     margin-right: 4em;
 }

 .Homepage .ChiSiamo img {
     width: 100%;
     position: absolute;
     top: 12em;
     right: 12em;
 }

 img#zampa1 {
     width: 45%;
     top: -5em;
     right: 43em;
     transform: rotate(35deg);
 }

 img#zampa2 {
     width: 40%;
     top: -5em;
     right: -5em;
     transform: rotate(-70deg);
 }

 img#zampa3 {
     width: 55%;
     right: 2em;
     top: 10em;
     transform: rotate(-45deg);
 }

 .TitoloBianco h3 {
     color: #ffffff;
     text-transform: uppercase;
     margin-bottom: 0.8em;
 }

 .TitoloBianco h6 {
     color: #ffffff;
 }

 .ChiSiamoContent .container .col-lg-7.col-md-12.col-sm-12 {
     float: right;
 }

 .Homepage .Offerte {
     margin-top: 8em;
 }

 .Offerte {
     background-color: #dd7373;
     padding: 5em 0;
     margin-bottom: 2em;
 }

 .Offerte h3 {
     text-align: center;
     margin-bottom: 3em;
 }

 .Offerte .TitoloBianco {
     text-align: center;
 }

 .Offerte .TitoloBianco h3 {
     margin-bottom: 0.5em;
 }

 .Offerte .TitoloBianco h6 {
     margin-bottom: 5em;
 }

 .ProdottoOfferte {
     background-color: #ffffff;
     border-radius: 10px;
     text-align: center;
     border: 6px solid #dd7373;
 }

 .ProdottoOfferte h2 {
     margin: 1em 0 0.2em;
     min-height: 3em;
 }

 .ProdottoOfferte .iconaCat {
     top: -2.5em;
 }

















 img.attachment-shop_catalog.size-shop_catalog.wp-post-image {
     margin-top: 1em;
     width: 90%;
 }

 .buy-btn {
     display: block;
     background-color: #3891a6;
     border: 2px solid #3891a6;
     border-radius: 8px;
     color: #ffffff;
     padding: 0.6em 1em;
     transition: 0.2s;
     width: 45%;
     margin: 0 auto;
     transform: translateY(50%);
 }

 .buy-btn:hover {
     background-color: #ffffff !important;
     color: #3891a6 !important;
 }

 .price-tag {
     display: block;
     color: #3891a6;
     margin-bottom: 2em;
     font-size: 20px;
 }

 .price-tag ins {
     font-weight: bold;
 }


 .SingleConsigli .BottoneBlu,
 .ChiSiamo .BottoneBlu,
 .ServiziHome .BottoneBlu,
 .PulsanteConsigli .BottoneBlu {
     text-transform: uppercase;
 }

 .SottocategorieProdotti h5 {
     margin-bottom: 10px;
 }









 .CategorieHome {
     background-image: url('http://tantezampe.amedia.it/wp-content/uploads/2020/02/rigadicoca.png');
     background-position: center;
     background-repeat: no-repeat;
     background-size: unset;
     padding-top: 5em;
     padding-bottom: 8em;
 }

 .CategorieHome p {
     margin-bottom: 3em;
     text-align: justify;
 }

 .Animali .TitoloArancio {
     text-align: left;
 }

 .ServiziHome {
     padding-top: 5em;
     padding-bottom: 5em;
 }

 .ServiziHome .Animali p {
     margin-bottom: 3em;
     text-align: justify;
 }

 .Servizio {
     background-color: #f1f2f2;
     border-radius: 10px;
     margin: 2em 0;
     padding: 1.5em;
 }

 .Servizio h5 {
     color: #808285;
     margin-top: -1.8em;
 }

 .Servizio p {
     margin-top: 10px;
     line-height: 18px;
     font-size: 0.8em;
     margin-bottom: 0;
 }

 .Servizio .IconaServizio {
     width: 35%;
     position: relative;
     background-color: #f16c2b;
     padding: 0.8em;
     border-radius: 50%;
     bottom: 3.5em;
 }

 .Servizio img {
     width: 100%;
 }

 /* ICONE HOME SINISTRA */

 .SchedaServizio:nth-child(1) .Servizio .IconaServizio {
     background-color: #f5ad37;
 }

 .SchedaServizio:nth-child(3) .Servizio .IconaServizio {
     background-color: #f5ad37;
 }

 /* ICONE HOME DESTRA */

 .SchedaServizio_2:nth-child(2) .Servizio .IconaServizio {
     background-color: #f5ad37;
 }

 .ServiziSX {
     margin-top: 3em;
 }

 .Consigli {
     padding-bottom: 5em;
 }

 .CustomConsigli p {
     margin-top: 1em;
     margin-bottom: 2em;
 }

 .PulsanteConsigli {
     margin-top: 5em;
 }

 .CustomConsigli .BottoneBlu {
     position: absolute;
     margin: 0 auto;
     left: 35%;
     bottom: -1em;
 }

 .PulsanteConsigli .BottoneBlu {
     margin: 0 auto;
 }

 .info {
     background-color: #f1f2f2;
     padding: 1.5em 1.5em 0 1.5em;
     border-radius: 10px;
     min-height: 320px;
 }

 .ImmagineConsigli {
     display: inline-block;
     position: absolute;
     left: -0.5em;
     top: 0em;
 }

 .ImmagineConsigli {
     width: 18%;
     background-color: #f16c2b;
     padding: 1em;
     border-radius: 50%;
 }

 .ImmagineConsigli img {
     width: 100%;
 }

 .CustomConsigli:nth-child(1) .ImmagineConsigli {
     background-color: #f5ad37;
 }

 .TestoConsigli {
     display: inline-block;
     width: 90%;
     margin-left: 2em;
 }








 /* 
    =============================
    CHI SIAMO
    =============================
*/

 .ChiSiamo .carousel-item.active {
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
     height: 50vh;
     border-bottom-left-radius: 250px;
 }

 .ChiSiamo .Offerte {
     margin-bottom: 0;
 }

 #storia1 {
     width: 70%;
     position: absolute;
     border-radius: 10px;
     z-index: 10;
     top: 10em;
     left: 5em;
 }

 #storia2 {
     width: 70%;
     position: absolute;
     border-radius: 10px;
     top: 25em;
     left: 15em;
 }

 .ContenutoTeam {
     margin-top: 2em;
 }

 .ContenutoTeam img {
     width: 100%;
     border-radius: 10px;
 }

 .ContenutoTeam h5 {
     text-align: center;
     margin-top: 0.8em;
     text-transform: uppercase;
 }

 .Storia {
     padding-top: 8em;
     padding-bottom: 8em;
 }

 .Team {
     padding-bottom: 5em;
 }

 .Team .TitoloArancio {
     text-align: left;
     margin: 0;
 }





 /* 
    =============================
    VIP CARD
    =============================
*/

 .IntroVipCard .carousel-item.active {
     background-position: top;
     background-repeat: no-repeat;
     background-size: cover;
     height: 50vh;
     border-bottom-left-radius: 250px;
 }

 .ImmagineVipCard {
     width: 35%;
 }

 .ContentDefault {
     padding: 5em 0;
 }

 .ContentVipCard img {
     width: 50%;
     margin: 2em 0;
 }





 /* 
    =============================
    SINGLE CONSIGLI
    =============================
*/

 .SingleConsigli img {
     margin: 0 auto;
     margin-bottom: 3em;
     display: block;
     margin-top: 2em;
     width: 30%;
 }




 /* 
    =============================
    CONTATTI
    =============================
*/

 .Contatti .carousel-item.active {
     background-position: top;
     background-repeat: no-repeat;
     background-size: cover;
     height: 50vh;
     border-bottom-left-radius: 250px;
 }

 .ContenutoContatti {
     padding-top: 5em;
     padding-bottom: 5em;
 }

 .Contatti iframe {
     text-align: center;
     margin: 0 auto;
     width: 100%;
 }

 div#wpcf7-f173-o1 {
     text-align: center;
 }


 /* FORM */

 input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
     border: 2px solid #003652;
     margin-bottom: 10px;
     border-radius: 10px;
     color: #666666 !important;
     padding-left: 10px;
 }

 input.wpcf7-form-control.wpcf7-text.wpcf7-email.wpcf7-validates-as-required.wpcf7-validates-as-email {
     border: 2px solid #003652;
     margin-bottom: 10px;
     border-radius: 0;
     color: #666666 !important;
     padding-left: 10px;
 }

 input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required {
     border: 2px solid #003652;
     margin-bottom: 10px;
     border-radius: 0;
     color: #666666 !important;
     padding-left: 10px;
 }

 textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required {
     border: 2px solid #003652;
     margin-bottom: 10px;
     border-radius: 0;
     color: #666666 !important;
     padding-left: 10px;
 }

 span.wpcf7-list-item {
     margin: 0 0 20px 0;
 }

 .wpcf7-form-control.wpcf7-submit {
     background-color: #3891a6;
     border: 2px solid #3891a6;
     border-radius: 8px;
     color: #ffffff;
     padding: 0.5em 2em;
     transition: 0.2s;
     text-transform: uppercase;
 }

 .wpcf7-form-control.wpcf7-submit:hover {
     background-color: #ffffff;
     color: #3891a6;
 }

 .select2-container--default .select2-selection--single {
     height: 35px;
     border-radius: 0;
 }

 .woocommerce form .form-row input.input-text {
     height: 35px
 }

 .select2-container--default .select2-selection--single .select2-selection__rendered {
     color: #444;
     line-height: 35px;
 }

 .select2-container--default .select2-selection--single .select2-selection__arrow {
     height: 35px;
     position: absolute;
     top: 1px;
     right: 1px;
     width: 20px;
 }

 .PuntiVendita {
     background-color: #dd7373;
     padding-bottom: 5em;
 }

 .PuntiVendita .TitoloBianco {
     text-align: center;
     padding-top: 5em;
     padding-bottom: 5em;
 }


 .Negozio {
     background-color: #ffffff;
     border-radius: 10px;
     text-align: center;
     padding: 2em;
 }

 .Negozio h4 {
     color: #f16b2a;
     margin-bottom: 1.5em;
 }

 .Negozio .Info img {
     display: inline-block;
     vertical-align: top;
     margin-bottom: 10px;
     margin-top: 8px;
     width: 4%;
 }

 .Negozio .Info p {
     display: inline-block;
     vertical-align: middle;
     margin-bottom: 10px;
 }

 .Negozio .Iframe {
     display: block;
     margin-top: 1.5em;
 }

 .Negozio .Orari {
     min-height: 200px;
     margin: 1.5em 0;
 }













 /* 
    =============================
    WOOCOMMERCE - ARCHIVE
    =============================
*/

 .PaginaProdotti .OfferteProdotti {
     margin-top: 0;
 }


 .page-title {
     text-align: center;
     margin-bottom: 2em;
     color: #f16c2b;
     text-transform: uppercase;
 }

 .woocommerce-result-count {
     display: none;
 }

 .woocommerce-ordering {
     display: none;
 }

 nav.woocommerce-pagination {
     text-align: center;
     font-weight: bold;
 }

 nav.woocommerce-pagination li {
     cursor: pointer;
     display: inline-block;
     border: 2px solid #3991a6;
     padding: 10px;
     border-radius: 10px;
     vertical-align: middle;
     color: #666666;
 }

 nav.woocommerce-pagination span {
     vertical-align: middle;
 }

 .OfferteProdotti {
     margin-top: 5em;
 }

 .OfferteProdotti .TitoloBianco h3 {
     margin-bottom: 3em;
 }

 .ProdottoArchive {
     background-color: #f4f4f4;
     border-radius: 10px;
     text-align: center;
     margin-bottom: 5em !important;
     max-width: 310px;
     position: relative;
 }

 .ProdottoArchive h4 {
     margin: 1em;
     height: 75px;
 }

 .ProdottoArchive .price {
     margin: 0 auto;
     margin-bottom: -2em;
 }

 .ProdottoArchive img {
     margin-top: 3em;
 }

 .ProdottoArchive .iconaCat {
     margin-top: 1em;
 }

 .TornaCollezioni {
     text-align: center;
     padding: 6em 0;
 }

 .CategorieProdotti {
     background-image: url('http://tantezampe.amedia.it/wp-content/uploads/2020/02/rigadicoca.png');
     background-position: 50% 45%;
     background-repeat: no-repeat;
     background-size: unset;
     padding-top: 0;
     padding-bottom: 6em;
 }

 .CategorieProdotti p {
     margin-bottom: 3em;
     text-align: justify;
 }

 .LoopCatProdotti .Prodotti h4 {
     text-transform: uppercase;
     margin-bottom: 10px;
 }

 .LoopCatProdotti {
     margin-top: 6em;
 }

 .iconaCat {
     position: absolute;
     top: -3.2em;
     left: 4%;
     width: 70px;
     border-radius: 50%;
     border: 3px solid #f16c2b;
     height: 70px;
     background-size: contain;
 }

 .IconaCategoria {
     position: relative;
     top: -2.2em;
     width: 130px;
     height: 130px;
     border-radius: 50%;
     border: 2px solid #f16c2b;
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
 }

 .SottocategorieProdotti a {
     text-decoration: none;
     color: #f16c2b;
     text-transform: uppercase;
     font-family: 'Rancho';
 }

 .SottocategorieProdotti h5 {
     margin-top: 25px;
 }

 .SottocategorieSottocategorieProdotti a {
     text-decoration: none;
     color: #f16c2b;
     text-transform: uppercase;
     font-family: 'Rancho';
 }

 .SottocategorieSottocategorieProdotti h5 {
     margin-top: 25px;
 }

 i.material-icons {
     color: #ffffff;
     font-size: 1.2em;
 }

 .menu_sottocategorie i {
     display: none;
 }

 .active i {
     display: block;
 }

 .dgwt-wcas-search-wrapp {
     margin-left: 50px !important;
 }

 .LoopCatHome {
     margin-top: 6em;
 }


 /* FILTRI PRODOTTI */


 .menu_sottocategorie.active h4 {
     color: #f16b2a;
     font-size: 33px;
 }








 /* 
    =============================
    WOOCOMMERCE - SINGLE PRODUCT
    =============================
*/

 .IntestazioneOfferte {
     /*margin-top: 5em;*/
 }

 .IntestazioneOfferte h1 {
     color: #f16b2a;
 }

 .RecensioniProdotto {
     margin-top: 5em;
 }

 .RecensioniProdotto h2 {
     color: #f16b2a;
 }

 .ProdottoArchive h2 {
     color: #666666;
 }

 .ImmagineProdotto img {
     width: 100%;
     height: 100%;
     margin-top: 2em;
 }

 .DettagliProdotto p.price {
     padding: 1em 0;
     margin: 1em 0;
     font-weight: bold;
     font-size: 1.5em;
     border-top: 1px solid #f16b2a30;
     border-bottom: 1px solid #f16b2a;
 }

 .product_meta {
     display: none;
 }

 .backorder_notification{
    display: none;
}

.backorder_notification_custom{
    display: block;
    margin-bottom:0px;
}

 .button.single_add_to_cart_button.button.alt {
     background-color: #3891a6;
     border: 2px solid #3891a6;
     border-radius: 8px;
     color: #ffffff;
     padding: 1em 1.5em;
     transition: 0.2s;
     margin: 1em 0;
 }

 .button.single_add_to_cart_button.button.alt:hover {
     background-color: #ffffff;
     color: #3891a6;
 }

 .woocommerce-product-details__short-description {
     margin: 1em 0;
 }

 div#tab-description {
     margin-top: 1.5em;
     margin-bottom: 3em;
 }

 div#tab-description p {
     margin: 1em 0;
 }

 li#tab-title-description {
     display: inline-block;
     text-transform: uppercase;
     margin-right: 1em;
 }

 li#tab-title-description.active {
     font-weight: bold;
     border-bottom: 3px solid #f16b2a;
     padding-bottom: 0.5em;
 }

 li#tab-title-description.active a {
     color: #f16b2a !important;
 }

 div#tab-reviews {
     margin-top: 1.5em;
     margin-bottom: 3em;
 }

 div#tab-reviews p {
     margin: 1em 0;
 }

 li#tab-title-reviews {
     display: inline-block;
     text-transform: uppercase;
 }

 li#tab-title-reviews.active {
     font-weight: bold;
     border-bottom: 3px solid #f16b2a;
     padding-bottom: 0.5em;
 }

 li#tab-title-reviews.active a {
     color: #f16b2a !important;
 }

 ul.tabs.wc-tabs {
     border-bottom: 1px solid #000000;
 }

 p.price del {
     display: block;
     font-size: 0.8em;
     font-weight: normal;
 }

 p.price ins {
     text-decoration: none;
     font-weight: bold;
     font-size: 1.2em;
 }

 span.onsale {
     background-color: #f16b2a;
     padding: 1em;
     color: #ffffff;
     text-transform: uppercase;
     border-radius: 10px;
 }

 .woocommerce-product-gallery.woocommerce-product-gallery--without-images.woocommerce-product-gallery--columns-4.images {
     margin-top: 1em;
 }

 .RecensioniProdotto img {
     width: 100%;
     height: 50%;
 }

 .RecensioniProdotto .ProdottoArchive h2 {
     font-size: 1.8em !important;
 }

 #product-breadcrumbs, #page-breadcrumbs {
     background: #f16b2a;
     padding: 10px 0;
     margin-bottom: 30px;
 }


 #product-breadcrumbs .container,  #page-breadcrumbs .container {
     display: flex;
     color: white;
     align-items: center;
 }
 #page-breadcrumbs .container{
     padding:55px 0;
 }

 .iconaBreadcrumb {
     display: inline-block;
     border-radius: 50%;
     border: 3px solid white;
     margin-right: 40px;
 }

 .menuBreadcrumbs a {
     font-family: 'Rancho';
     color: white;
     font-size: 26px;
 }

 .iconaBreadcrumb img {
     display: block;
     max-width: 130px;
     border-radius: 50%;
     border: 3px solid #f16b2a;
 }

 .SingleProdotti .Offerte {
     margin-bottom: 0;
     margin-top: 3em;
 }

 span.offerta {

    top: -26px;
    position: absolute;
    padding: 5px 10px;
    color: white;
    background: #ec6e10;
    right: 0;
}

 .DettagliProdotto .price {
     background: none;
     color: #666666;
     border: none;
     border-radius: 0;
     padding-top: 10px;
     display:block;
 }

 .SottocategorieProdotti h5 {
     margin-left: 30px;
 }

 .SottocategorieProdotti h5:nth-child(1) {
     margin-left: 30px;
 }

 .SingleProdotti .ImmagineProdotto {
     margin-top: 1.5em;
 }








 /* TOLGO ELEMENTI PER CATALOGO */
 form.cart {
    
 }

 form.cart label{
     color:black!important;
    
}



 .quantity input {
     width: 3.631em;
     margin-right: 20px;
     margin-top: 30px;


 }

 .woocommerce .quantity .qty {
     width: 3.631em;
     text-align: center;
 }

 /*
button.single_add_to_cart_button.button.alt {
    display: none;
}

section.related.products {
    display: none;
} */


 .oggetto-archive .EventoContent {
     padding: 2em;
 }

 .Evento {
     background-position: center;
     background-size: contain;
	 margin-bottom: 32px;
	 padding-top: 37.83%;
	 background-repeat: no-repeat;
 }


 .evento-evidenza {
     color: #fff;
     text-align: center;
 }

 .evento-evidenza h4,
 .evento-evidenza h5 {
     margin-bottom: 1em;
     color: #fff !important;
 }

 .EventoContent .BottoneBlu {
     margin-top: 30px;
     display: inline-block !important;
 }

 .oggetto-listing .row h3 {
     display: inline-block;
     text-align: center;
     width: 100%;
     margin-bottom: 2em;
 }

 .GenitoreHover {
     position: relative;
 }

 .sottocategorieHover {
     width: 300px;
     height: auto;
     display: inline-block;
     position: relative;
     background-color: #fff;
     padding: 10px;
     margin-top: 15px;
     z-index: 999;
 }

 .sottocategorieHover a {
     margin-bottom: 5px;
     font-size: 0.8em;
     display: block;
 }

 .openCat {
     display: block !important;
     position: absolute;
     top: 20px;
     left: 0;
 }

 /* woocommerce cart */
 .woocommerce #respond input#submit.alt,
 .woocommerce a.button.alt,
 .woocommerce button.button.alt,
 .woocommerce input.button.alt {
     background-color: #3891a6 !important;
     border: 2px solid #3891a6 !important;
     border-radius: 8px !important;
     color: #ffffff !important;
     padding: 0.6em 1em !important;
     transition: 0.2s !important;
     cursor: pointer;
 }

 /* order page */
 .woocommerce .col2-set .col-1,
 .woocommerce-page .col2-set .col-1 {
     flex: none;
     max-width: unset;
 }

 .woocommerce .col2-set .col-2,
 .woocommerce-page .col2-set .col-2 {
     flex: none;
     max-width: unset;
 }

 h3#order_review_heading {
     margin-top: 40px;
 }




 /* barra laterale */

 .parent-category-filter {
     font-family: 'Rancho';
     margin-left: 3em;
 }

 .parent-category-filter .BottoneArancio {
     display: inline-block;
 }

 .childrens-categories {
     display: flex;
     flex-direction: column;
     margin-bottom: 40px;
     margin-left: 15px;
 }

 .childrens-categories a {
     text-transform: uppercase;
     font-family: 'Rancho';
     color: #f16c2b;
     font-size: 20px;
     line-height: 1.2;

 }