.btn,
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: 50px;
    line-height: 0px;
    padding: 0px 26px;
    position: relative;
    max-width: 100%;
    text-decoration: none;
    border-radius: 0px;      
    font-size: 20px;
    font-weight: var(--site-weight);
    color: #fff;    
    width: fit-content;
    font-family: var(--font-heading);
}


.btn-large {
    width: 100%;
}

.btn-medium {
    height: 40px;
    padding: 0px 20px;
}

.btn-round {
    border-radius: 150px;
}

.btn {
    background-color: var(--site-primary);
    border: 1px solid var(--site-primary);
    color: #fff;
}

.btn-white {
    background-color: #fff;
    border: 1px solid #fff;
    color: #000;
}

.btn:hover,
.btn-secondary:hover {
    color: #fff;    
    opacity: 0.85;
}