/* buttons */

.btn {
    font-weight: 400;
    font-size: 18px;
    border-radius: 25px;
    border: solid 1px;
    padding: 10px 25px;
}

.btn-add-to-cart {
    background: #89c45e;
    border-color: #89c45e;
    color: #fff;
    -webkit-transition: all .3s; -moz-transition: all .3s; transition: all .3s;
}

.btn-add-to-cart svg g {
    fill: #fff;
}

.btn-add-to-cart:hover {
    background:#96d16c;
    color: #fff;
}

.btn-g-green {
    background: transparent;
    border-color: #89c45e;
    color: #89c45e;
    -webkit-transition: all .3s; -moz-transition: all .3s; transition: all .3s;
}

.btn-g-green:hover {
    background: #89c45e;
    border-color:#89c45e;
    color: #fff;

}

.btn-g-black-lg {
    font-weight: 400;
    font-size: 18px;
    color: #232323;
    letter-spacing: 1.05px;
    line-height: 19px;
    border-radius: 25px;
    border: solid 1px #000;
    padding: 15px 35px;
}