/**
 * Main YITH WooCommerce Wishlist CSS
 *
 * @author Your Inspiration Themes
 * @package YITH WooCommerce Wishlist
 * @version 1.1.2
 */


/* Popup message */
#yith-wcwl-popup-message {
    background: white;
    line-height: 50px;
    padding: 15px;
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    color: #f6f6f6;
    background-color: #292c2e;
    z-index: 10000; /* Thanks WP -.- */
}

/* Wishlist table template */
.wishlist_table {}

.wishlist_table tr td { text-align: center; }
.wishlist_table tr td.product-thumbnail, .wishlist_table tr td.product-name { text-align: left; }
.wishlist_table tr td.product-stock-status span.wishlist-in-stock {
    padding: 3px 5px;
    font-size: 12px;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #4cd05e;
}
.wishlist_table tr td.product-stock-status span.wishlist-out-of-stock {
    padding: 3px 5px;
    font-size: 12px;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background-color: #E81730;
}

/* Wishlist buttons */
.summary .single_add_to_wishlist.button, div.product .woocommerce-price-and-add .single_add_to_wishlist.button { margin: 0px; } 
.yith-wcwl-add-button > a i, .wishlist_table .add_to_cart.button i { margin-right: 10px; }
.wishlist_table .add_to_cart.button {
    margin: 0px;
    padding: 7px 22px;
    display: inline-block;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    border: none;
    border-radius: 0!important;
    -moz-border-radius: 0!important;
    -webkit-border-radius: 0!important;
    background: #47BFE4;
}
.yith-wcwl-add-button > a.button.alt {
    border-radius: 0!important;
    -moz-border-radius: 0!important;
    -webkit-border-radius: 0!important;
}
.wishlist_table .add_to_cart.button:hover {
    color: #292C2E;
    background: #FBD168;
}
.wishlist-empty {
    font-size: 16px;
    line-height: 24px;
    color: #292C2E;
}

/* Share buttons */
.yith-wcwl-share h4 {
    display: none;
}
.yith-wcwl-share ul {
    margin-bottom: 10px;
    margin-left: 0px;
}

.yith-wcwl-share ul, .yith-wcwl-share li { height: 40px; }
.yith-wcwl-share li, .entry-content .yith-wcwl-share li { margin-right: 2px;
        margin-bottom: 5px; }

.yith-wcwl-share li a {
    padding: 5px 13px;
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    color: #fff;
}

.yith-wcwl-share li a:hover { text-decoration: none; }
.yith-wcwl-share li a.facebook {
    background-color: #3b5998;
}
.yith-wcwl-share li a.facebook:before {
    position: absolute;
    top: 11px;
    left: 0;
    font-family: FontAwesome;
    content:"\f09a";
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
}
.yith-wcwl-share li a.twitter {
    background-color: #00aced;
}
.yith-wcwl-share li a.twitter:before {
    position: absolute;
    top: 11px;
    left: 0;
    font-family: FontAwesome;
    content:"\f099";
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
}
.yith-wcwl-share li a.pinterest {
    background-color: #d14836;
}
.yith-wcwl-share li a.pinterest:before {
    position: absolute;
    top: 11px;
    left: 0;
    font-family: FontAwesome;
    content:"\f0d2";
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
}
.yith-wcwl-share li a.googleplus {
    background-color: #cb2027;
}
.yith-wcwl-share li a.googleplus:before {
    position: absolute;
    top: 11px;
    left: 0;
    font-family: FontAwesome;
    content:"\f0d5";
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 14px;
}


/* AJAX loading gif */
.yith-wcwl-add-to-wishlist .ajax-loading {
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    display: inline !important;
    margin-left: 5px;
    vertical-align: middle;
    visibility: hidden;
    width: 16px !important;
    height: 16px !important;
}
#yith-wcwl-form {
    text-align: center;
}
#yith-wcwl-form h2 {
 margin-bottom: 50px;
  padding: 20px;
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  background-color: #fbd168;
}
#yith-wcwl-form .table_wrap {
    text-align: left;
}