#sticky-js {
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    display: flex;
    z-index: 1000;
    justify-content: center;
}

#sticky-js._bsa_hide {
    display: none;
}

#sticky-js .native-hide {
    cursor: pointer;
    position: absolute;
    top: -6px;
    right: -6px;
    line-height: 1;
    font-size: 12px;

    border-radius: 50%;
    padding: 4px 5.42px;
}

#sticky-js #_custom_ {
    position: fixed;
    bottom: 60px;

}

#sticky-js .sticky-bar {
    display: flex;
    padding: 15px 20px;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: inset 0 0 2px hsla(0, 0%, 0%, .15);
    text-decoration: none;

    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

#sticky-js .native-img {
    margin-right: 20px;
    max-height: 40px;
    line-height: 0;
}

#sticky-js .native-main {
    display: flex;
    margin: 0 auto;

    justify-content: center;
    flex-grow: 1;
    flex-flow: row nowrap;
    align-items: center;
}

#sticky-js .native-details {
    display: flex;
    margin-right: 20px;

    flex-flow: column nowrap;
}

#sticky-js .native-tagline {
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 9px;
    line-height: 1;
}

#sticky-js .native-desc {
    max-width: 600px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.4;
}

#sticky-js .native-cta {
    padding: 10px 16px;
    border-radius: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 10px;
    line-height: 1;
    transition: all .3s ease-in-out;
    transform: translateY(-1px);
}

#sticky-js .native-via {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 5px 10px;
    border-top: 0;
    border-top-left-radius: 3px;
    background: repeating-linear-gradient(-45deg, transparent, transparent 5px, hsla(0, 0%, 0%, .025) 5px, hsla(0, 0%, 0%, .025) 10px) hsla(203, 11%, 95%, .4);
    color: #444;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 600;
    font-size: 8px;
    line-height: 1;
}


@media only screen and (min-width: 320px) and (max-width: 759px) {

    #sticky-js,
    #sticky-js .native-main {
        flex-flow: column nowrap;
    }

    #sticky-js .native-img,
    #sticky-js .native-details {
        margin: 0;
    }

    #sticky-js .native-img {
        display: none;
    }

    #sticky-js .native-company {
        letter-spacing: 1px;
    }

    #sticky-js .native-details {
        text-align: left;
        font-size: 14px;
    }

    #sticky-js .native-cta {
        display: none;
    }
}


