/* Sidebar & Copyright Manager for Storefront by Wp-Centrics 
   Admin CSS */

.cscw-form-title {
	margin: 1.5em 0 1em;
}
.cscw-option {
	margin: 0 2em 1.5em 2em;
}
.cscw-label-text {
	font-size: 1.1em;
}

@media (min-width:650px) {
	.cscw-open-row {
		display: flex;
	}
}


/* button panes */
.cscw-button a {
	display: inline-block;
	background: #00609c;
	color: #fff;
	font-size: 15px;
	padding: 5px 20px;
	border-radius: 20px;
	text-decoration: none;
}
.cscw-button a.cscw-alt {
	background: #ffca00;
	color: #3f3200;
}
.cscw-button a.cscw-tp {
	background: #00b67a;
	color: #fff;
}
.cscw-button a.cscw-alt:hover,
.cscw-button a:hover {
	background: #f6ab00;
}
.cscw-button a.cscw-tp:hover {
	background: #008e5f;
}

/* 5 stars pane */

.cscw-opts-right {
	margin-top: 30px;
	background: #fbfbfb;
	padding: 10px 30px;
	text-align: left;
	border-radius: 20px;
	border: #c3c4c7 1px solid;
	margin-bottom: 30px;
}
.cscw-five-stars p {
	font-size: 15px;
}

.cscw-star-icons span {
	color: #ffca00;
	font-size: 26px;
	width: 26px;
	height: 26px;
}

@media (min-width:1350px) {
	.cscw-opts-wrapper {
		display: flex;
	}
	.cscw-opts-left {
		flex: 1;
	}
	.cscw-opts-right {
		width: 250px;
		margin-bottom: 100px;
		text-align: center;
	}
	.cscw-alt {
		display: block;
		margin: 15px auto;
	}
}
@media (max-width:600px) {
	.cscw-opts-right {
		text-align: center;
	}
	.cscw-tp {
		margin: 15px auto !important;
	}
}



/* Discover pane */

.cscw-discover {
	background: #fbfbfb;
	padding: 10px 30px;
	text-align: center;
	border-radius: 20px;
	border: #c3c4c7 1px solid;
}
.cscw-discover h3 {
	font-weight:400;
	font-size: 22px;
	margin-bottom: 0;
}
.cscw-discover h3,
.cscw-discover h4 {
	color: #00609c;
}
.cscw-discover h4 {
	margin: 0.3em;
	font-size: 20px;
	line-height: 1.2em;
}
.cscw-discover p {
	font-size: 17px;
	line-height: 1.2em;
	margin: 0;
	color: #3c434a;
}
.cscw-discover p.cscw-button {
	margin: 1em 0 1.5em;
}

.cscw-discover img {
	width: 300px;
	height: auto;
}

.cscw-product {
	margin-top: 30px;
}


/* 3 cols */
@media (max-width:1620px) and (min-width:1301px) {
	.cscw-products {
	    width: 1040px;
		margin: auto;
	}
	.cscw-product:nth-child(3n+1) {
		margin-left: 0;
		padding-left: 0;
		border: 0;
	}
}

/* 2 cols */
@media (max-width:1300px) and (min-width:850px) {
	.cscw-products {
	    width: 700px;
		margin: auto;
	}
	.cscw-product {
		border: 0 !important;
	}
	.cscw-product:nth-child(odd) {
		margin-left: 0 !important;
		padding-left: 0 !important;
		border: 0 !important;
	}
}

@media (min-width:850px) {
	.cscw-products {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.cscw-product {
		margin-left: 20px;
		padding-left: 20px;
		border: 0;
		border-left: #c3c4c7 1px solid;
	}
	.cscw-product:first-child {
		margin-left: 0 !important;
		padding-left: 0 !important;
		border: 0 !important;
	}
}


/* Toggle switches */
.cscw-toggle-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.cscw-toggle {
    position: relative;
    width: 40px;
    height: 20px;
    flex-shrink: 0; /* important */
}

.cscw-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cscw-slider {
    position: absolute;
    inset: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 20px;
}

.cscw-slider:before {
    content: "";
    position: absolute;
    height: 14px;
    width: 14px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: .3s;
    border-radius: 50%;
}

.cscw-toggle input:checked + .cscw-slider {
    background-color: #0295ce; /* color admin WP modern */
}

.cscw-toggle input:checked + .cscw-slider:before {
    transform: translateX(20px);
}