/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.btn-add-cart {
    background-color: #ffd814;
    border-radius: 14px;
    border: none;
    color: #111;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
}

.btn-add-cart:hover {
    background-color: #cfa12a;
    border-color: #9c7e31;
}

.btn-add-cart a {
    color: inherit;
    /* Inheritará a cor do texto do botão */
    text-decoration: none;
    /* Remove o sublinhado do link */
    display: block;
    /* Faz o link preencher o botão */
}


.popup-zrg {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    height: 100%;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    visibility: hidden;
    width: 100%;
    z-index: 9999999;
  }
  .popup-zrg .popup_content {
    background-color: #fff;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 500px;
  }
  @media (max-width: 767px) {
    .popup-zrg .popup_content {
      width: 300px;
    }
  }
  .popup-zrg .popup_content.newsletter {
    width: 800px;
  }
  @media (max-width: 767px) {
    .popup-zrg .popup_content.newsletter {
      width: 300px;
    }
  }
  .popup-zrg .popup_content.newsletter figure {
    position: absolute;
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: -1;
  }
  .popup-zrg .popup_content.newsletter figure img {
    height: 100%;
    width: auto;
  }
  .popup-zrg .popup_content.newsletter .content {
    height: 100%;
    padding: 120px 60px;
    text-align: center;
    display: flex;
    align-items: center;
    background-color: #fff;
  }
  @media (max-width: 767px) {
    .popup-zrg .popup_content.newsletter .content {
      padding: 30px 30px 15px 30px;
      height: auto;
    }
  }
  .popup-zrg .popup_content.newsletter .content .wrapper {
    width: 100%;
  }
  .popup-zrg .popup_content.newsletter .content .wrapper h3 {
    font-size: 21px;
    font-size: 1.3125rem;
    margin-top: 25px;
  }
  .popup-zrg .popup_close {
    color: #ffffff;
    cursor: pointer;
    display: block;
    text-align: center;
    text-decoration: none;
    background: #000;
    width: 53px;
    height: 25px;
    line-height: 27px;
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
  }
  .popup-zrg .popup_close:hover {
    background: #cc0000;
  }

