/*
 * Control Panel CSS Code
 */
.control-paneltool {
	background: transparent;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	right: -300px;
	padding: 8px;
	position: fixed;
	text-align: left;
	top: 130px;
	width: 300px;
	transition: background 0.5s ease-in-out 0s;
	z-index: 999
}
.panel-close {
    cursor: pointer;
    float: left;
    position: relative;
    border-radius: 50px 0 0 50px;
    margin-left: -60px;
    margin-top: 50px;
    background-color: #fff;
    border: medium none;
    padding: 8px 14px;
    transition: 0.3s ease-in-out;
    box-shadow: rgb(0 0 0 / 15%) -6px 0px 10px 0px;
}

.panel-close::before {
	color: #fff;
	content: "";
	font-family: fontawesome;
	font-size: 24px;
	line-height: 38px;
	padding: 0px;
	background: url(../img/front/themesetting.png) no-repeat;
	width: 34px;
	height: 34px;
	background-size: 34px;
	display: block;
	-webkit-animation: spin 5s linear infinite;
	-moz-animation: spin 5s linear infinite;
	animation: spin 5s linear infinite;
}
.panel_content {
	background: transparent;	
    font-family: Inter,sans-serif;
	color: #000;
	font-size: 14px;
	line-height: 20px;
	right: -305px;	
    padding-right: 0px;    
	position: fixed;
	text-align: left;
	top: 125px;
	width: 300px;
	transition: background 0.5s ease-in-out 0s;
	z-index: 999;
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px 0px;
    background: rgb(255, 255, 255);
}
.panel_content .panel-settings{
    max-height: 590px;
    overflow-y: scroll;
    padding-left: 18px;
    padding-bottom: 10px;
}
.panel_content .panel-settings::-webkit-scrollbar {
    width: 4px;
}
.panel_content .panel-settings::-webkit-scrollbar-track {
    background: #ddd;
}
.panel_content .panel-settings::-webkit-scrollbar-thumb {
    border: 4px solid #888888;
}
.panel_content .panel-settings {
    scrollbar-color: #888 #ccc;
    scrollbar-width: thin;
}

.panel_content .panel_headding {
    text-align: left;
    font-size: 18px;
    text-transform: capitalize;
    line-height: 30px;
    font-weight: 500;
    padding: 10px;
    padding-left: 15px;
    background-color: #222;    
    color: #fff;
}

.panel_content .control_grouptitle {
	padding: 0 0 5px;
    font-weight: 600;
}
.panel_content .control-tool .preview_color{
    width: 110px;
    height: 30px;
    cursor: pointer;
    border: 0;
    text-transform: uppercase;
}
.panel_content #pattern_block .control-tool .preview_color{
    background: none;
}
.panel_content .control-tool .preview_color:focus-visible{
    border: 0;   
}
.control-group-wrapper{
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    padding-bottom: 10px;
    padding-right: 12px;
}
.control-group-wrapper.skin-setting{
    padding-bottom: 0px;
}
.control-group-wrapper.layout-setting{
    border-bottom: 0px;
    padding-bottom: 0;
}

.panel_content .color-group .control-tool{
	height: 30px;
}
.panel_content .control-grouplist{
    padding: 4px 0;
    line-height: 30px;
    display: flex;
    justify-content: space-between;
}
.panel_content #pattern_block{
    background: #f2f2f2;
    padding: 2px 12px;
    margin-bottom: 5px;
}

.switchOption {
    width: 50px;
    min-height: 26px;
    background-color: #e7e7e7;
    border: 1px solid #e7e7e7;
    border-radius: 50px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
.switchOption input {
    display: none;
}
.ProductVariant.switchOption label,
.borderRadius.switchOption label, 
.layoutOption.switchOption label,
.stickyHeader.switchOption label {
    position: relative;
    z-index: 2;
    width: calc(100% / 2);
    height: 23px;
    color: #737374;
    margin: 0;
    cursor: pointer;
}
.ProductVariant.switchOption label span,
.borderRadius.switchOption label span,
.layoutOption.switchOption label span,
.stickyHeader.switchOption label span {
    font-size: 14px;
    color: #000;
    padding: 13px 0px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}
.ProductVariant.switchOption input:nth-of-type(1):checked~.slider,
.borderRadius.switchOption input:nth-of-type(1):checked~.slider,
.layoutOption.switchOption input:nth-of-type(1):checked~.slider,
.stickyHeader.switchOption input:nth-of-type(1):checked~.slider {
    transform: translateX(0);
	
}
.ProductVariant.switchOption input:nth-of-type(2):checked~.slider,
.borderRadius.switchOption input:nth-of-type(2):checked~.slider,
.layoutOption.switchOption input:nth-of-type(2):checked~.slider,
.stickyHeader.switchOption input:nth-of-type(2):checked~.slider{
	transform: translateX(97%);
	background: #72c279;
}
.ProductVariant.switchOption .slider,
.borderRadius.switchOption .slider,
.layoutOption.switchOption .slider, 
.stickyHeader.switchOption .slider {
    display: block;
    position: absolute;
    z-index: 1;
    width: calc((100% - 10px) / 2);
    height: 18px;
    top: 3px;
    left: 5px;
    transform: translatex(-110%);
    bottom: 3px;
    border-radius: 50px;
    transition: 0.15s ease,transform 0.25s ease-out;
    background-color: #ffffff;
}

#pattern_block .pattern-items{
    width: 100%;
    display: block;
    margin: 7px 0 0;    
}
#pattern_block .pattern-item{
	height: 42px;
    width: 42px;
	display: inline-block;    
    margin-right: 3px;
    cursor: pointer;	
    border: 1px solid #e5e5e5;
    background-size: cover;
    background: #ffffff;
}
#pattern_block .pattern-item#pattern10{    
    background-size: 72px;
    background-repeat: no-repeat;
    background-position: left center;
}
.panel_content .color-group .control-tool select{
    border: 1px solid #e5e5e5;
    padding: 5px;
    max-width: 120px;
}
.panel_content .color-group .color-item{
    height: 24px;
    width: 24px;
    margin-right: 2px;
    box-shadow: inset 0 0 0 1px rgb(0 0 0 / 15%);
    display: inline-block;
    cursor: pointer;
}

.control-reset{
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
}

@-moz-keyframes spin {
	100% {
		-moz-transform: rotate(360deg)
	}
}

@-webkit-keyframes spin {
	100% {
		-webkit-transform: rotate(360deg)
	}
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}
@media (max-width:1500px) {
	.panel_content .panel-settings{
		height: 400px !important;
	}
}
@media (max-width:991px) {
	.panel_content .panel-settings{
		height: 300px !important;
	}
}
@media (max-width:767px) {
    .control-paneltool{
        display: none;
    }
}