.floating_var {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #030303BF 0% 0% no-repeat;
    opacity: 1;
    color: white;
    padding: 15px;
    z-index: 999;
    justify-content: space-between;
}

.floating_var_content {
    display: flex;
}

.floating_var_left {
    width: 75%;
}

.floating_var_right {
    width: 25%;
}

.floating_var p {
    font-size: 30px;
    padding-left: 30px;
    line-height: 2em;
    color: #FFFFFF;
    margin: 5px 0px;
}

.floating_var a {
    display: block;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 18.5em;
    height: 3.5em;
    font-size: 1.4rem;
    padding: 1em;
    line-height: 1.4;
    text-decoration: none;
    text-align: center;
    background: rgba(72, 187, 0, 0.83);
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
}


@media screen and (max-width: 435px) {
    .floating_var a {
        display: block;
        justify-content: center;
        align-items: center;
        margin: auto;
        width: 13.5em;
        height: 2.5em;
        font-size: 1.2rem;
        padding: 0.5em;
        line-height: 1.4;
        text-decoration: none;
        text-align: center;
        background: rgba(72, 187, 0, 0.83);
        color: #fff;
        font-weight: 700;
        border-radius: 20px;
    }
}