.ss-box {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.ss-btn {
	height: 60px;
	line-height: 60px;
	padding: 0 15px;
	background: rgba(100,100,100,1);
	color: #fff !important;
	border-radius: 20px;
	margin: 10px;
	cursor: pointer;
	text-align: center;
	transition: 0.2s ease all;
	box-shadow: 0 0 0 5px rgba(100,100,100,0.4);
}

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

/*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;
}

/*SQUARE BUTTON*/

.ss-square .ss-btn{
	width: 60px;
	min-width: 60px;
	padding: 0;
}
.ss-square .ss-btn i {
	font-size: 25px;
	line-height: 0;
	height: 0;
}
.ss-square .ss-btn.btn-line i {
	font-size: 25px;
}

/*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(54, 54, 54, 0.28);
}

/*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 (min-width: 768px) {
	.ss-responsive .ss-btn-share,
	.ss-responsive .ss-btn-messenger,
	.ss-responsive .ss-btn-viber,
	.ss-responsive .ss-btn-telegram,
	.ss-responsive .ss-btn-sms
	{
		display: none;
	}
}

/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* sm - xs */
@media (max-width: 767.98px) {}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* xs */
@media (max-width: 575.98px) {

	.ss-btn {
		height: 50px;
		line-height: 50px;
		border-radius: 15px;
		margin: 8px;
	}
	.ss-square .ss-btn {
		width: 50px;
		min-width: 50px;
	}
	.ss-square .ss-btn i {
		font-size: 20px;
		line-height: 0;
	}

}

/* xs custom */
@media (max-width: 399.98px) {

	.ss-btn {
		height: 40px;
		line-height: 40px;
		border-radius: 15px;
		margin: 8px;
	}
	.ss-square .ss-btn {
		width: 40px;
		min-width: 40px;
	}
	.ss-square .ss-btn i {
		font-size: 18px;
		line-height: 0;
	}

}
