.mf__actionbanner {
    border: 1px solid #e4e7ec;
    background-color: #fff;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    justify-content: space-between;
    margin-bottom: 40px;
    min-height: 80px;
}

.mf__actionbanner span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
    font-family: Supreme-Regular;
    font-size: 16px;
    line-height: 100%
}

.mf__actionbanner a {
    background-color: #fff5f6;
    border: 1px solid #feccd6;
    padding: 10px 8px;
    color: #e31b54;
    font-size: 14px;
    line-height: 18px;
    border-radius: 4px;
    max-width: 80px;
    width: 100%;
    text-align: center
}

.mf__actionbanner a:hover {
    background-color: #c01048;
    color: #fff;
    border: 1px solid #c01048
}

@media only screen and (max-width:767px) {
    .mf__actionbanner {
        display: block;
        margin: 16px 16px 0;
        min-height: 80px;
    }

    .mf__actionbanner span {
        font-size: 14px;
    }

    .mf__actionbanner span svg {
        display: flex;
        flex: 0 0 24px
    }

    .mf__actionbanner a {
        margin: 10px auto 0;
        display: flex;
        font-size:16px;
        justify-content: center;
        max-width: 98px;
    }
}
.mf__actionbanner svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}