/* Buttons Shortcode */
.shortc-button {
	border: none;
	cursor: pointer;
	padding: 0 10px;
	display: inline-block;
	margin: 10px 0 0;
	font-weight: bold;
	outline: none;
	position: relative;
	background: #bdc3c7;
	color: var(--wp--preset--color--bmm-white) !important;
	text-decoration: none;
	font-size: 10px;
	line-height: 25px;
	opacity: .9;
	overflow: hidden;
	border-radius: 2px;
}
.shortc-button:hover {
	opacity: 1;
}
.shortc-button:active {
	top: 1px;
}
.shortc-button i {
	margin-right: 10px;
}
.shortc-button.red {
	background: #e74c3c;
}
.shortc-button.green {
	background: #2ecc71;
}
.shortc-button.blue {
	background: #3498db;
}
.shortc-button.orange {
	background: #e67e22;
}
.shortc-button.pink {
	background: #ff00a2;
}
.shortc-button.purple {
	background: #9b59b6;
}
.shortc-button.black {
	background: #222;
}
.shortc-button.white {
	background: #ecf0f1;
	color: #333 !important;
}
.shortc-button.medium {
	font-size: 14px;
	line-height: 35px;
	padding: 0 15px;
}
.shortc-button.big {
	font-size: 24px;
	height: 55px;
	padding: 0 20px;
}

/* Columns Shortcode */
.tie-columns {
	position: relative;
	margin-right: 4%;
	float: left;
}
body.rtl .tie-columns {
	float: right;
	margin-left: 4%;
	margin-right: 0;
}
@media (max-width: 768px) {
	.tie-columns {
		width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}
}
.one_half {
	width: 48%;
}
.tie-columns.last {
	margin-right: 0;
	clear: right;
}