/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Jan 18, 2016, 10:39:31 AM
    Author     : gary
*/

#spyder-tabs
{
    margin:20px;
}
#spyder-tabs .ui-tabs-nav
{
    margin-bottom:0px;
}
#spyder-tabs .ui-tabs-nav li
{
    display:inline-block;
    margin-bottom:0px;
    border-left:1px solid grey;
    border-top:1px solid grey;
    border-right:1px solid grey;
}
#spyder-tabs .ui-tabs-nav li a
{
    color:inherit;
    text-decoration: none;
    display:block;
    padding:10px 30px;
}
#spyder-tabs .ui-tabs-nav li.ui-tabs-active
{
    color:#fff;
    background-color:grey;
}
#spyder-tabs .ui-tabs-panel
{
    border:1px solid grey;
    padding:30px;
}
.list-table
{
    border:1px solid grey;
    border-collapse: collapse;
}
.list-table th, .list-table td
{
    border:1px solid grey;
    padding:10px 30px;
}
.list-table td.clicky
{
    cursor:pointer;
}
.button
{
    
}

div.spyder_mobile_categories_dropdown span.select2-container{
    border: 1px solid #ffcc33;
    border-radius: 0.25em;
}

/* --spyder wc filters styles-- */
#spyder_wc_filter_form{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}
label#spyder_wc_search, label#spyder_wc_brand, label#spyder_wc_orderby, label#spyder_wc_category {
    width: 90%;
    margin-bottom: 5px;
}
#spyder_wc_filter_form input[type="submit"]{
    width: 90% !important;
    cursor: pointer;
}

@media only screen and (min-width: 1024px){
    #spyder_wc_filter_form{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    label#spyder_wc_search {
        width: 100%;
    }
    label#spyder_wc_brand, label#spyder_wc_orderby, label#spyder_wc_category, #spyder_wc_filter_form input[type="submit"] {
        width: 33% !important; /* 24 for four col */
    }
}
/* --!spyder wc filters-- */

/* --attribute terms list-- */
ul.spyder_terms_list {
    list-style: none !important;
    display: grid;
    gap: 20px 0;
    flex-wrap: wrap;
    grid-template-columns: repeat(1, 1fr);
}

li.spyder_term {
    border-radius: 0.25em;
    text-align: center;
    padding: 20px 10px;
    margin: 0 10px 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

li.spyder_term .spyder_term_info{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-start;
    gap: 15px;
}

#mainContent .spyder_term .spyder_term_featured_image {
    height: 300px;
    object-fit: cover;
}

.spyder_term .spyder_term_spacer {
    width: 80%;
    border-bottom: 1px solid;
    margin: 0 auto;
}

@media only screen and (min-width: 768px){
    ul.spyder_terms_list{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (min-width: 1024px){
    ul.spyder_terms_list{
        grid-template-columns: repeat(4, 1fr);
    }
}
/* --!attribute terms list-- */