.btn,
.btn-secondary,
.btn-line,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    outline: 0;
    transition: all 0.3s;
    height: 48px;
    line-height: 0px;
    padding: 0px 38px;
    position: relative;
    max-width: 100%;
    text-decoration: none;
    border-radius: 150px;      
    font-size: 18px;
    font-weight: 600;
    color: #fff;    
}


.btn-large {
    width: 100%;
}

.btn-medium {
    height: 42px;
    padding: 0px 24px;
}

.btn-round {
    border-radius: 150px;
}

.btn {
    background-color: var(--site-primary);
    border: 1px solid var(--site-primary);
    color: #fff;
}

.btn:hover,
.btn-secondary:hover {
    color: #fff;    
    opacity: 0.85;
}

.btn-secondary {
    background-color: var(--site-black) !important;
    border: 1px solid var(--site-black) !important;
    color: #fff !important;   
}

.btn-third {
    background-color: var(--site-third) !important;
    border: 1px solid var(--site-third) !important;
    color: #fff !important;   
}

.btn-line {
    color: var(--site-primary);
    background-color: transparent;
    border: 1px solid var(--site-primary);
}

.btn-line:hover {
    background: var(--site-primary);
    color: #fff;
    border: 1px solid var(--site-primary);
}