/*--------------------------------------------------------------
## Wishlist
--------------------------------------------------------------*/



footer li.openWishlist
{
    display: none;
}


body.wishlistOpen
{
    overflow-y: hidden;
}
body.wishlistOpen .site-container
{
    overflow-y: hidden;
    height: 100vh;
    position: relative;
}


.wishlist {
    display: block;
    z-index: 10000;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.5s ease-in-out 0s, left 0s ease-in-out 1s;
    overflow-y: scroll;

}

.wishlist-inner
{
    position: relative;
    background-image: url(../img/bgs-bkd.png);
    background-color: #f8f8f8;
    max-width: 900px;
    margin: 0 auto;
    padding: 1px 0 50px 0;
}

@media (min-width:768px)
{
    .wishlist {
        padding-top: 5%;

    }

    .wishlist-inner {

    }
}

.wishlist.open
{
    display: block;
    left: 0;
    opacity: 1;
    transition: opacity 0.5s ease-in-out 0s, left 0s ease-in-out 0s;
}


.wishlist-content {


    width: 100%;
    margin: 0 auto;
    list-style: none;
    /* text-align: center; */
    /* background: transparent; */
    /* margin-top: -3rem; */

}

@media (min-width:768px)
{
    .wishlist-content
    {
        width: 700px;
    }
}



.wishlist .wishlist-close {
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 200;
    cursor: pointer;
    font-size: 50px;
}

.wishlist .wishlist-close a i {
    transition: all 0.47s cubic-bezier(0.3, 1, 0.3, 0.95) 0s;
    -webkit-transition: all 0.47s cubic-bezier(0.3, 1, 0.3, 0.95) 0s;
    color: rgba(115, 115, 115, 0.9);
}

.wishlist .wishlist-close a:hover i {
    color: rgba(0,0,0,1);
    transform: rotate(90deg) translateZ(0);
    -webkit-transform: rotate(90deg) translateZ(0);
}

.wishlist-counter
{
    background-color: #3a3a3a;
    color: #8a8989;
    width:20px;
    height:20px;
    line-height:20px;
    text-align:center;
    position:absolute;
    top:6px;
    right:6px;
    transition: all 0.3s ease-in-out 1s;
    font-weight: bold;
    font-size: 11px;
    transform: skew(-12deg, 0deg);
}
.wishlist-counter.active
{
    background-color:#e70000;
    color:white;
}

/*--------------------------------------------------------------
##
--------------------------------------------------------------*/

.wishlist h3
{
    font-size: 24px;
    margin-top: 0;
    padding: 30px 30px 0 30px;
}

.wishlist h2.title
{
    margin: 60px 0 40px;
    text-align: center;
    font-size: 40px;
}

.wishlist-clear
{
    float: right;
}

.wishlist .item-list,
.wishlist .item-list ul,
.wishlist .item-list li
{
    margin: 0;
    padding: 0;
    list-style: none;
}

.wishlist .item-list ul
{
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    font-size: 16px;
}

.wishlist .item-list ul strong
{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
}

.wishlist .item-list:after
{
    content:"";
    display:block;
    clear:both;
    height:0;
    width:0;
}
.wishlist .item-list {
    display: flex;
    flex-wrap: wrap;
}

@media (min-width:768px)
{
    .wishlist .item-list {
        padding: 0 25px;
    }
}

.wishlist .item-list .item
{
    position: relative;
    border:1px solid #ccc;
    background-color: #ffffff;
    transition: background-color 1s ease-in-out 0.5s, opacity 0.5s ease-in-out 0s, left 0.5s ease-in-out 0s;
    padding: 20px;
    margin:5px 30px;
    flex-grow: 1;
    left:  0;
    text-align: center;
}

@media (min-width:768px)
{
    .wishlist .item-list .item
    {
        flex-basis: calc(50% - 10px);
        flex-grow: 0;
        margin:5px;

    }
    .wishlist .item-list .item:nth-of-type(odd)
    {
        clear:left;
    }
}

.wishlist .item-list .item.new
{
    background-color: rgb(194, 238, 255);
    transition: 0s;
    opacity:0;
}

.wishlist .item-list .item.deleting
{
    color: #bbb;
    filter: grayscale(100%);
    border-color: #e2e2e2;
    /* margin-left: -30px; */
    position: relative;
    left:  5px;
    opacity: 0.2;
}

.wishlist .item-list .item .price
{
    font-size: 22px;
    color: #036d00;
}

.wishlist .item-list .item .sku
{
    font-size: 12px;
}

.wishlist .item-list .item h5
{
    margin:0 0 10px;
    padding: 20px 0 0;
    line-height: 1.4em;
    font-weight: 400;
    color: #555;
}

.wishlist .item-list .item.deleting h5
{
    color: #bbb;
}

.wishlist .item-list .item .btn
{
    position: absolute;
    top: 10px;
    right: 10px;
    color:#949494;
    background-color:#fff;
    border:1px solid #d0d0d0;
    border-radius: 50%;
    padding: 5px;
    width: 2em;
    height: 2em;
    cursor: pointer;
}
.wishlist .item-list .item .btn:hover
{
    color:#ffffff;
    background-color:#ff3b33;
    border-color:#ff3b33;
}
.wishlist .btn-enquire
{
    color: #fff;
    background-color: #206531;
    font-weight: bold;
    width: 49%;
    margin-right: 1%;
    display: inline-block;
    padding: 20px 10px;
    margin-top:10px;
    cursor: pointer;
    border: 1px solid #206531;
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 400;
}

.wishlist .btn-enquire:hover
{
    background-color: #2f9141;
    border-color: #2f9141;
}

.wishlist .btn-enquire.closeWishlist
{
    color: #206531;
    background-color: #fff;
    border-color: #206531;
    margin-right: 0;
    margin-left: 1%;
}

.wishlist .btn-enquire.closeWishlist:hover
{
    background-color: #fff;
    border-color: #2f9141;
}

.wishlist .userfields
{
    margin-top:20px;
}

.wishlist .input-group-label
{
    min-width: 90px;
    font-size: 14px;
    justify-content: center;
    background: #f1f1f1;
    text-transform: uppercase;
    font-weight: 400;
    font-family: 'Oswald', Helvetica, Arial, sans-serif;
}

.wishlist input,
.wishlist textarea {
    background: #f1f1f1;
    border-left: 0;
    box-shadow: none;
}

.wishlist .userfields
{
    padding: 0 30px 30px;
}
.wishlist .thumb
{
    width: 100%;
    height: 160px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #fff;
}

/*--------------------------------------------------------------
##
--------------------------------------------------------------*/

.out-of-stock {
  color: #bb0000 !important;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  background: #bb000024;
  padding: 7px 15px;
  width: 217px;
  margin: 15px auto;
  text-align: center;
  border-radius: 7px;
  font-family: Oswald, sans-serif;
}

.out-of-stock.left {
  margin-left: 0;
}