.tools-jl-container {
    margin-top: 40px;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    padding: 20px;
}
.tools-jl-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.tools-jl-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
}
.tools-jl-hr {
    border-top: 1px solid #eee;
    margin-bottom: 10px 10px 20px 20px;
}
.tools-jl-option-title {
    font-size: 16px;
    margin-bottom: 10px;
}
.tools-jl-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 20px;
}
.tools-jl-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.tools-jl-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.tools-jl-slider:before {
    position:absolute; 
  	content:""; 
  	height :26px; 
  	width :26px; 
  	left :4px; 
  	bottom :4px; 
  	background-color:white; 
  	-webkit-transition:.4s; 
  	transition:.4s
}
input:checked + .tools-jl-slider {
	background-color:#7ad03a
}
input:focus + .tools-jl-slider {
	box-shadow :0 0 1px #2196F3
}
input:checked + .tools-jl-slider:before {
	-webkit-transform :translateX(26px); 
  	-ms-transform :translateX(26px); 
  	transform :translateX(26px)
}
/* Rounded sliders */
.tools-jl-slider.round {
	border-radius :34px
}
.tools-jl-slider.round:before {
	border-radius :50%
}
.tools-jl-button {
	background-color:#2196F3; 
  	border:none; 
  	color:white; 
  	padding :15px; 
  	text-align:center; 
  	text-decoration:none; 
  	display:inline-block; 
  	font-size :16px; 
  	margin :4px; 
  	cursor:pointer; 
  	border-radius :12px
}
.tools-jl-button:hover {
	background-color:#7ad03a
}

.tools-jl-success,
.tools-jl-error {
    text-align: center;
    font-size: 4em;
    color: green
}

.modern-checkbox {
    appearance: none;
    background-color: #fafafa;
    border: 1px solid #cacece;
    padding: 6px;
    border-radius: 3px;
    display: inline-block;
    position: relative;
  }
  
  .modern-checkbox:checked {
    background-color: #e9ecee;
  }
  
  .modern-checkbox:checked:after {
    content: '\\2714';
    font-size: 14px;
    position: absolute;
    top: 0px;
    left: 3px;
    color: #99a1a7;
  }

  .tools-jl-form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }


  



  /* .tools-jl-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tools-jl-container {
    display: flex;
    flex-direction: column;
    align-items: center;
} */
.tools-jl-option-title {
    font-weight: bold;
    margin-top: 10px;
}
.tools-jl-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.tools-jl-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.tools-jl-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.tools-jl-slider:before {
    position:absolute;
    content:"";
    height:26px;width:26px;left:4px;bottom:4px;background-color:white;-webkit-transition:.4s;transition:.4s
}
input:checked+.tools-jl-slider {
    background-color:#2196F3
}
input:focus+.tools-jl-slider {
    box-shadow:0 0 1px #2196F3
}
input:checked+.tools-jl-slider:before {
    -webkit-transform:translateX(26px);
    -ms-transform:translateX(26px);
    transform:translateX(26px)
}
/* Rounded sliders */
.tools-jl-slider.round {
  border-radius:34px
}

.tools-jl-slider.round:before {
  border-radius:50%
}

.tools-jl-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.tools-jl-title {
    text-align: center;
}

.tools-jl-hr {
    margin: 20px 0;
}

.tools-jl-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tools-jl-container li {
    margin-bottom: 10px;
}

.tools-jl-container li a {
    display: block;
    padding: 15px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.2s ease-in-out;
}

.tools-jl-container li a:hover {
    background-color: #00a0d2;
}

/* woocommerce-categories.css */

.selected-category {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #eee;
    border-radius: 5px;
}

@media (min-width: 600px) {
    .tools-jl-option-container {
        display: inline-block;
        width: calc(50% - 20px);
        margin: 0 10px;
    }
  }