.plug-gutter {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    width: 190px;
    height: auto;
    background-color: #FFFFFF;
    border: 1px solid rgba(118, 74, 188, 0.16);
    border-radius: 26px;
    padding: 15px;

    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
}

/* Don't show the gutter on smaller screens */
@media (width < 1280px) {
    .plug-gutter {
        display: none;
    }
}


.plug-gutter.show {
    opacity: 1;
    visibility: visible;
}

.plug-gutter--image {
    width: 100%;
    border-radius: 26px 26px 0 0;
    margin-bottom: 5px;

    img {
        width: 100%;
    }
}

.plug-gutter--top {
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 120%;
    color: #491D90;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.plug-gutter--bottom {
    font-style: normal;
    font-size: 15px;
    line-height: 120%;
    color: #491D90;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plug-gutter--cta {
    display: flex;
    justify-content: center;
    isolation: isolate;
    height: 47px;
    background: #764ABC;
    border-radius: 10px;
    flex: none;
    order: 2;
    margin-top: 10px;
    position: relative;
}

.plug-gutter--button,
.plug-gutter--button:active,
.plug-gutter--button:visited
{
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    height: 47px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plug-gutter--button:hover {
    text-decoration: none;
    color: #a58ec8;
}
