.layout-builder {
	position: fixed;
	width: 400px;
	background: white;
	z-index: 1000;
	right: -400px;
	top: 0;
	bottom: 0;
	box-shadow: 8px 0 10px 3px rgba(0, 0, 0, 0.50);
	overflow: auto;
	transition: right .2s;
}

.layout-builder.show {
	right: 0;
}

.layout-builder .layout-builder-toggle.shw i {
	-webkit-animation: spin 2s linear infinite;
	-moz-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
	}
}

@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg);
	}
}

@keyframes spin {
	100% {
		transform: rotate(360deg);
	}
}

.layout-builder .layout-builder-toggle.hdn {
	display: none;
}

.layout-builder.show .layout-builder-toggle.hdn {
	display: flex;
}

.layout-builder .layout-builder-toggle {
	cursor: pointer;
	width: 50px;
	height: 50px;
	color: white;
	background: black;
	position: fixed;
	top: 50%;
	margin-left: -50px;
	display: flex;
	font-size: 23px;
	justify-content: center;
	align-items: center;
	margin-top: -25px;
}

.layout-builder .layout-builder-body {
	padding: 30px;
}

.layout-builder .layout-builder-body .custom-control input[type="checkbox"]:checked+label {
	color: black;
}

.layout-builder .layout-colors {
	display: flex;
	flex-wrap: wrap;
	margin-left: -10px;
}

.layout-builder .layout-colors .layout-color-item {
	width: 40px;
	height: 40px;
	background: red;
	margin: 10px;
	border-radius: 3px;
	overflow: hidden;
	border: 5px solid transparent;
	cursor: pointer;
}

.layout-builder .layout-colors .layout-color-item.active {
	box-shadow: 0px 0px 0px 1px black
}

.layout-builder .layout-colors .layout-color-item span {
	display: block;
	height: 45%;
}

.layout-builder .layout-colors .layout-color-item span:first-child {
	background: black;
	transform: rotate(15deg);
	width: 110%;
	height: 70%;
	margin-top: -5px;
}

.layout-alert {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 5px 10px;
}

@media (max-width: 992px) {
	.layout-builder {
		display: none;
	}
}

.switch {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 20px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 1px;
	bottom: 1px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked+.slider {
	background-color: #38bb86;
}

input:focus+.slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.d-set {
	display: flex;
}

.i-set {
	float: left;
	width: 92%;
	margin-right: 10px
}

.c-img {
	margin-top: 5px
}

.div-set {

	display: block;
	line-height: 26px;
	padding: 10px 0px;
	margin-top: 15px;
	margin-bottom: 13px;
}

.div-set a img {
	margin-top: 5px;
}


.dd-item a {
	margin-top: 7px;
	padding-left: 5px;
}

.dd-handle {
	width: 94%;
}

.set {
	background-color: #ef0606;
	/*border: 3px solid #28980c;*/
	height: 15px;
	width: 15px;
	border-radius: 50%;
}

.set1 {
	background-color: #28980c;
	/*border: 3px solid #ef0606;*/
	height: 15px;
	width: 15px;
	border-radius: 50%;
}

.error {
	color: red;
}

.table-set {
	width: 20%;
}

.mr-10 {
	margin-right: 10px;
}