#ribbon {
    display: none;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    z-index: 2147483647;
    bottom: 60px;
    left: 50px;
    right: 50px;
    padding: 50px;
    border-radius: 20px;

    /* Background and border */
    border: 1px solid #c0c0c0;
    background-color: rgba(255, 255, 255, 1.0);
}

.ribbon-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

#ribbon-submit {
    float: right;
    width: auto;
    padding: 0px 20px;
    border-radius: 10px;
    margin: 0px 10px;
    appearance: none;
    -moz-appearance: none;
    border: 0px;
    height: 44px;
    line-height: 44px;
    cursor: pointer;
    z-index: 10;

    /* Font size */
    font-size: 18px;

    /* Color */
    background-color: #a6b552;
    color: #fff;
}

#ribbon-refuse {
    width: auto;
    height: 44px;
    line-height: 44px;
    padding: 0px 20px;
    border-radius: 10px;
    margin: 0px 10px;
    appearance: none;
    -moz-appearance: none;
    border: 0px;
    cursor: pointer;
    z-index: 10;
    /* Font size */
    font-size: 18px;
    color: black;
    background-color: #eeeeee;
}

#privacy-policy-link {
    text-decoration: underline;
    cursor: pointer;
}

#privacy-policy-link:hover {
    opacity: 0.7;
}


.ribbon-button:hover {
    cursor: pointer;
    opacity: 0.7;
}

#ribbon p {
    float: left;
    width: 70%;
    max-width: 650px;
    margin: 0px;

    /* Color */
    color: #000;

    /* Font size */
    font-size: 18px;
}

#ribbon p a {
    text-decoration: underline;
    cursor: pointer;
    /* Color */
    color: #000;
}

@media (max-width: 600px) {
    #ribbon {
        text-align: center;
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

    #ribbon p {
        width: 100%;

        /* Font size */
        font-size: 14px;
    }

    #ribbon-submit {
        margin: 0 10px;
        align: center;
        float: none;
        margin-top: 30px;
        /* Font size */
        font-size: 14px;
    }

    #ribbon-refuse {
        margin: 0 auto;
        align: center;
        float: none;
        margin-top: 30px;
        font-size: 14px;
    }
}

@media (max-width: 428px) {
    #ribbon {
        padding: 20px;
    }

    .ribbon-buttons {
        flex-direction: column;
        width: 100%;
        /* justify-content: flex-end; */
    }

    #ribbon-submit {
        width: 100%;
        margin: 10px 2px;
    }

    #ribbon-refuse {
        width: 100%;
        margin: 10px 2px;
    }
}

#hubspot-messages-iframe-container {
    z-index: 2147483646 !important;
}