:root {
    --light-green: #e8f2ea;
    --secure-green: #1dbf73;
    --dark-green: #589d62;
    --dark-gray: #231f20;
    --text-gray: #333333;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-1 {
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.line-clamp-4 {
    -webkit-line-clamp: 4;
    line-clamp: 4;
}

.line-clamp-5 {
    -webkit-line-clamp: 5;
    line-clamp: 5;
}

a.main-link-green {
    background-color: #1dbf73;
    color: #fff;
    font-size: 1rem;
    border-color: #1dbf73;
    box-shadow: -1px 0 9px #aaa;
    padding: 5px 20px;
    border-radius: 2em;
    line-height: 1.6;
    font-weight: var(--btn-font-weight);
    transition: color .3s ease-in-out, background-color .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;

    &:hover, &:focus {
        background-color: white;
        color: #231f20;
        border-color: #ddd;
    }
}

@media screen and  (min-width: 1024px) {
    a.main-link-green {
        font-size: 1.25rem;
    }
}

/*hide pagination dots in product page*/
.wd-nav-pagin-wrap{
    display: none;
    visibility: hidden;
}