/* Styles for HK Button Widget */

.hk-button-main {
    text-align: left;
}

.hk-button-main button {
    background-color: #b61e3e;
    border: none;
    color: white;
    height: 45px;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 4px;
    cursor: pointer;
}

.hk-button-main .main-button {
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    z-index: 1;
    transition: all 0.3s ease;
}

.hk-button-main .main-button::before,
.hk-button-main .main-button::after {
    content: "";
    display: inline-block;
    z-index: -2;
    height: 45px;
    border-radius: 4px;
    background-color: #b61e3e;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hk-button-main .main-button::before {
    width: 20px;
    right: -25px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hk-button-main .main-button::after {
    width: 10px;
    right: -40px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hk-button-main .main-button:hover::before {
    right: -1px;
    transform: translateY(-50%);
}

.hk-button-main .main-button:hover::after {
    right: -1px;
    transform: translateY(-50%);
}
