.button {
    display: inline-flex;
    align-items: center;
    border-radius: 28px;
    padding: 0 32px;
    height: 42px;
    border: none;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    text-transform: uppercase;
    border: 2px solid #3C72CC;
    overflow: hidden;
    text-align: center;
    z-index: 1;
    position: relative;
    cursor: pointer;
    -webkit-transition: background .4s ease, -webkit-box-shadow .4s ease;
    transition: background .4s ease, -webkit-box-shadow .4s ease;
    -o-transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease;
    transition: box-shadow .4s ease, background .4s ease, -webkit-box-shadow .4s ease;
}

.button:hover {
    background: #fff;
    color: #3C72CC;
}

.button.fill {
    background: #3C72CC;
    border: 2px solid #3C72CC;
    color: #fff;
}

button:disabled.button.fill{
	opacity: .6;
}

.button.fill:hover {
    background: #fff;
    color: #3C72CC;
}