a, a:hover{
    text-decoration: none !important;
}

#menu-header-menu {
    margin-bottom: 0;    
}

.product-table-wintree th, .product-table-wintree thead th{
    font-size: 14px;
    color:#777;
}

.product-table-wintree tbody tr:hover{
    cursor:pointer;    
}

.product-table-wintree tbody tr:nth-child(odd), .product-table-wintree tbody tr:nth-child(odd){
  background: #f1f1f1;
}

.product-table-wintree tbody tr:nth-child(even), .product-table-wintree tbody tr:nth-child(odd):hover {
  background: #f3f3f3;
}

.product-table-wintree tbody tr:nth-child(even):hover{
  background: #f5f5f5;
}

.product-table-wintree tbody tr td{
    font-size:0.9em;
}

.product-table-wintree tbody tr td:last-child{
    text-align:right;
}

.product-table-wintree img{
    max-width:45px;
}

.pagination-wrapper .product-table-pagination{
    display:inline-flex;
}

.pagination-wrapper .product-table-pagination li{
    list-style-type: none;
    padding: 5px 8px;
    border: 1px solid #ddd;
    border-radius: 2px;
    margin-right: 0.5458rem;
    cursor:pointer;
    min-width:35px;
    text-align:center;
}

.pagination-wrapper .product-table-pagination li:hover, .pagination-wrapper .product-table-pagination li.current{
    color:#111;
    border-color:#111; 
}

.pagination-wrapper .product-table-pagination li:last-child {
    margin-bottom: var(--li-mb);
}

.filter-product-wrapper{
    position:relative;
}

.filter-product-wrapper .filter-product-overlay{
    background: rgba(333, 333, 333, 0.8);
    width: 100%;
    height: 100%;
    position: absolute;
    display:none;
}

/****
 * 
 * Filter product_options
 * 
 *****/

.product-main-cat-wrapper .category_wrapper{
    padding-right: 5px;
    padding-left: 5px;
    cursor:pointer;
}

.product-main-cat-wrapper .category_wrapper .category_content{
    background: rgba(122, 166, 44, 1);
    color:#fff;
}

.option-list-wrapper .close{
    float:none;
    position:absolute;
    top:4px;
    right:2px;
}

.option-list-wrapper .qty{
    width: calc(100% - 105px);       
}

.option-list-wrapper .qty::-webkit-outer-spin-button,
.option-list-wrapper .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.option-list-wrapper .single_add_to_cart_button{
    width: 100%;    
}

.add_to_cart_message{
    color: var(--btn-shop-bgcolor);
}

.product-option-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(333, 333, 333, 0.8);
    margin: -1.5em;
    z-index: 99;
}

/******
 * 
 * modal
 * 
 *****/
 
 /* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    margin-top:0px;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content .product_title,
.modal-content .price,
.modal-content .single-breadcrumbs-wrapper,
.modal-content .wd-nav-wrapper,
.modal-content .related-products{
    display:none;
} 

.modal-content .related-products,
.modal-content .product-tabs-wrapper{
    margin-top:2em;
}

.modal-content input[type='number']{
    width:auto;
}

.modal-content .summary-inner .cart{
    margin-bottom:0px;
}

.modal-content .summary-inner .product_meta{
    padding-top: 0px; 
    border-top: none;   
}

.modal {
  --bs-modal-width: 1250px;
}

@media (max-width: 1024px){
    .modal .product-tabs-wrapper .tabs-layout-tabs{
        display: block;
        font-size:0.8em;
    }
    
    .modal .product-tabs-wrapper h3{
        font-size:1.6em;
    }   
} 
 
