.tsk-wrapper {
    display: flex;
    flex-wrap: wrap;
}
.tsk-toggle-btn {
    display: none;
    margin: 10px;
    color: white;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    border-radius: 15px;     background: linear-gradient(135deg, rgb(94, 252, 232) 10%, rgb(115, 110, 254) 100%);
}
.tsk-sidebar {
        width: 25%;
    padding: 23px 4px 23px 19px;
    background: #f1f1f14f;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.tsk-sidebar h3{font-size: 25px;}
.tsk-products-wrap {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    padding: 0px 15px 15px 15px;
    gap: 20px;
}
.tsk-categories, .tsk-intervals{list-style-type: none !important;padding: 0 0 22px 0em !important;line-height: 43px !important;}
.tsk-categories li, .tsk-intervals li{color: #333333; font-size: 17px;}
.tsk-filter-section{margin-top: 11px;}
.tsk-filter-section h4{font-size: 20px;font-weight: 600; border-bottom: 1px solid #ddd; padding-bottom: 5px;     color: #333;}


.tsk-products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.tsk-card {
    width: calc(33.33% - 20px);
   /* border: 1px solid #ccc;*/
    padding: 15px;
    background: #fff;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.tsk-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
    transition: 0.4s ease;
    position: relative;
    z-index: 1;
}
.tsk-card img:hover {
    mask-image: linear-gradient(-60deg, rgba(0,0,0,0.8) 25%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.8) 75%);
    -webkit-mask-image: linear-gradient(-60deg, rgba(0,0,0,0.8) 25%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.8) 75%);
    mask-size: 400%;
    animation: imageGradientSweep 2s infinite linear;
}
@keyframes imageGradientSweep {
    0% { mask-position: 100% 0; -webkit-mask-position: 100% 0; }
    100% { mask-position: 0 0; -webkit-mask-position: 0 0; }
}
.tsk-subhead {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;font-weight: bold;
}
.tsk-card h4 { font-size: 18px; margin: 10px 0; font-weight: bold; height: 38px; overflow: hidden;}
.tsk-card h4 a{color: #034da2;}
.tsk-card p {
        margin: 5px 0;
    font-size: 15px;
    font-weight: bold;
    color: black; padding-bottom: 0px;
}
.tsk-card p strong{font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    color: black;}

.tsk-btn {
       /* display: inline-block;
    padding: 8px 14px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 15px;
  margin-top: 10px; 
    background: linear-gradient(135deg, rgb(94, 252, 232) 10%, rgb(115, 110, 254) 100%);
    text-align: center;*/
}

.tsk-btn {
  position: relative;
  display: inline-block;
  padding: 8px 14px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 15px;
  background: linear-gradient(135deg, rgb(94, 252, 232) 10%, rgb(115, 110, 254) 100%); /* fallback background */
  overflow: hidden;
  z-index: 1;
  cursor: pointer; margin-top: 10px;
  transition: color 0.3s ease;
      text-align: center;
}

.tsk-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
   background: linear-gradient(135deg, rgb(94, 252, 232) 10%, rgb(115, 110, 254) 100%);
  transition: all 0.5s ease;
  z-index: -1;
}

.tsk-btn:hover::before {
  left: 0;
}

.tsk-btn:hover {
  color: #fff;
}





ul {
    list-style: none;
    padding-left: 0;
}
li {
    cursor: pointer;
    padding: 5px 0;
}
li.active {
    font-weight: bold;
    color: #0073aa;
}
.tsk-pagination {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.page-btn {
           margin: 0 6px;
    padding: 10px 15px;
    border: 1px solid #034da2;
    color: #034da2;
    cursor: pointer;
    border-radius: 32px;
    transition: 0.3s ease;
}
.page-btn.active, .page-btn:hover {
    background: #034da2;
    color: #fff;
}
.icon{}
.icon img{width: 7%;}

.tsk-pagination .page-btn.active {
    color: #fff;
    border-radius: 37px;
    padding: 12px 16px !important;
    background: linear-gradient(135deg, rgb(94, 252, 232) 10%, rgb(115, 110, 254) 100%);
    border: none;
}

@media(min-width: 769px) {
.tsk-btn{width: 100%;}
}

@media(max-width: 768px) {
    .tsk-toggle-btn {
        display: block;
    }
    .tsk-sidebar {
        width: 100%;
        display: none;
    }
    .tsk-sidebar.active {
        display: block;
    }
    .tsk-products-wrap {
        width: 100%;
    }
    .tsk-card {
        width: calc(50% - 20px);
    }
    .tsk-card h4{font-size: 15px !important; height: 30px; overflow: hidden;}
.tsk-products-wrap{padding: 0px 4px 13px 4px !important;}   
.tsk-card{width: calc(50% - 11px) !important;}
  .tsk-sidebar {
    display: none;
    transition: all 0.3s ease-in-out;
}

.tsk-sidebar.open {
    display: block;
}
  
    
    
}


/*Active category*/

.tsk-categories li {
        cursor: pointer;
    padding: 7px 15px;
    margin: 16px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    line-height: 22px;
}

.tsk-categories li:hover {
    background-color: #f0f0f0;
}

.tsk-categories li.active {
    background: linear-gradient(135deg, rgb(94, 252, 232) 10%, rgb(115, 110, 254) 100%);
    color: #fff;
    font-weight: bold;
    transform: scale(1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-color: #005bac; width:fit-content;
}



