.mcw-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 9999;
}

.mcw-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
}

.mcw-button svg {
    width: 18px;
    height: 18px;
    fill: white;
}

@media (max-width: 768px) {
    .mcw-buttons {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        background: #333;
        padding: 10px 0;
		text-wrap:nowrap
    }

    .mcw-button {
        flex: 1;
        margin: 0 10px;
        font-size: 16px;
        border-radius: 0;
    }
	.mcw-separator {
    width: 2px !important;
    background: white;
    height: 40px !important;
}
}
.mcw-separator {
    width: 0px;
    background: white;
    height: 0px;
}