﻿/*
body {
}

button {
    cursor: pointer;
    border: 0;
    margin: 0;
    padding: 10px 20px;
    min-width: 170px;
    border-radius: 25px;
    background-color: #1b6ec2;
    color: white;
    font-family: 'Montserrat-Semibold', Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
}

    button:active,
    button:focus,
    button:hover {
        outline: none;
    }

    button:focus,
    button:hover {
        background-color: #62a6ea;
    }

    button:disabled {
        opacity: .3;
    }

    button.alternative {
        background-color: transparent;
        border: 1px solid black;
        color: black;
    }

        button.alternative:focus,
        button.alternative:hover {
            background-color: rgba(0, 0, 0, .05);
        }

.button-group {
    padding-top: 20px;
}

    .button-group button:not(:first-child) {
        margin-left: 10px;
    }


a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    color: #3D6686;
    line-height: 1.7em;
}
*/