/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 22 2025 | 16:46:31 */
:root {
  --primary: #b6d14b;
  --secondary: #222;
}


a:focus{
	outline: none !important;
}


/* Banner */

button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    padding: 0;
}
button.slick-prev.pull-left.slick-arrow {
    left: 20px;
}

button.slick-next.slick-arrow {
    right: 20px;
}

button.slick-arrow:hover {
    background: var(--secondary);
}

ul.slick-dots {
    margin: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

ul.slick-dots li button {
    display: none;
}

ul.slick-dots li {
    width: 10px;
    height: 10px;
    border-radius: 100px;
    margin: 0 2px;
    background: var(--primary);
}

ul.slick-dots li.slick-active {
    background: var(--secondary);
}


/* Product detail page */
div#tab-description h1, div#tab-description h2 {
    margin-top: 0 !important;
}