.Button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    -webkit-letter-spacing: 0.4px;
    -moz-letter-spacing: 0.4px;
    letter-spacing: 0.4px;
    white-space: nowrap;
    line-height: 20px;
    position: relative;
    color: var(--theme-grey2);
    background-color: white;
    height: 48px;
    padding: 0 20px;
    border: 1px solid var(--theme-grey3);
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: background-color 200ms ease-in,border 200ms ease-in;
    transition: background-color 200ms ease-in,border 200ms ease-in;
}

.Button:hover {
    background-color: var(--theme-grey5);
}

.Button:active {
    outline: none;
    background-color: white;
    box-shadow: 0 0 6px var(--theme-grey3);
}

.Button_primary {
    color: white;
    background-color: var(--theme-darkBlue-pure);
    border: 1px solid var(--theme-darkBlue-pure);
}

.Button_primary:hover {
    background-color: var(--theme-darkBlue-tint1);
    border: 1px solid var(--theme-darkBlue-tint1);
}

.Button_primary:active {
    background-color: var(--theme-darkBlue-pure);
    border: 1px solid var(--theme-darkBlue-pure);
    box-shadow: 0 0 9px var(--theme-darkBlue-tint1);
}