.standard-page-content .btn {
    border-radius: var(--radiusEl);
}

.btn-primary, .btn-primary:hover,
.comment-form-wrapper .new-comment .btn-send, 
.comment-form-wrapper .new-comment .btn-send:hover,
.comment-form-wrapper .new-comment.active .btn-send, 
.comment-form-wrapper .new-comment.active .btn-send:hover,
.btn-success, .btn-success:hover,
.btn.btn-primary.webinar-btn-send, .btn.btn-primary.webinar-btn-send:hover,
.btn.btn-danger.webinar-chat-toggle, .btn.webinar-chat-toggle.btn-success {
    background: var(--btn);
    border: var(--border);
    border-radius: var(--radiusEl);
    color: #FFF;
    margin: 5px !important;
    padding: 10px 20px;
}

.btn-success, .btn-success:hover {
    padding: 10px !important;
    margin: 0 !important;
}

.btn-primary:active,
.comment-form-wrapper .new-comment .btn-send:active,
.comment-form-wrapper .new-comment.active .btn-send:active,
.btn-success:active {
    background: var(--btnPress) !important;
    border-radius: var(--radiusEl);
}

.btn-primary:focus,
.comment-form-wrapper .new-comment .btn-send:focus,
.comment-form-wrapper .new-comment.active .btn-send:focus,
.btn-success:focus {
    background: var(--btn);
    border-radius: var(--radiusEl);
    -webkit-box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--btn) !important;
    -moz-box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--btn);
    box-shadow: 0 0 0 2px #FFF, 0 0 0 4px var(--btn);
    -webkit-appearance: none;
    outline: none !important;
}

.btn.btn-primary.webinar-btn-send, .btn.btn-primary.webinar-btn-send:hover {
    height: fit-content;
    margin-left: 0 !important;
}

.btn.btn-danger.webinar-chat-toggle {
    background: #FF0000;
    height: fit-content;
    float: right;
}

.btn.webinar-chat-toggle.btn-success {
    background: #199C68;
    height: fit-content;
}


/*Кастомная кнопка*/
.button.button--primary {
    all: unset;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
    text-transform: uppercase;
    color: #FFFFFF;
    white-space: nowrap;
    padding: 0 28px;
    height: 48px;
    position: relative;
    transform: skew(-16deg);
    -webkit-transform: skew(-16deg);
    text-decoration: none;
}
.button.button--primary .button__body {
    position: relative;
    transform: skew(14deg);
    -webkit-transform: skew(14deg);
    z-index: 1;
}

.button.button--primary > .button__bg {
    display: block;
    background: #1E1E1E;
    position: absolute;
    height: 33.33%;
}

.button.button--primary > .button__bg--top {
    width: calc(100% - 10px);
    top: 0;
    left: 0;
    border-radius: 2px 2px 0 0;
    transform: translate(0, 1px);
    transition: width 0.3s;
}

.button.button--primary > .button__bg--mid {
    top: 50%;
    border-radius: 0 2px 0 2px;
    transform: translate(0, -50%);
    left: 0;
    right: 0;
}

.button.button--primary > .button__bg--bot {
    width: calc(100% - 10px);
    bottom: 0;
    right: 0;
    border-radius: 0 0 2px 2px;
    transform: translate(0, -1px);
    transition: width 0.3s;
}

.button.button--primary:hover > .button__bg--top,
.button.button--primary:hover > .button__bg--bot {
    width: 100%;
}