﻿.btn {
    border: 2px solid;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: all ease 250ms;
    min-width: 175px;
    min-height: 45px;
    border-radius: 0;
    font-weight: 700;
    margin: 30px 0px;
    padding: 10px 20px;
}

    .btn:disabled, .btn.disable, .btn.disabled {
        cursor: not-allowed !important;
        opacity: 0.5;
    }
    
    .btn.hollow {
        background: transparent !important;
    }

    .btn:focus {
        outline: none;
        box-shadow: none;
    }

.btn-purple:hover {
    background-color: #7e3e71;
    color: #fff;
}

.btn-blue:hover {
    background-color: #06377a;
    color: #fff;
}

.btn-grey {
    color: #0A3045 !important;
    border-color: #8E8E8E !important;
}

.btn-grey:hover {
    background-color: #8E8E8E;
    color: #fff !important;
}

.btn-white:hover {
    background-color: #fff;
    color: #06377a;
}

.btn-yellow:hover {
    background-color: #fedf33;
    color: #06377a;
}

.yellow.btn-link:hover {
    color: #fedf33 !important;
    border-color: #fedf33 !important;
}

@media screen and (min-width: 1920px) {
    .btn {
        font-size: 0.729vw;
        line-height: 1.146vw;
        margin: 1.563vw 0px;
        padding: 0.521vw 1.042vw;
        min-width: 9.115vw;
        min-height: 2.344vw;
        border: 0.104vw solid;
    }
}

