/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* Sidecart
--------------------------------------------- */
.toggleSidebar {
    position: fixed;
    top: 0;
    right: 0px;
    visibility: hidden;
    width: 300px;
    height: 100%;
    z-index: 999999999999;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    padding-top: 0;
    background-color: #f4f4f4;
    -webkit-transition: transform 1.2s ease-in-out,opacity .5s ease-in-out,visibility .5s ease-in-out;
    -moz-transition: transform 1.2s ease-in-out,opacity .5s ease-in-out,visibility .5s ease-in-out;
    -o-transition: transform 1.2s ease,opacity .5s ease-in-out,visibility .5s ease-in-out;
    transition: transform .35s ease,opacity .5s ease-in-out,visibility .5s ease-in-out;
  }
  
  .toggleSidebar.sidebarToggleOpen {
    visibility: visible;
    -moz-transition: transform .35s ease;
    -o-transition: transform .35s ease;
    -webkit-transition: transform .35s ease;
    transition: transform .35s ease;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarTitle {
    max-width: 214px;
    display: inline-block;
  }
  
  .toggleSidebar.cartSidebarContainer .svuota-carrello {
  text-align: center;
  }
  
  .toggleSidebar.cartSidebarContainer .widget_shopping ul {
    height: calc(100% - 148px);
  }
  
  .toggleSidebar.cartSidebarContainer .widget_shopping_cart {
    height: 100%;
    z-index: 1;
  }
  
  .toggleSidebar.cartSidebarContainer.sidebarToggleOpen .cart-bottom-box {
    opacity: 1;
    visibility: visible;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap {
    position: relative;
    border-left: 2px solid #a18f57;
    width: 100%;
    height: 100%;
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box {
    position: absolute;
    bottom: 0;
    width: 100%;
    -moz-opacity: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    -moz-transition: opacity .7s ease,visibility .7s ease;
    -o-transition: opacity .7s ease,visibility .7s ease;
    -webkit-transition: opacity .7s ease,visibility .7s ease;
    transition: opacity .7s ease,visibility .7s ease;
  }
  
  .toggleSidebar .cartSidebarHeader {
    border: 1px solid #eaeaec;
    font-size: 14px;
    background-color: #fff;
    color: #454545;
    padding: 22px 20px;
    clear: both;
    margin-top: 0;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
  }
  
  .toggleSidebar .cartSidebarHeader .cartContentsCount {
    display: inline-block;
    background-color: #a18f57;
    height: 14px;
    min-width: 16px;
    margin-left: 3px;
    line-height: 14px;
    text-align: center;
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    font-family: lato,sans-serif;
  }
  
  .toggleSidebar #cart-close-btn, .toggleSidebar #toggle-sidebar-close-btn {
    position: absolute;
    height: 45px;
    width: 45px;
    top: 10px;
    right: 10px;
    display: block;
    cursor: pointer;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.55, 0.31, 0.15, 0.93);
    -moz-transition: -moz-transform 0.4s cubic-bezier(0.55, 0.31, 0.15, 0.93);
    -ms-transition: -ms-transform 0.4s cubic-bezier(0.55, 0.31, 0.15, 0.93);
    transition: transform 0.4s cubic-bezier(0.55, 0.31, 0.15, 0.93);
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .total {
    display: block;
    padding: 14px 25px;
    overflow: hidden;
    margin: 0;
    background-color: #f4f4f4;
    border-top: 1px solid #eaeaec;
    border-bottom: 1px solid #eaeaec;
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .total strong {
    display: block;
    float: left;
    text-transform: uppercase;
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .total .amount {
    display: block;
    float: right;
    font-size: 16px;
    color: #a18f57;
    font-weight: 500;
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .buttons {
    margin: 0;
    display: block;
    overflow: hidden;
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .buttons .checkout {
    background-color: #a18f57 !important;
    color: #fff;
  
    &:hover {
        color: #ddd;
    }
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .buttons a {
    font-size: 18px;
    width: 100% !important;
    padding: 0 !important;
    float: left !important;
    margin: 0 !important;
    background-color: #a18f57;
    text-align: center;
    line-height: 45px !important;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
    border-radius: 0;
    font-weight: bold;
    transition: color .5s;
    color: #ffffff;
    
  }
  
  .toggleSidebar.cartSidebarContainer .cart-bottom-box .buttons a.wcppec-cart-widget-button { /* Paypal one click pay */
  display: none;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list .mini_cart_item {
    padding: 10px;
    content: "";
    overflow: hidden;
    clear: both;
    border-bottom: 1px solid #eaeaec;
    position: relative;
    -moz-opacity: 0;
    opacity: 1;
    min-height: 80px;
    -moz-transition: opacity ease 800ms,transform ease 500ms;
    -o-transition: opacity ease 800ms,transform ease 500ms;
    -webkit-transition: opacity ease 800ms,transform ease 500ms;
    transition: opacity ease 800ms,transform ease 500ms;
  }
  
  .toggleSidebar.cartSidebarContainer .widget_shopping_cart ul {
    height: calc(100% - 148px);
    overflow-y: scroll;
    background-color: #fff;
    padding-bottom: 40px;
    padding-left: 0px;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list .mini_cart_item a img {
    height: 70px;
    padding-right: 10px;
    width: 70px;
    float: left;
    margin-left: 0;
    margin-right: 0;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li a.remove {
    position: absolute;
    top: 35%;
    height: 20px !important;
    right: 0px;
    left: unset;
    width: 20px !important;
    text-decoration: none;
    text-align: center;
    line-height: 23px;
    padding: 0 !important;
    background-color: transparent !important;
    opacity: 0;
    -moz-transition: transform 300ms ease, opacity 300ms ease, right 300ms ease, color 300ms ease;
    -o-transition: transform 300ms ease, opacity 300ms ease, right 300ms ease, color 300ms ease;
    -webkit-transition: transform 300ms ease, opacity 300ms ease, right 300ms ease, color 300ms ease;
    transition: transform 300ms ease, opacity 300ms ease, right 300ms ease, color 300ms ease;
    color: transparent !important;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li:hover a.remove {
    -moz-opacity: 1;
    opacity: 1;
    right: 12px;
    left: unset;    
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li a.remove:after,
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li a.remove:before {
    content: "";
    position: absolute;
    background-color: #848484;
    width: 13px;
    height: 2px;
    top: 9px;
    left: 2px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li a.remove:before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li:hover a.removed {
    -moz-opacity: 0;
    opacity: 0;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li a.remove:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li .quantity {
    line-height: 20px;
    font-size: 12px;
  }
  
  .toggleSidebar .cartSidebarWrap ul.cart_list li .quantity {
    float: left;
    font-family: Poppins,sans-serif;
    font-size: 12px;
    line-height: 30px;
    color: #404040;
    font-weight: 500;
  }
  
  .toggleSidebar.cartSidebarContainer .cartSidebarWrap .cart_list li > span {
    float: left;
    margin-left: 10px;
    font-size: 14px;
    width: 165px;
    font-weight: 500;
  }
  
  /* TASTO CLOSED */
  .toggleSidebar.cartSidebarContainer #cart-close-btn:before,
  .toggleSidebar.toggleSidebarWidgetbar #toggle-sidebar-close-btn:before {
    content: "";
    position: absolute;
    width: 2px;
    height: 16px;
    background-color: #333;
    top: 15px;
    left: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .toggleSidebar.cartSidebarContainer #cart-close-btn:after,
  .toggleSidebar.toggleSidebarWidgetbar #toggle-sidebar-close-btn:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #333;
    top: 22px;
    left: 15px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  .toggleSidebar #toggle-sidebar-close-btn:hover,
  .toggleSidebar #cart-close-btn:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  
  /* 0 PRODOTTI NEL CARRELLO */
  .woocommerce-mini-cart__empty-message {
    text-align: center;
    margin-top: 50px;
  }
  
  /*# sourceMappingURL=elegance-pro-woocommerce.css.map */
  