.perex {
    margin: 20px auto;
    font-family: "open-sans-regular", "Arial", sans-serif;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #313131;
  }
  
  .flex {
    display: flex!important;
    align-items: center;
  }
  .my-m {
    margin-top: 1.5rem;
  }
  .my-m {
    margin-bottom: 1.5rem;
  }
  
  .article-author .article-author-img {
    height: 38px;
  }
  
  .relative {
    position: relative!important;
  }
  .mr-s {
    margin-right: 1rem;
  }
  
  .article-author .article-author-img > a:first-child {
    z-index: 4;
  }
  
  .article-author .article-author-img > a {
    position: relative;
    display: block;
    float: left;
  }
  
  .article-author .article-author-image {
    box-shadow: 0 0 0 2px #fff;
  }
  
  .circle {
    border-radius: 50%;
  }
  
  .c-brand, .tab-panel-content-list li a, a {
    color: #cf2528;
  }
  
  .fs-14 {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
  
  article .gallery-single.align-center img {
    margin-right: auto;
    margin-left: auto;
  }
  
  article .gallery-single img {
    display: block;
    margin-bottom: 0.5rem;
    height: auto;
  }
  
  .main-form {
    --product-color: rgb(207, 37, 40);
    --product-color-transp: rgba(207, 37, 40, 0.2);
    --radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
  }
  
  @media screen and (min-width: 968px) {
    .main-form {
      flex-direction: row;
    }
  }
  
  .main-form__left {
    position: relative;
    max-width: 250px;
  }
  
  @media screen and (min-width: 968px) {
    .main-form__left {
      max-width: 300px;
      margin-top: 50px;
    }
  }
  
  article p:not(.perex) {
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }
  
  .main-form__img {
    display: block;
    max-width: 100%;
  }
  
  .p-article__img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 70%;
  }
  
  .p-article__img--half {
    max-width: 70%;
  }
  
  .main-form__right {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    padding: 20px;
    max-width: 600px;
    background-color: var(--product-color-transp);
    width: 100%;
  }
  
  .main-form__prices {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
  
  }
  
  .main-form__price--old {
    opacity: 0.8;
    text-decoration: line-through;
  }
  .main-form__price {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    text-transform: uppercase;
    margin-right: 30px;
    display: block;
  }
  
  .main-form__price--old {
    font-size: 30px;
    text-decoration: line-through;
  }
  
  .main-form__price--new {
    font-weight: 700 !important;
    color: var(--product-color) !important;
    animation: 6s ease-in-out 2s infinite scalePrice;
    font-size: 42px;
    position: relative;
  }
  
  .main-form__price--new::after {
    position: absolute;
    content: '*';
    font-size: 0.5em;
  }
  
  
  .main-form .main-form__field {
    display: block;
    margin-bottom: 20px;
    border: 2px solid var(--product-color);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 16px;
  }
  
  input[type="text"] {
    vertical-align: middle;
    margin: 0;
    border-radius: 2px;
    padding: 5px;
    font-size: 1.3rem;
    line-height: 1.5rem;
    background: #f7f7f7;
  }
  
  .main-form .main-form__field {
    display: block;
    margin-bottom: 20px;
    border: 2px solid var(--product-color);
    border-radius: var(--radius);
    padding: 10px;
    font-size: 16px;
    width: 100%;
  }
  
  .main-form__btn {
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 10px 3px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #fff;
    background-color: var(--product-color);
    transition-property: background-color, color, border-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    cursor: pointer;
  }
  
  .main-form__quantity {
    text-align: center;
  }
  
  .main-form__quantity-wrap {
    padding: 4px;
    background-color: #cf2528;
    border-radius: 5px;
  }
  
  .main-form__quantity .prod-left {
    color: #fff;
    font-weight: 700;
    animation: 1s linear infinite blink;
  }
  
  .cf::after {
    content: " ";
    display: table;
    clear: both;
  }
  
  .main-form__sticker {
    width: 100%;
    height: 100%;
    color: #cf2528;
    fill: currentcolor;
  }
  
  .main-form__discount {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    transform: translate(-50%, -50%);
  }
  
  .main-form__discount-wrap {
    position: absolute;
    left: calc(100% - 90px);
    bottom: calc(100% - 60px);
    width: 90px;
    height: 90px;
    filter: drop-shadow(0 0 5px #333);
    transform: rotate(20deg);
    animation: 4s linear infinite rotate;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(15deg) scale(0.9);
    }
  
    50% {
      transform: rotate(30deg) scale(1.2);
    }
  
    100% {
      transform: rotate(15deg) scale(0.9);
    }
  }
  
  .anz-wrapper {
    display: flex;
    width: 100%;
    font-family: var(--anz-font-sans-serif, "open-sans-regular", sans-serif);
    font-weight: var(--anz-font-weight-default, 400);
    font-size: 1em;
    line-height: 1.4285714286em;
    color: #313131;
  }
  
  .anz-container {
    max-width: 700px;
  }
  
  .anz-container {
    margin: 0 auto;
    width: 100%;
  }
  .anz-wrapper * {
    box-sizing: border-box;
  }
  
  .anz-mt-xl {
    margin-top: 25px;
  }
  
  .anz-justify-content-between {
    justify-content: space-between;
  }
  .anz-align-items-center {
    align-items: center;
  }
  .anz-flex-wrap {
    flex-wrap: wrap;
  }
  .anz-flex {
    display: flex;
  }
  
  .anz-fs-l {
    font-size: 1.7857142857em;
    line-height: 1.12em;
  }
  
  .anz-fs-l {
    margin: 0;
    font-family: var(--anz-font-sans-serif-bold, "open-sans-bold", sans-serif);
    font-weight: var(--anz-font-weight-bold, 400);
  }
  
  .anz-strong {
    font-family: "open-sans-bold", sans-serif;
  }
  
  .anz-pr-m {
    padding-right: 15px;
  }
  .anz-text-nowrap {
    white-space: nowrap;
  }
  .anz-strong {
    font-family: var(--anz-font-sans-serif-bold, "open-sans-bold", sans-serif);
    font-weight: var(--anz-font-weight-bold, 400);
  }
  
  .anz-mb-l {
    margin-bottom: 20px;
  }
  
  .anz-mt-s {
    margin-top: 10px;
  }
  .anz-hr-light {
    background: #ececec;
  }
  .anz-hr {
    border: 0;
    height: 1px;
    background: #e9eaf0;
  }
  
  .comments__list {
    margin-bottom: 40px;
  }
  
  .comment:not(:last-of-type) {
    margin-bottom: 20px;
  }
  
  .comment__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .comment__title {
    font-weight: 700;
    font-size: 17px;
  }
  .comment__content {
    margin-bottom: 10px;
  }
  
  .comment__bottom {
    display: flex;
    justify-content: flex-end;
  }
  
  .comment__icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .comment__svg--star {
    color: #b2b8c8;
  }
  
  .comment__svg {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 2.5px;
    width: 1.084em;
    height: 1.055em;
    fill: currentcolor;
  }
  
  .comment__svg--like {
    color: #91cf96;
  }
  .comment__svg {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 2.5px;
    width: 1.084em;
    height: 1.055em;
    fill: currentcolor;
  }
  
  .comment__svg--dislike {
    color: #f56b62;
  }
  
  .comment__svg {
    display: inline-block;
    vertical-align: baseline;
    margin-right: 2.5px;
    width: 1.084em;
    height: 1.055em;
    fill: currentcolor;
  }
  
  .comment__img {
    display: block;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
  }
  
  .comment__react {
    font-size: 14px;
    color: #cf2528;
    cursor: pointer;
  }
  
  .anz-btn {
    display: inline-block;
    vertical-align: middle;
    border: none;
    border-radius: 4px;
    padding: 7px 15px;
    min-width: auto;
    font-family: var(--anz-font-sans-serif-bold, "open-sans-bold", sans-serif);
    font-weight: var(--anz-font-weight-bold, 400);
    font-size: 0.9285714286em;
    line-height: 1.3846153846em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    color: #313131;
    background: #f0f0f0;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
  }
  
  .anz-btn-primary {
    border-bottom: 2px solid #a21c1e;
    color: #fff;
    background: #cf2528;
    margin: 0 auto;
  }
  
  .btn-animate {
    animation: 2s linear infinite scalePrice;
  }
  
  @keyframes scalePrice {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(1.1);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes blink{
    0%{opacity: 0;}
    100%{opacity: 1;}
    }
  
    .anz-flex-column {
      flex-direction: column;
  }
  
  .anz-flex {
      display: flex;
  }
  
  /*  */
  
  #mc_embed_signup input.email {
    color: #6f6f6f!important;
  }
  
  #mc_embed_signup input.email {
    font-family: "Open Sans","Helvetica Neue",Arial,Helvetica,Verdana,sans-serif;
    font-size: 15px;
    display: block;
    padding: 0 0.4em;
    margin: 0 4% 10px 0;
    min-height: 32px;
    width: 58%;
    min-width: 130px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  #mc_embed_signup input.email {
    font-family: "Open Sans","Helvetica Neue",Arial,Helvetica,Verdana,sans-serif;
    font-size: 15px;
    display: block;
    padding: 0 0.4em;
    margin: 0 4% 10px 0;
    min-height: 32px;
    width: 58%;
    min-width: 130px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  #mc_embed_signup input.email {
    width: 95%!important;
    border-color: #e0e0e0;
    color: #6f6f6f;
    font-size: 14px;
  }
  #mc_embed_signup input {
    border: 1px solid #999;
    -webkit-appearance: none;
  }
  #mc_embed_signup input {
    border: 1px solid #999;
    -webkit-appearance: none;
  }
  
  #mc_embed_signup input.button {
    height: 31px;
    border: none;
  }
  
  .ul-dec {
    font-weight: 700;
  }
  
  .attention {
    text-align: center;
    font-size: 26px;
    border: 2px dashed rgb(207, 37, 40);
    background-color: rgba(207, 37, 40, 0.2);
    padding: 15px;
  }
  
  .form__disc {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: -15px auto 15px;
    color: rgb(207, 37, 40);
  }
  
  .form__bottom {
    text-align: center;
    font-size: 26px;
    background-color: rgba(207, 37, 40, 0.2);
    padding: 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 10px;
  }
  
  .logo img {
    max-width: 498px;
    width: 100%;
  }
  
  .main-form__txt {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
  }
  
  @media (max-width: 1219px) {
    .main-form__prices p {
      margin-right: 0;
    }
  }
  
  @media (max-width: 900px) {
    .logo {
      margin-top: 10px;
    }
  }
  
  @media (max-width: 769px) {
    .main-form__left {
      margin-top: 20px;
    }
  
  }
  
  @media (max-width: 767px) {
    .logo img {
      max-width: 180px;
      width: 100%;
    }
    .icon-burger-desplegable {
      margin-top: 30px;
    }
    .icon-burger-desplegable .icon_burger {
      top: -15px;
    }
  }
  
  
  @media (max-width: 420px) {
    .main-form__price {
      margin-right: 0;
    }
  }