.sw-button:not(:disabled):not(.disabled) {
    cursor: pointer;
}
.sw-button {
    border: 1px solid #729e01;
    color: #729e01;
    font-weight: 600 !important;
    font-size: 13px !important;
    line-height: 1.4;
    padding: 8px 20px;
    position: relative;
    transition: .2s ease;
    text-transform: uppercase!important;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: none;
    text-decoration: none;
    background-color: transparent;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -moz-font-feature-settings: "liga", "kern";
    text-rendering: optimizelegibility;
}
.sw-button, ::after, ::before {
    box-sizing: border-box;
}

.sw-button:hover {
    text-decoration: none;
    border: 1px solid #99cc33;
    color: #99cc33;
}

.sw-button:focus {
    color: #66ab27;
    text-decoration: none;
    outline: 0 none;
    box-shadow: none;
}