
/*---CATEGORY (GENERAL)-------------------------------------------------------*/
.product-search-container{}

.product-search-container .ajax-loading-blocker{
    text-align: center
}

/*---CATEGORY - GRID----------------------------------------------------------*/


/*---CATEGORY - LINE----------------------------------------------------------*/


/*---CATEGORY - LIST----------------------------------------------------------*/


/*---CATEGORY - VARIANTS------------------------------------------------------*/



/*---RELATED ITEMS MODAL POPUP------------------------------------------------*/
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    overflow-x: auto;
    overflow-y: scroll;
    z-index: 9999;
}

.modal-dialog {
    min-width: 50%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    padding: 10px;
}



.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -moz-transition: -moz-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: none;
}

.modal-header {
    padding: 15px;
    min-height: 15px;
}

.modal-body {
    text-align: center;
    position: relative;
    padding: 20px;
}

.modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#relatedItemsModal .related-items-modal-dialog {  min-width: 45% }
#relatedItemsModal .modal-title { float: left; }
#relatedItemsModal .pull-right { float: right; }
#relatedItemsModal .modal-footer {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

@media screen and (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
}

