/* Add here all your css styles (customizations) */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f00;
    -webkit-transition: .4s;
    transition: .4s;
}


    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 0px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #5cb85c;
}

input:focus + .slider {
    box-shadow: 0 0 1px #5cb85c;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }



/* The slider */
.sliderGrey {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: grey;
    -webkit-transition: .4s;
    transition: .4s;

}


    .sliderGrey:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 0px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .sliderGrey {
    background-color: grey;
}

input:focus + .sliderGrey {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .sliderGrey:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.sliderGrey.round {
    border-radius: 34px;
}

    .sliderGrey.round:before {
        border-radius: 50%;
    }



.border-right-white{
	border-right: white;
}

.tooltip-inner {
	max-width: 200px;
	padding: 3px 8px;
	color: #fff;
	text-align: center;
	background-color: #3bb18f;
	border-radius: .25rem;
}


.tooltip .arrow:before {
	bottom: -3px;
	left: -12px;
	border-bottom-color: #3bb18f;
	border-width: 0 12px 12px;
	z-index: -1;
}

.tooltip .arrow {
	top: 3px;
	bottom: 3px;
	left: 50%;
	border-style: solid;
	border-color: transparent transparent #3bb18f transparent;
	border-width: 0 9px 10px;
	width: 20px;
	margin-left: 45%;
}
