/* Background strip under buttons */
.fdbp-bg {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
	z-index: 1;
}

/* Button wrapper */
.fdbp-wrapper {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    gap: 12px;

    z-index: 999999;
}

.fdbp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 220px;
    padding: 15px 30px;

    background-color: #209000;
    background-image: linear-gradient(-180deg, #50db01 0%, #209000 100%);
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;
    font-family: Roboto, "Open Sans";

    border-radius: 10px;
    text-decoration: none;
    border: 0;
    cursor: pointer;

    box-shadow:
        0 1rem 1.25rem 0 #47a4474a,
        0 -.25rem 1.5rem #209000 inset,
        0 .75rem .5rem rgb(255 255 255 / 40%) inset,
        0 .25rem .5rem 0 #209000 inset;

    transition: all 0.3s ease;
}

.fdbp-btn:hover {
    background-image: linear-gradient(180deg, #ffffff 0%, #edf5ed 100%);
    color: #209000;
	box-shadow: none;
}

.fdbp-wrapper,
.fdbp-bg {
    transition: opacity 0.3s ease;
}

/* Mobile */
@media (max-width: 480px) {
    .fdbp-bg {
        height: 80px;
    }

    .fdbp-btn {
        padding: 10px 16px;
        font-size: 13px;
        min-width: auto;
    }
}
