.ktwp_cli_opener-icon svg /* replace SVG with whatever tab content is  */ { 
/*style tab content */
  color: #1a1a1a;
  filter: drop-shadow( 1px 1px 2px rgba(255, 255, 0, .8));
}


        .ktwp_cli_opener-panel {
          /* panel sizing, padding etc. here */
			max-width: 90vw;
max-height: 65vh;
overflow-y: auto;
			/* those last 3 for iOS */
        }
        
        .ktwp_cli_opener-panel label,
        .ktwp_cli_opener-panel input,
        .ktwp_cli_opener-panel .value,
        .ktwp_cli_opener-panel button {
            font-size: 12px !important;
        }
        .slider-control, .control-group {
             margin: 0 0 !important; /* was 10px 0 */
        }



.ktwp_cli_opener-control {
    position: fixed;
    left: 0px;
    top: 140px;
    font-size: 14px !important;
    z-index: 10000 !important;
	
}

.ktwp_cli_opener-icon,   .ktwp_cli_opener-panel {box-shadow: /*0 4px 8px rgba(0, 0, 0, 0.4)*/ 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 24px white;}

.ktwp_cli_opener-icon {
	 /* ORIG
	  width: 24px;
    height: 24px;
    background: #808080;
    border-radius: 3px; */
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: black 0px 0px 8px, white 0px 0px 30px !important;
	width: 36px;
	height: 30px;
	background: rgb(255, 255, 255);
	border-radius: 0px 6px 6px 0px;
	border: 0.25px solid #eee;
}
.ktwp_cli_opener-icon:hover {
	background: #ffd;
	/* box-shadow: 0px 0px 16px #fff !important; Nah */
}
.ktwp_cli_opener-icon .ktwp_cli_opener-hover-text {
    position: absolute;
    left: 38px;
    top: 50%;
    transform: translateY(-50%);
    background: #808080;
    color: white;
    padding: 4px 8px;
    border-radius: 3px;
    white-space: nowrap;
    opacity: 0;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ktwp_cli_opener-icon:hover .ktwp_cli_opener-hover-text:not(*:hover) {
	opacity: 1;
	width: 130px;
	text-align: center;
	min-width: fit-content;
}

.ktwp_cli_opener-panel {
    display: none;
    position: fixed;
    /* ORIG bottom: 30px;
    left: 0; */
top: 12px;
    left: 12px;
    width: 350px; /* MAKE THIS YOUR PANEL WIDTH */
    background: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px;
    z-index: 999999;
    overflow: visible;
}

.ktwp_cli_opener-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 15px; OPTIONS - spacing and horizontal line under panel title
    padding-bottom: 10px;
    border-bottom: 1px solid #eee; */
}

.ktwp_cli_opener-panel-content {align:center;/*display:grid; grid-template-columns:auto auto; grid-column-gap:6px;*/}

.ktwp_cli_opener-close-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
	position: absolute;
	/* display: block; */
	right: 0;
	top: 0;
}
    
    
}
 