/*
Brand rules for SEEK apply btn implementation:
No styles to be adjusted except width of button if required.
- Min width: 230px
- Fixed height: 45px

                  Note:
                  Button uses svg logo for retina screen crispness.
    Falls back to png for IE8 and below due to lack of support. */
.seek-apply-btn {
    display: block;
    width: 230px;
    height: 45px;
    line-height: 45px;
    background: #e60278;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 2px 0 rgba(64,64,64,0.5);
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    font-family: Helvetica, Arial;
}
.seek-apply-btn:hover {
    background: #fd0585;
    box-shadow: 0 1px 2px 0 rgba(64,64,64,0.4);
}
.seek-apply-btn:active {
    background: #cd026b;
    box-shadow: 0 1px 2px 0 rgba(64,64,64,0.7);
}
.seek-apply-btn__image {
    display: inline-block;
    height: 30px;
    width: 75px;
    margin: -1px 0 0 9px;
    vertical-align: middle;
    background: url(seek-apply-with-logo.svg) no-repeat;
    background-size: 100% 100%;
}
