/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 16 2026 | 10:43:57 */
.fixed-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff;
    padding: 15px 10px;
    display: flex;
    justify-content:space-around;
    align-items: center;
    z-index: 9999;
    font-family: inherit;
}

.bottom-text {
    font-size: 18px;
	width:70%;
	vertical-align:middle;
	text-align:left;
}

.bottom-btn {
    background: #eb7100;
    color: #ffffff;
    padding: 8px 18px;
	width:30%;
    border-radius: 4px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
	font-weight:400;
}

.bottom-btn:hover {
    background: #ffffff;
}

@media (max-width: 768px) {
    .fixed-bottom-bar {
         flex-direction: row;
/*         gap: 5px; */
        text-align: center;
    }

    .bottom-btn {
        width: 50%;
        text-align: center;
    }
	
}