﻿/*Wishlist/existing entries panel*/
    #wishlist-container {
        background-color: white;
    }
    #wishlist-container > div > h2{
        margin-top: 5px;
        padding-left: 15px;

    }
    @media only screen and (max-width: 1199px) {    /*Mobile*/
        #wishlistSearch {
            width: 91.5%;
        }
    }
    .glyphicon-lg
    {
        font-size:4em
    }
    .wishlist-info-block
    {
        border-right:3px solid #E6E6E6;
        margin-bottom:10px
    }

    .wishlist-info-block .square-box
    {
        border-radius: 5px;
        width:100px;
        min-height:110px;
        margin-right:22px;
        text-align:center!important;
        background-color:#676767;
        padding:20px 0;
        cursor: pointer; 
    }
    .wishlist-info-block.block-info
    {
        border-color:#20819e
    }
    .wishlist-info-block.block-info .square-box
    {
        /*background-color:#20819e;*/   /*blue*/
        background: #f9f9f9;            /*grey*/
        color:#FFF
    }

    .wl-item > .wishlist-info-block:nth-of-type(odd) {
        background: #f9f9f9;
    }

    /*Wishlist item buttons*/
    .wl-buttons {
        visibility: hidden;
    }
    .wl-item:hover .wl-buttons {
        visibility: visible;
    }

    /*Iamge carousel*/
    .wishlist-img-car {
        max-width: 25px;
        max-height: 25px;
        cursor: pointer;
    }

/*END: Wishlist/existing entries panel

/*filter panel*/
    #wishlistSearch {
        margin-bottom: 20px;
    }

    .wl-filter {
        padding: 6px 12px;
    }

    .wl-filter-white {
        color:white;
    }
/*END: filter panel*/

/*New entry*/
    .wl-add {    /*Mobile*/
        margin-right: 0px;
        margin-bottom: 8px;
    }

    @media only screen and (min-width: 1200px) {    /*Desktop*/
        .wl-add {
            margin-right: 60px;
            float: right;
            margin-bottom: 0px;
        }
    }

    .wl-edit-block {
        background-color: white !important;
    }

    .form-select {
        font-size: 14pt;
        padding-top: 15px;
    }

    #btnCancelWishlistEntry,#btnSaveWishlistEntry {
        margin-right: 10px;
        margin-top: 20px;
    }

    .wl-edit-block textarea {  /*Description*/
            width: 300px;
            min-width: 300px;
            max-width: 300px;
            font-size: 14pt;
            /*height: 39px;*/
             height: 129px;
    }

    /*Desktop Only*/
    @media only screen and (min-width: 1200px) {
        .wl-edit-block textarea { /*Description*/
            width: 550px;
            max-width: 550px;
        }

        .wl-edit-category { /*Category*/
            width: 410px;
            min-width: 300px;
            max-width: 410px;
        }

        .wl-edit-title { /*Title*/
            width: 550px;
            min-width: 300px;
            max-width: 550px;
        }
        /*.wl-edit-textarea-container{
             height: 139px;
        }*/
    }
/*Absolute  Position to right of container (desktop only)*/
@media only screen and (min-width: 1200px) {
    #divFilerWishlist_Images { /*Drag/Drop images override*/
        position: absolute;
        top: 60px;
        width: 52%;
        right: 2%;
    }


    .jFiler-items {
        position: absolute;
        top: 0;
    }
}
#divFilerWishlist_Images > .jFiler-input-dragDrop {
    max-height: 120px;
}

#aWishlistNewMobileImg {
    color: white;
}

.wl-edit-block > .backdrop-loader { /*Loader*/
    z-index: 1 !important; /*auto isnt effecting drag/drop image upload container*/
}
/*END: New entry*/