
.boxRollZoom{
    cursor:pointer;
    animation: boxScaleOut 1s forwards;
}

.boxRollZoom:hover{
    animation: boxScaleIn 1s forwards;
}



@keyframes boxScaleIn {
	0% { transform: scale(1); }
	100% { transform: scale(1.05); }
}

@keyframes boxScaleOut {
	0% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.ace_editor, .ace_editor *{
    font-family: "Monaco", "Menlo", "Ubuntu Mono", "Droid Sans Mono", "Consolas", monospace !important;
    font-size:clamp(10px, calc(0.3em + 1vmin), 12px) !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    }


  
.textEllipsis{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.textEllipsis_wrap{
    text-overflow: ellipsis;
    white-space: wrap;
    overflow: hidden;
}



.flexCenter{
    display:flex;
    align-items: center;
    justify-content: center;
}

.displayGrid{
    display:grid;
    max-width:1400px;
    margin:0 auto;
    gap: 2rem;
}

@media (min-width: 600px) {
  .displayGrid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .displayGrid { grid-template-columns: repeat(3, 1fr); }
}

.textWhite{
	color:var(--tone_0);
    /* corol:#090a0e; */
}

.glow{
	-moz-box-shadow: 0px 0px 14px var(--main) ;
	-webkit-box-shadow: 0px 0px 14px var(--main) ;
	box-shadow: 0px 0px 14px var(--main) ;

}

.glowBlue{
	-moz-box-shadow: 0px 0px 14px var(--blue) ;
	-webkit-box-shadow: 0px 0px 14px var(--blue) ;
	box-shadow: 0px 0px 14px var(--blue) ;

}

.textRed{
	color: #f00;
}

.textGreen{
	color: #0f0;
}

.textArea{
	border:thin solid var(--hilite_2);
	background: var(--tone_0);
    /* background-color:#727c8d; */
	/* color:var(--tone_0); */

    box-sizing: border-box;

	border-radius: 20px;
	padding:10px;
	padding-left:10px;
	font-family: Flux, Verdana, Arial, Helvetica, sans-serif;
    /* letter-spacing: 0.03rem; */
	font-size: 14px;
	line-height:14px;

    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    resize: none;
   
}

.textArea::placeholder{
    font-family: Flux, Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: var(--tone_6);

}

.inputArea{
	border:none;
	background: linear-gradient(135deg, var(--body_light) 0%, var(--body_dark) 100%);
    /* background-color:#727c8d; */
	color:var(--tone_0);
    background-color:var(--tone_2);
    box-sizing: border-box;

	-moz-border-radius: 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	padding:5px;
	padding-left:10px;
	font-family: NunitoSans-Black, Verdana, Arial, Helvetica, sans-serif;
    letter-spacing: 0.03rem;
	font-size: 13px;
	line-height:13px;

    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;

    resize: none;
   
}

.inputArea::placeholder{
    font-family: Flux, Verdana, Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: var(--tone_6);

}


.styled-select{
	border-collapse: separate;
    box-sizing: border-box;

	padding: 5px;
	padding-left:10px;
    height:28px;

    background: var(--select_box_icon_mini);
    background-color:#222232;
	/*  doesn't work in chrome on windows 
    background-color: linear-gradient(135deg, var(--body_light) 0%, var(--body_dark) 100%); */

	border: none;
	color:var(--tone_0);
	background-repeat: no-repeat;

	background-position: calc(100%) 10px !important;
	-moz-appearance:none !important;
	-webkit-appearance: none !important; 
	appearance: none !important;
	padding-right: 2rem !important;

	font-family: NunitoSans-Black, Verdana, Arial, Helvetica, sans-serif;
    letter-spacing: 0.03rem;
	font-size: 13px;
	line-height:13px;

    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
	cursor:pointer;
}

.styled-select-white{
	border-collapse: separate;
    box-sizing: border-box;

	padding: 5px;
	padding-left:10px;
    height:28px;

    background: var(--select_box_icon_mini);
    background-color:var(--tone_0);

	/*  doesn't work in chrome on windows 
    background-color: linear-gradient(135deg, var(--body_light) 0%, var(--body_dark) 100%); */

	border: none;
	background-repeat: no-repeat;

	background-position: calc(100%) 10px !important;
	-moz-appearance:none !important;
	-webkit-appearance: none !important; 
	appearance: none !important;
	padding-right: 2rem !important;

	font-family: NunitoSans-Black, Verdana, Arial, Helvetica, sans-serif;
    letter-spacing: 0.03rem;
	font-size: 13px;
	line-height:13px;

    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
	cursor:pointer;
}

.styled-select-small{
	border-collapse: separate;
    box-sizing: border-box;

	padding: 5px;
	padding-left:10px;
    height:20px;

    background: var(--select_box_icon_mini);
    background-color:#222232;
	/*  doesn't work in chrome on windows 
    background-color: linear-gradient(135deg, var(--body_light) 0%, var(--body_dark) 100%); */

	border: none;
	color:var(--tone_0);
	background-repeat: no-repeat;

	background-position: calc(100%) 5px !important;
	-moz-appearance:none !important;
	-webkit-appearance: none !important; 
	appearance: none !important;
	padding-right: 2rem !important;

	font-family: Flux, Verdana, Arial, Helvetica, sans-serif;
    letter-spacing: 0.03rem;
	font-size: 11px;
	line-height:11px;

    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
	cursor:pointer;
}

.styled-select-blank {
	
	border-collapse: separate;
    box-sizing: border-box;

	padding: 5px;
	padding-left:10px;
    height:28px;
	
	background:none;
	border: none;
	color:var(--tone_0);
	
	-moz-appearance:none !important;
	-webkit-appearance: none !important; 
	appearance: none !important;
	padding-right: 2rem !important;

	font-family: NunitoSans-Black, Verdana, Arial, Helvetica, sans-serif;
    letter-spacing: 0.03rem;
	font-size: 13px;
	line-height:13px;

    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
	cursor:pointer;


}


.not-styled-select {
	border:none;
	background: transparent;
	border-radius: 0px;

	border:thin solid var(--tone_9);
	padding:4px;

	width:30px;
    -moz-appearance:none !important;
    -webkit-appearance: none !important; 
    appearance: none !important;
	
}


.slider_simple {
    /* -webkit-appearance: none; 
    appearance: none; */
    width: 100%; 
    height: 26px;

    outline: none; 
   
    opacity: 0; 
    /* -webkit-transition: .2s; 
    transition: opacity .2s; */
    border-radius:13px;
  }

  .slider_normal {
    /* -webkit-appearance: none; 
    appearance: none; */
    width: 100%; 
    height: 26px;

    outline: none; 
   
    opacity: 1; 
    /* -webkit-transition: .2s; 
    transition: opacity .2s; */
    border-radius:13px;
  }

  
  /* Mouse-over effects */
  .slider_simple:hover {
    opacity: 0; /* Fully shown on mouse-over */
  }
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
  .slider_simple::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 26px; /* Set a specific slider handle width */
    height: 26px; /* Slider handle height */
    background: var(--tone_0); /* Green background */
    border-radius:50%;
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider_simple::-moz-range-thumb {
    width: 26px; /* Set a specific slider handle width */
    height: 26px; /* Slider handle height */
    background: var(--tone_0); /* Green background */
    border-radius:50%;
    cursor: pointer; /* Cursor on hover */
  }


  .checkbox_label {
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;
  }
  
  input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--hilite_1);
    /* Not removed via appearance */
    margin: 0;
  
    font: inherit;
    color: var(--main);
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);
  
    display: grid;
    place-content: center;
  }
  
  input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
  }
  
  input[type="checkbox"]:checked::before {
    transform: scale(1);
  }
  
  input[type="checkbox"]:focus {
    outline: max(2px, 0.15em) solid currentColor;
    outline-offset: max(2px, 0.15em);
  }
  
  input[type="checkbox"]:disabled {
    --form-control-color: var(--form-control-disabled);
  
    color: var(--form-control-disabled);
    cursor: not-allowed;
  }

  .checkbox_container {
    display: block;
    position: relative;
    
    cursor: pointer;
   margin-left:0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox_container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkbox_checkmark {
   float:left;
    border-radius:6px;
    margin-top: 4px;
    margin-left: 8px;
    height: 25px;
    width: 25px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox_container:hover input ~ .checkbox_checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox_container input:checked ~ .checkbox_checkmark {
    background-color: var(--hilite_2);
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkbox_checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox_container input:checked ~ .checkbox_checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox_container .checkbox_checkmark:after {
    left: 16px;
    top: 6px;
    width: 8px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


.widget_grow{
    cursor:pointer;
    
    z-index:1000;
}

.widget_grow:hover{
    border:thin solid var(--hilite_1);
    box-shadow: -1px -1px 8px var(--hilite_2), 1px -1px 8px var(--hilite_2), -1px 1px 8px var(--hilite_2), 1px 1px 8px var(--hilite_2);

    /* background-color:var(--glassHilite); */
    animation: scaleWidget 0.5s forwards;
    z-index:2000;
}



@keyframes scaleWidget {
	0% { transform: scale(1); }
	100% { transform: scale(1.05); }
}

.widget_grow_blank{
    cursor:pointer;
    
    z-index:1000;
}

.widget_grow_blank:hover{
   
    /* background-color:var(--glassHilite); */
    animation: scaleWidget 0.5s forwards;
    z-index:2000;
}

tip{
	color: var(--main);
	border:thin solid var(--main);
    /* font-family: NunitoSans-Black !important; */
	/* background: var(--tone_c); */
	text-align:center;
	border-radius:50%;
	width:20px;
	height:20px;
	line-height:20px;
	font-size:16px;
	display:inline-block;
	margin-right:6px;

}
tip::before{
	content: "i";
}

warning{
	color: var(--tone_0);
	/* border:thin solid var(--main); */
	background: var(--red);
	text-align:center;
	border-radius:50%;
	width:30px;
	height:30px;
	line-height:30px;
	font-size:20px;
	display:inline-block;
	margin-right:6px;
	font-family: Bold;
}
warning::before{
	content: "!";
}

bb {
	font-family: Bold;
    font-size:clamp(15px, calc(0.5em + 1vmin), 17px);
	color:var(--solid_4);

}

b1 {
	font-family: Bold;
	color:var(--hilite_blue);
    font-size:clamp(15px, calc(0.5em + 1vmin), 17px);


}


.box_hilite_1{

	padding:8px 15px;
	border-left: 4px solid var(--orange);
	margin:10px 0px;
    box-sizing: border-box;
    margin-left:20px;
    padding-right:25px;

}

.box_hilite_2{

	padding:8px 15px;
	border-left: 4px solid #96c2ff;
	margin:10px 0px;
    margin-left:20px;
    padding-right:25px;
	
	/* font-style: italic; */

	
}

.box_hilite_3{
	padding:8px 20px;
	border-radius:24px;
	background:#fffcf9;
	border: 1px solid #ffd7b5;
	border-left: 4px solid #ffbe85;
	border-right: 4px solid #ffbe85;
	margin:10px 0px;
	
	font-style: italic;

	
}

