.fields_pointer {
    position: absolute;
    left: -200px;
    top: -5px;
    width: 60px;
    color: white;
    background: #4caf50;
    padding: 9px;
    font-size: 14px;
    font-weight: bolder;
    text-align: center;
    z-index: 10;
    padding-left: 13px;
    text-transform: capitalize;
    box-shadow: -2px 2px 0px 0px #cddc39;
    animation: point 0.5s infinite ease-out alternate;
}

@keyframes point {
	from { left: -70px; }
	to { left: -75px; }
}
/*
.box {
  width: 150px;
  height: 75px;
  background-color: black;
  color: #fff;
  padding: 20px;
  position: relative;
  margin: 40px;
  float: left;
}*/

.fields_pointer:after {
	content: " ";
    position: absolute;
    right: -20px;
    top: 0px;
    border-top: 18px solid transparent;
    border-right: none;
    border-left: 21px solid #4caf50;
    border-bottom: 20px solid transparent;
    /*animation: glow 1s infinite alternate;*/
}

.tour-tour button {
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #f7dfa5, #f0c14b) repeat scroll 0 0;
    color: #212121;
    text-decoration: none;
}

.tour-tour.popover {
    box-shadow: 0px 1px 7px -2px black;
}

button.btn.close {
    padding: 5px 10px;
    background: none;
    top: 0;
    position: absolute;
    right: 0;
}

.tour-tour.popover {
	width: 280px;
}

.popover-navigation {
    text-align: right;
}

button.btn.nxt {
    width: 100px;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #f7dfa5, #f0c14b) repeat scroll 0 0;
    float: right;
	margin: 8px;
    font-size: 14px;
}

#button_container.fpointer{
    /* background: coral; */
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#button_container .wizard_toggle{
    opacity: 0;
    /* transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s; */
    position: static !important;
    margin: 15px 25px 0 7px;
    color: #000;
}

.fillable_field_wrapper div.datepicker input:focus{
    border: none;
}

/*TOGGLE SWITCH WIZARD*/
.wizard_toggle {
    color: #fff;
    display: block;
    position: absolute;
    left: -50px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

.wiztitle {
    font-size: 10px;
    text-align: right;
    font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
    cursor: default;
}

.switch {
    position: relative;
    display: block;
    width: 30px;
    height: 9px;
    color: #fff;
    margin: 2px auto;
}

.wiz i.fa.fa-magic {
	font-size: 14px;
}

span.wiz_text {
    display: block;
    font-size: 10px;
}

.wiz {
    display: inline-flex;
}

.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #4caf50;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
    height: 9px;
    width: 15px;
    left: 0px;
    bottom: 0px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #ccc;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(14px);
	-ms-transform: translateX(14px);
	transform: translateX(14px);
}

.slider.round {
	border-radius: 15px;
}

.slider.round:before {
	border-radius: 20px;
}

/*END OF TOGGLE SWITCH WIZARD*/




div.wizchat {
	/*display: none;*/
	/*position: absolute;*/
    display: inline-table;
    width: 250px;
    background-color: #fff;
    padding: 0px;
    font-size: 14px;
    border-radius: 4px;
    box-shadow: 0 2px 6px -1px black;
    top: 50px;
	z-index: 19;
}

.wizchat span.title {
    padding: 10px;
    display: block;
}

.wizchat::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: 100%;
    left: 0.7em;
    border: 1.2rem solid transparent;
    border-top: none;
    border-bottom-color: #fff;
    filter: drop-shadow(0 -0.1625rem 0.0625rem rgba(0, 0, 0, .1));
}

.wizchat button.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
}

@keyframes glow {
    0% {
		border-color: #FF9900;
		box-shadow: 0 0 5px #ff99004d, inset 0 0 5px #ff990036, 0 2px 0 #000;
    }	
    100% {
		border-color: #ffd100;
		box-shadow: 0 0 20px #ff9900c2, inset 0 0 10px #ff990080, 0 2px 0 #000;
    }
}



