.ss-box {
	display: inline-flex;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
}
.ss-btn{
	padding: 6px 6px;
	background: #888;
	color: #fff !important;
	margin: 3px;
	display: inline-block;
	cursor: pointer;
	text-align: center;
	transition: 0.5s ease all;
    font-size: 18px;
    width: 32px;
    height: 32px;
}

.ss-btn:hover{
	text-decoration: none;
	color: #fff;	
	filter: brightness(110%);
    border-radius: 50%;
}

/*UNICOLOR*/
.ss-black .ss-btn{
	background: #000 !important;
}

.ss-dark .ss-btn{
	background: #444 !important;
}

.ss-gray .ss-btn{
	background: #888 !important;
	color: #000 !important;
}

.ss-light .ss-btn{
	background: #ddd !important;
	color: #444 !important;
}

.ss-outline .ss-btn{
	background: #fff !important;
	color: #444 !important;
	border: 1px solid #bbb !important;
}

/*CIRCLE BUTTON*/

.ss-circle .ss-btn{
	border-radius: 50%;
	min-width: 40px;
}

/*FLAT BUTTON*/

.ss-flat .ss-btn{
	border-radius: 0;
}

/*PILL BUTTON*/
.ss-pill .ss-btn{
	border-radius: 24px;
}

/*SHADOW*/

.ss-shadow .ss-btn{
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
}

/*HOVER EFFECTS*/

.ss-grow .ss-btn:hover{
	transform: scale(1.1);
}

.ss-shrink .ss-btn:hover{
	transform: scale(0.9);
}

.ss-rotate .ss-btn:hover{
	transform: rotate(-10deg);
}

.ss-float .ss-btn:hover{
	transform: translate(0px, -10px);
}

/*STRAIT*/

.ss-strait .ss-btn{
	margin:0;
	border-radius: 0;
}

.ss-strait{
	border-radius: 3px;
	overflow: hidden;
	display: table;
	margin: 0 auto;
}

/*POSITIONS*/

.ss-fixed{
	position: fixed;
	z-index: 999;
	left: 0;
	right: 0;
}

.ss-bottom{
	display: inline-block;
	text-align: center;
	bottom: 10px;
}

.ss-top{
	display: inline-block;
	text-align: center;
	top: 10px;
}

.ss-left, .ss-right{
	top: 50%;
	transform: translateY(-50%);
}

.ss-left{
	left: 10px;
}

.ss-right{
	left: unset;
	right: 10px;
}

.ss-left .ss-btn, .ss-right .ss-btn{
	display: table;
	width: 140px;
}

.ss-left[data-ss-content='false'] .ss-btn, .ss-right[data-ss-content='false'] .ss-btn{
	width: 40px;
}

/*RESPONSIVE*/
@media (max-width: 768px) {
	.ss-responsive .ss-btn-messenger,
	.ss-responsive .ss-btn-viber,
	.ss-responsive .ss-btn-telegram
	{
		display: none;
	}
	.ss-btn{
		font-size: 14px;
		width: 32px;
    		height: 32px;
	}
}

