body {
    font-family: NunitoSans, sans;
    font-size: 16px;
    line-height: 1.35em;
    font-weight: 500;
    color: #006332;
    background-color: #ebf3e1;
}

body.home {
    font-size: 21px; 
}

.container-3xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1600px;
}

.navbar > .container-3xl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
}

.navbar-toggler {
    border-color: #fff;
}

.navbar-toggler .navbar-toggler-icon {
    color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.event-tabs .nav-item .nav-link {
    background-color: #fff;    
    color: #000;
    text-decoration: none;;
}

.event-tabs .nav-item .nav-link.active {
    background-color: #006332;
    color: #fff;
}

#header-cart {
    display: inline-block;
    width: 30px;
    height: 30px;
    padding: 17px 2px 0px 2px;
    background: url('../images/header/cart.png') no-repeat center left;
    background-size: 22px;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    text-align: right;
    color: #fff;
    cursor: pointer;
}

#header-cart:hover {
    opacity: 0.8;
}

#header-cart-mobile {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 20px 2px 0px 2px;
    margin-left: 5px;
    margin-right: 5px;
    background: url('../images/header/cart_mobile.png') no-repeat center;
    background-size: 22px;
    font-size: 14px;
    font-family: Barlow;
    font-weight: bold;
    line-height: 20px;
    text-align: right;
    color: #002552;
    cursor: pointer;
}

/*TOASTR*/

#toast-container > div {
    opacity:1;
}

#toast-container > .toast-success {            
    background-color: #0da340;
    color: #000;
}

#toast-container > .toast-info {            
    background-color: #94c359;
}

#toast-container > .toast-error {            
    background-color: #DF3212;
}
  
  
/*CART*/
  
.cart-options .remove-from-cart {
    cursor: pointer;
    color: #ef7f1a;
}

.cart-options .info-txt {
    color: #ef7f1a;
}

.cart-options .remove-txt {
    display: none;
}

.cart-options:hover .info-txt {
    display: none;
}

.cart-options:hover .remove-txt {
    display: inline;
}

.cart-options .add-to-cart {
    color: #ef7f1a;
}

.cart-options .added-to-cart {
    color: #ef7f1a;
}