.tp-mobile-buttons {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9999;

    display: none;

    box-sizing: border-box;
	
	background: transparent;
}

.tp-mobile-buttons.tp-visible {
    display: flex;
}

.tp-mobile-buttons.tp-position-top {
    top: 0;
}

.tp-mobile-buttons.tp-position-bottom {
    bottom: 0;
}

.tp-mobile-button {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 8px 0px;

    text-decoration: none;
    font-size: 18px;
	text-transform:uppercase;
    font-weight: 400;

    transition: all 0.2s ease;
}
.tp-mobile-button:nth-child(1) { background:#25D366; color:#FFFFFF; }
.tp-mobile-button:nth-child(2) { background:#8A6F66; color:#FFFFFF; }
.tp-mobile-button:nth-child(3) { background:#B92514; color:#FFFFFF; }

.tp-mobile-button:hover {
    opacity: 0.9;
}

.tp-mobile-button i {
    font-size: 16px;
}

/*
 * Classe aggiunta al body
 */
body.tp-mobile-buttons-visible {
	
}