/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	   -moz-box-flex: 1;
	    -ms-flex: 1 1 auto;
	        flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}

/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	transition-property: -webkit-transform;
	-moz-transition-property: transform, -moz-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-moz-transition-property: transform, -moz-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform, -moz-transform, -o-transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}

/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@-webkit-keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-o-keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	-webkit-animation: tooltipster-fading 400ms;
	   -moz-animation: tooltipster-fading 400ms;
	     -o-animation: tooltipster-fading 400ms;
	        animation: tooltipster-fading 400ms;
}

/* rotate */

@-webkit-keyframes tooltipster-rotating {
	25% {
		-webkit-transform: rotate(-2deg);
		        transform: rotate(-2deg);
	}
	75% {
		-webkit-transform: rotate(2deg);
		        transform: rotate(2deg);
	}
	100% {
		-webkit-transform: rotate(0);
		        transform: rotate(0);
	}
}

@-moz-keyframes tooltipster-rotating {
	25% {
		-moz-transform: rotate(-2deg);
		     transform: rotate(-2deg);
	}
	75% {
		-moz-transform: rotate(2deg);
		     transform: rotate(2deg);
	}
	100% {
		-moz-transform: rotate(0);
		     transform: rotate(0);
	}
}

@-o-keyframes tooltipster-rotating {
	25% {
		-o-transform: rotate(-2deg);
		   transform: rotate(-2deg);
	}
	75% {
		-o-transform: rotate(2deg);
		   transform: rotate(2deg);
	}
	100% {
		-o-transform: rotate(0);
		   transform: rotate(0);
	}
}

@keyframes tooltipster-rotating {
	25% {
		-webkit-transform: rotate(-2deg);
		   -moz-transform: rotate(-2deg);
		     -o-transform: rotate(-2deg);
		        transform: rotate(-2deg);
	}
	75% {
		-webkit-transform: rotate(2deg);
		   -moz-transform: rotate(2deg);
		     -o-transform: rotate(2deg);
		        transform: rotate(2deg);
	}
	100% {
		-webkit-transform: rotate(0);
		   -moz-transform: rotate(0);
		     -o-transform: rotate(0);
		        transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	-webkit-animation: tooltipster-rotating 600ms;
	   -moz-animation: tooltipster-rotating 600ms;
	     -o-animation: tooltipster-rotating 600ms;
	        animation: tooltipster-rotating 600ms;
}

/* scale */

@-webkit-keyframes tooltipster-scaling {
	50% {
		-webkit-transform: scale(1.1);
		        transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@-moz-keyframes tooltipster-scaling {
	50% {
		-moz-transform: scale(1.1);
		     transform: scale(1.1);
	}
	100% {
		-moz-transform: scale(1);
		     transform: scale(1);
	}
}

@-o-keyframes tooltipster-scaling {
	50% {
		-o-transform: scale(1.1);
		   transform: scale(1.1);
	}
	100% {
		-o-transform: scale(1);
		   transform: scale(1);
	}
}

@keyframes tooltipster-scaling {
	50% {
		-webkit-transform: scale(1.1);
		   -moz-transform: scale(1.1);
		     -o-transform: scale(1.1);
		        transform: scale(1.1);
	}
	100% {
		-webkit-transform: scale(1);
		   -moz-transform: scale(1);
		     -o-transform: scale(1);
		        transform: scale(1);
	}
}

.tooltipster-update-scale {
	-webkit-animation: tooltipster-scaling 600ms;
	   -moz-animation: tooltipster-scaling 600ms;
	     -o-animation: tooltipster-scaling 600ms;
	        animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 18px;
	padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */



/* CUSTOM */
	.tooltipster-sidetip .tooltipster-content{
	    color: #000000;
	    padding: 12px 14px;
	    width: 200px;
	    max-width: 200px;
	    border: 1px solid rgba(0,0,0,.3);
	}
	.tooltipster-base{
	    width: auto !important;
	    height: auto !important;
	}
	.tooltipster-sidetip .tooltipster-box {
	    background: #ffffff;
	    border: 0;
	}
	.tooltipster-sidetip .tooltipster-arrow {
		overflow: hidden;
		position: absolute;
		background: #ffffff;
		height: 15px;
		width: 15px;
	}

	.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	    top: 2px;
	    left: 50%;
	    -webkit-transform: translateX(-50%) rotate(45deg);
	       -moz-transform: translateX(-50%) rotate(45deg);
	        -ms-transform: translateX(-50%) rotate(45deg);
	         -o-transform: translateX(-50%) rotate(45deg);
	            transform: translateX(-50%) rotate(45deg);
	}
	.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
		bottom: 0;
		bottom: 2px;
	    left: 50%;
	    -webkit-transform: translateX(-50%) rotate(45deg);
	       -moz-transform: translateX(-50%) rotate(45deg);
	        -ms-transform: translateX(-50%) rotate(45deg);
	         -o-transform: translateX(-50%) rotate(45deg);
	            transform: translateX(-50%) rotate(45deg);
	}

	.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
		right: 2px;
		-webkit-transform: translateY(-50%) rotate(45deg);
		   -moz-transform: translateY(-50%) rotate(45deg);
		    -ms-transform: translateY(-50%) rotate(45deg);
		     -o-transform: translateY(-50%) rotate(45deg);
		        transform: translateY(-50%) rotate(45deg);
		top: 50%;
	}
	.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
		left: 2px;
		-webkit-transform: translateY(-50%) rotate(45deg);
		   -moz-transform: translateY(-50%) rotate(45deg);
		    -ms-transform: translateY(-50%) rotate(45deg);
		     -o-transform: translateY(-50%) rotate(45deg);
		        transform: translateY(-50%) rotate(45deg);
		top: 50%;
	}



/* Для совместимости с браузерами без поддержки фильтров */
	.tooltipster-sidetip .tooltipster-arrow-uncropped{
		display: none !important;
	}
	.tooltipster-arrow{
		display: none;
	}
	@supports (filter: drop-shadow(0px 0px 3px rgba(0,0,0,.2))) or (-webkit-filter: drop-shadow(0px 0px 3px rgba(0,0,0,.2))) {
		.tooltipster-base{
			-webkit-filter: drop-shadow(0px 0px 3px rgba(0,0,0,.2));
			        filter: drop-shadow(0px 0px 3px rgba(0,0,0,.2));	
		}
		.tooltipster-arrow{
			display: block;
		}
		.tooltipster-sidetip .tooltipster-content{
		    border: none;
		}
	}