.btn {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 10px 22px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: none;
    text-transform: none;
    border: 3px solid;
    border-radius: 30px;
    background-color: transparent;
    color: inherit;
    overflow: visible;
    /* Disables the default callout shown when you touch and hold a touch target  */
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Button design types */
/* Primary */
.btn--primary {
    color: #fff;
    background: #0055ff;
    border-color: #0055ff;
}
.no-touchevents .btn--primary:hover,
.touchevents .btn--primary:hover,
.touchevents .btn--primary:active,
.touchevents .btn--primary:focus,
.btn--primary.btn--is-active,
.btn--primary:focus {
    color: #fff;
    background: #003399;
    border-color: #003399;
}
.btn--primary:disabled,
.no-touchevents .btn--primary:disabled:hover {
    color: #808b8f;
    background: #c0c5c7;
    border-color: #c0c5c7;
    opacity: .75;
}
/* Primary 2 */
.btn--primary-2 {
    color: #0055ff;
    background: #fff;
    border-color: #fff;
}
.no-touchevents .btn--primary-2:hover,
.touchevents .btn--primary-2:hover,
.touchevents .btn--primary-2:active,
.touchevents .btn--primary-2:focus,
.btn--primary-2.btn--is-active,
.btn--primary-2:focus {
    color: #003399;
    opacity: .75;
}
.btn--primary-2:disabled,
.no-touchevents .btn--primary-2:disabled:hover {
    color: #808b8f;
    background: #fff;
    border-color: #808b8f;
    opacity: .75;
}
/* Primary 3 */
.btn--primary-3 {
    color: #fff;
    background: #3c3c3b;
    border-color: #3c3c3b;
}
.no-touchevents .btn--primary-3:hover,
.touchevents .btn--primary-3:hover,
.touchevents .btn--primary-3:active,
.touchevents .btn--primary-3:focus,
.btn--primary-3.btn--is-active,
.btn--primary-3:focus {
    color: #fff;
    background: #003399;
    border-color: #003399;
}
.btn--primary-3:disabled,
.no-touchevents .btn--primary-3:disabled:hover {
    color: #808b8f;
    background: #3c3c3b;
    border-color: #3c3c3b;
    opacity: .75;
}

/* Secondary */
.btn--secondary {
    color: #0055ff;
    border-color: #0055ff;
}
.no-touchevents .btn--secondary:hover,
.touchevents .btn--secondary:hover,
.touchevents .btn--secondary:active,
.touchevents .btn--secondary:focus,
.btn--secondary.btn--is-active,
.btn--secondary:focus {
    color: #fff;
    background: #003399;
    border-color: #003399;
}
.btn--secondary:disabled,
.no-touchevents .btn--secondary:disabled:hover {
    color: #808b8f;
    background: #fff;
    border-color: #808b8f;
}
/* Secondary 2 */
.btn--secondary-2 {
    color: #fff;
    background: transparent;
    border-color: #fff;
}
.no-touchevents .btn--secondary-2:hover,
.touchevents .btn--secondary-2:hover,
.touchevents .btn--secondary-2:active,
.touchevents .btn--secondary-2:focus,
.btn--secondary-2.btn--is-active,
.btn--secondary-2:focus {
    color: #003399;
    background: #fff;
    opacity: .75;
}
.btn--secondary-2:disabled,
.no-touchevents .btn--secondary-2:disabled:hover {
    color: #fff;
    background: transparent;
    opacity: .75;
}

/* Minor */
.btn--minor {
    color: #333;
    padding: 11px 24px;
    border: 2px solid;
}
.no-touchevents .btn--minor:hover,
.touchevents .btn--minor:hover,
.touchevents .btn--minor:active,
.touchevents .btn--minor:focus,
.btn--minor.btn--is-active,
.btn--minor:focus {
    color: #fff;
    border-color: #777;
    background-color: #777;
}

/* Icons */
.btn--has-icon {
    display: inline-flex;
    align-items: center;
}
.btn__icon,
.btn__icon-wrap {
    margin-right: 8px;
    width: 15px;
    height: 15px;
    pointer-events: none;
}
.btn__icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn__icon-wrap .btn__icon {
    margin-right: 0;
}
.btn__icon.svg-icon--arrow {
    transform: rotate(-90deg);
}

/* Small */
.btn--small {
    font-size: 90%;
}
.btn--minor.btn-small {

}

/* Has icon */
.btn--has-icon {

}

/* States */
/* make sure to maintain order, we profit from precedence */
.no-touchevents .btn:hover,
.touchevents .btn:hover,
.touchevents .btn:active,
.touchevents .btn:focus,
.btn:active,
.btn--is-active,
.btn:focus {
    text-decoration: none;
    outline: none;
}

@media ( min-width: 1200px ) {
    .btn {
        padding: 14px 27px;
    }

    /* Minor */
    .btn--minor {
        padding: 11px 24px;
    }
}
