#pusha-btn-new {
    cursor: pointer;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pusha-primary);
    color: #fff;
    box-shadow: 0 18px 28px 0 rgba(0, 0, 0, 0.3);
}

.pusha-btn,
.pusha-btn-secondary,
.pusha-btn-line,
.pusha-btn-line-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 0;
    margin: 0;   
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    height: 35px;
    line-height: 0px;
    padding: 0px 16px;
    position: relative;
    max-width: 100%;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
}

.pusha-btn-large {
    width: 100%;
}

.pusha-btn-add:before {
    content: "";
    margin-right: 5px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    background-image: linear-gradient(white, white), linear-gradient(white, white);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 15% 63%, 63% 15%;
}

.pusha-btn-round {
    border-radius: 50px;
}

.pusha-btn {
    background-color: var(--pusha-primary);
    border: 1px solid var(--pusha-primary);
    color: #fff;
}

.pusha-btn:hover {
    color: #fff;    
    opacity: 0.85;
}

.pusha-btn-secondary {
    background: var(--pusha-secondary);
    color: #fff;
    border: 1px solid var(--pusha-secondary);
}

.pusha-btn-secondary:hover {
    color: #fff;   
    opacity: 0.85;
}

.pusha-btn-line {
    color: var(--pusha-black);
    background-color: #fff;
    border: 1px solid var(--pusha-border);    
}

.pusha-btn-line:hover {
    background: #fff;
    color: var(--pusha-primary);
    border: 1px solid var(--pusha-primary);
}

.pusha-btn-line-secondary {
    color: var(--pusha-primary);
    background-color: #fff;
    border: 1px solid var(--pusha-primary);    
}

.pusha-btn-line-secondary:hover {
    background: var(--pusha-primary);
    color: #fff;
    border: 1px solid var(--pusha-primary);
}

.pusha-btn-green {
    background: var(--pusha-tertiary);
    color: #fff;
    border: 1px solid var(--pusha-tertiary);    
}

.pusha-btn-red {
    background: var(--pusha-app-canceled);
    color: #fff;
    border: 1px solid var(--pusha-app-canceled);   
}


.pusha-btn-disabled,
.pusha-btn-disabled-light {
    pointer-events: none;
}

.pusha-btn-disabled:after,
.pusha-btn-disabled-light:after {
    content: "";
    border-top: 2px solid var(--pusha-primary);
    border-left: 2px solid var(--pusha-primary);
    border-right: 2px solid var(--pusha-primary);
    border-bottom: 2px solid #f0f3fe;
    border-radius: 50%;
    width: 12px;
    margin-left: 10px;
    height: 12px;
    vertical-align: sub;
    display: inline-block;
    -webkit-animation: pusha-spin 1s infinite linear;
    -moz-animation: pusha-spin 1s infinite linear;
    animation: pusha-spin 1s infinite linear;
}    

.pusha-btn-disabled-light:after {
    border-top: 2px solid rgba(255,255,255, 0.5);
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;   
}  

@-moz-keyframes pusha-spin {
    from { -moz-transform: rotate(0deg); }
    to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes pusha-spin {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}
@keyframes pusha-spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(360deg);}
}