body {
    margin: 0;
    background: #F1F1F1;
    font-family: 'Poppins', sans-serif;
}
*, ::after, ::before {
    box-sizing: border-box;
}
p {
	margin: 0;
}
.darkluplite-btn {
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
}
.darkluplite-btn-red {
	background: #E43F5A;
	color: #fff;
	box-shadow: 0 10px 30px rgba(228, 63, 90, 0.3);
}
.darkluplite-section-title {
	position: relative;
	margin-bottom: 60px;
	border-bottom: 1px solid #D5D5D5;
	padding-bottom: 10px;
	svg {
		margin-right: 20px;
	    position: absolute;
	    left: 8px;
	    top: 7px;
	}
	.title {
		font-size: 35px;
		color: #3700B3;
		display: inline-block;
		margin: 0;
		font-weight: 600;
		padding-left: 50px;
	}
}
.padding-0 {
	padding: 0;
}

/**** btn switcher ****/
.on-off-toggle__slider {
	width: 56px;
	height: 24px;
	display: block;
	border-radius: 34px;
    border: 1px solid #707070;
	transition: background-color 0.4s;
	&:before {
	    content: '';
	    display: block;
	    background-color: #464646;
	    bottom: 3px;
	    height: 18px;
	    left: 4px;
	    position: absolute;
	    transition: .4s;
	    width: 18px;
	    z-index: 5;
	    border-radius: 100%;
	}
	&:after {
		display: block;
		line-height: 24px;
		font-size: 13px;
		font-weight: bold;
		content: 'Off';
		color: #484848;
		padding-left: 26px;
		transition: all 0.4s;
	}
}
.on-off-toggle__input {
	position: absolute;
	opacity: 0;
}
.on-off-toggle__input:checked + 
.on-off-toggle__slider {
	background: #E43F5A;
	box-shadow: 0 10px 30px rgba(228, 63, 90, 0.3);
	border: 1px solid #E43F5A;
	&:before {
		transform: translateX(31px);
		background: #fff;
	}
	&:after {
		content: 'On';
		color: #FFFFFF;
		padding-left: 8px;
	}
}



.darkluplite-main-area {
	padding: 60px;
}

/*********** dklup-menu-area *********/
.darkluplite-menu-area {
	.darkluplite-logo {
		margin-bottom: 63px;
	}
	ul {
		margin: 0;
		padding: 0;
		li {
			list-style: none;
			a {
				padding: 26px 40px;
				display: block;
				border-radius: 15px 0 0 15px;
				font-size: 16px;
				color: #121212;
				text-decoration: none;
				transition: 0.4s;
				svg {
					margin-right: 14px;
				}
				&.active,
				&:hover {
					background: #fff;
				}
			}
		}
	}
}


/*********** darkluplite-settings-area *********/
.darkluplite-settings-area {
	background: #fff;
	border-radius: 30px;
	padding: 50px 80px;
}


/********* darkluplite-single-settings-inner *********/
.darkluplite-single-settings-inner {
	box-shadow: 0 10px 20px rgba(0,0,0,0.08);
	padding: 17px 90px 17px 25px;
	border-radius: 10px;
	position: relative;
	margin-bottom: 20px;
	transition: 0.4s;
	h5 {
		font-weight: 600;
		font-size: 18px;
		color: #121212;
		margin: 0;
	}
	p {
		color: #9A9A9A;
		margin: 0;
	}
	.button-switch {
		position: absolute;
		right: 25px;
		top: 50%;
		transform: translateY(-50%);
		margin-bottom: 0;
	}
	&.darkluplite-notice {
		overflow: hidden;
	}
	.notice {
	    background: #E43F5A;
	    position: absolute;
	    left: -35px;
	    top: -5px;
	    height: 37px;
	    line-height: 40px;
	    transform: rotate(-45deg);
	    min-width: 100px;
	    text-align: center;
	    font-size: 14px;
	    color: #fff;
        padding-top: 3px;
	}
	&:hover {
		box-shadow: 0 10px 20px #D5D5D5;
	}
}


/********** input-area ******/
.input-area {
	padding-top: 40px;
}
.darkluplite-single-input-inner {
	margin-bottom: 52px;
	label {
		color: #121212;
		font-size: 18px;
		margin-bottom: 14px;
		display: block;
	}
	input {
		height: 70px;
		width: 100%;
		padding: 0 28px;
		font-size: 16px;
		border-radius: 10px;
		background: #F5F5F5;
		border: 0!important;
		outline: 0 !important;
	}
	&.style-two {
		input {
			background: transparent;
			box-shadow: 0 7px 20px rgba(0,0,0,0.08);
		}
	} 
}

.single-select-inner {
	.nice-select {
		font-size: 16px;
		&:after {
		    border-bottom: 1px solid #999;
		    border-right: 1px solid #999;
		    height: 7px;
		    width: 7px;
		}
		.list {
			width: 100%;
			li {
				font-size: 12px !important;
				padding: 0 10px;
			}
		} 
	}
}