.button {
    cursor: pointer;
    padding: 20px 30px;
    display: inline-block;
    font-weight: 600;
    overflow: hidden;
    position: relative;
}
.button::after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 20;
  }
  .button:hover::after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  }
.button-uppercase {
    text-transform: uppercase;
}
.button-small {
    padding: 10px 30px;
    height: 45px;
}
.product-buy-area .button {
    border: none;
    text-transform: uppercase;
    padding: 10px;
    text-align: center;
}
.button-centered {
    margin-left: auto;
    margin-right: auto;
}
.button-red {
    color: white;
    background-color: #e60000;
}
.button-blue {
    color: white;
    background-color: #71b9b2;
}
.product-ask-for-discount  {
    color: #71b9b2;
    border: 1px solid #71b9b2!important;
    background-color: white;
}

.product-item-card.wide .submit-button {
    width: 100%;
}
/*.product-buy-area .submit-button {*/
/*    width: 65%;*/
/*}*/
.callback-button.button {
    padding: 13px 20px;
    text-transform: uppercase;
    font-size: 12px;
}
.callback-button.button img {
    margin-right: 10px;
}
#top_panel_socials a:hover {
    text-decoration: none;
}
.footer_contacts_socials a:hover {
    text-decoration: none;
}
a.button:hover {
    color: white;
    text-decoration: none;
}
