/**
 * Toolbar
 */


.ls-toolbar {
    position: fixed;
    right: 10px;
    bottom: 0;
    z-index: 100;
    display: inline-block;
}

.ls-toolbar-item {
	display: block;
	background: #fff;
	color: #adadad;
	padding: 8px;
	font-size: 16px;
	text-align: center;
	margin-bottom: 10px;
	border-radius: 2px;
	box-shadow: 0 0 8px rgba(0, 0, 0, .15);
	cursor: pointer;
}

.ls-toolbar-item:hover,
.ls-toolbar-item:focus,
.ls-toolbar-item > .active {
	color: #d32f2f;
}

.ls-toolbar-item i {
	padding: 4px;
    width: 24px;
}


/**
 * Media Queries
 */

/**
 * >= 992px
 */

@media screen and (min-width: 992px) {
    .ls-toolbar {
        top: 35%;
        bottom: unset;
    }
}
