/*
 * qTip2 - Pretty powerful tooltips - v3.0.3
 * http://qtip2.com
 *
 * Copyright (c) 2016 
 * Released under the MIT licenses
 * http://jquery.org/license
 *
 * Date: Fri May 20 2016 04:33 EDT-0400
 * Plugins: tips viewport modal
 * Styles: core css3
 */

/*---------------------------------------------------------------------------------
/----------------------- GLOBAL STYLE------  -----------------------------------
/---------------------------------------------------------------------------------*/

.new3 {
	width: 400px;
	height:200px;
	position: absolute;
}

.qtip{
	position: absolute;
	left: -28000px;
	top: -28000px;
	display: none;
	max-width: 310px;
	min-width: 60px;
	min-height: 40px;
	font-size: 15pt;
	line-height: 15pt;
	direction: ltr;
	box-shadow: 5px 2px 20px 2px rgba(0, 0, 0, 0.62);
	padding: 6px;
	border-radius: 7px;
}

	.qtip-content{
		position: relative;
		padding: 15px;
		overflow: hidden;
		background:#fff;
		text-align: left;
		word-wrap: break-word;
		border-radius: 3px; 
	}

	.qtip-titlebar{
		position: relative;
		padding: 5px 35px 5px 10px;
		overflow: hidden;

		border-width: 0 0 1px;
		font-weight: bold;
	}

.qtip-content a {
color:#000;}

	.qtip-titlebar + .qtip-content{ border-top-width: 0 !important; }


.qtip-shadow{
	-webkit-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
	-moz-box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
	box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
}


.qtip-titlebar{
	-moz-border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	border-radius: 4px 4px 0 0;
}

/*---------------------------------------------------------------------------------
/-------------------------Default close button class-----------------------------
/---------------------------------------------------------------------------------*/

	.qtip-close{
		position: absolute;
		right: -9px; top: -9px;
		z-index: 11; /* Overlap .qtip-tip */

		cursor: pointer;
		outline: medium none;

		border: 1px solid transparent;
	}

    .qtip-titlebar .qtip-close{
			right: 4px; top: 50%;
			margin-top: -9px;
		}

    * html .qtip-titlebar .qtip-close{ top: 16px; } /* IE fix */

    .qtip-titlebar .ui-icon,
    .qtip-icon .ui-icon{
			display: block;
			text-indent: -1000em;
			direction: ltr;
		}

    .qtip-icon, .qtip-icon .ui-icon{
			-moz-border-radius: 3px;
			-webkit-border-radius: 3px;
			border-radius: 3px;
			text-decoration: none;
		}

    .qtip-icon .ui-icon{
				width: 18px;
				height: 14px;

				line-height: 14px;
				text-align: center;
				text-indent: 0;
				font: normal bold 10px/13px Tahoma,sans-serif;

				color: inherit;
				background: transparent none no-repeat -100em -100em;
			}

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.qtip-focus{}

/* Applied on hover of tooltips i.e. added/removed on mouseenter/mouseleave respectively */
.qtip-hover{}

/*
/*---------------------------------------------------------------------------------
/----------------------- Default tooltip style -----------------------------------
/---------------------------------------------------------------------------------*/
.qtip-default{
	border: 0 solid #ffffff;
	background: -moz-linear-gradient(45deg, rgba(255,127,0,1) 0%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(45deg, rgba(255,127,0,1) 0%,rgba(255,255,255,0) 100%);
    background: linear-gradient(-120deg, rgba(255,127,0,1) 0%,rgb(255, 255, 255) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff7f00',    endColorstr='#00ffffff',GradientType=1 );
	color: #555;
}

	.qtip-default .qtip-titlebar{
		background-color: #FFEF93;
	}

	.qtip-default .qtip-icon{
		border-color: #CCC;
		background: #F1F1F1;
		color: #777;
	}

	.qtip-default .qtip-titlebar .qtip-close{
		border-color: #AAA;
		color: #111;
	}





/*---------------------------------------------------------------------------------
/----------------------- Youtube tooltip style  -----------------------------------
/---------------------------------------------------------------------------------*/
.qtip-youtube{
    max-width:350px;
	min-width: 60px;
	min-height:60px;
    padding:6px 6px 6px 6px;
    
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;

	-webkit-box-shadow: 0 0 3px #333;
	-moz-box-shadow: 0 0 3px #333;
	box-shadow: 0 0px 20px 0 rgba(25, 25, 25, 0.45);

	color: #434343;
	border: 0 solid transparent;
    
	background: #fff;

}

.qtip-youtube .qtip-content{
       
        /*color: #533c21;*/
        color: #585858;
		padding: 1.06em 1.06em 1.06em 1.06em;
		font: 18px Bariol,sans-serif;
        line-height: 18px;
        border-radius: 5px;

        background-image: -webkit-linear-gradient(135deg, rgb(255,255,255) 0%, rgb(255,255,255) 93%, rgb(127,59,51) 90%, rgb(140,76,59) 100%);
        background-image:    -moz-linear-gradient(135deg, rgb(255,255,255) 0%, rgb(255,255,255) 93%, rgb(127,59,51) 90%, rgb(140,76,59) 100%);
        background-image:    -ms-linear-gradient(135deg, rgb(255,255,255) 0%, rgb(255,255,255) 93%, rgb(127,59,51) 90%, rgb(140,76,59) 100%);

	}

.qtip-youtube h1 {
    text-shadow: 1px 1px 2px rgb(212, 212, 212);
    /*color:rgb(109, 55, 0);*/
    color:rgb(59, 59, 59);
    font-size: 27px;
    position: static;
    margin:0 0 12px 0;
    display: block;
}

.qtip-youtube span {
    text-decoration: underline;
    text-shadow: none;
    color:#434343;
}


.qtip-youtube .qtip-titlebar{
		background-color: #4A4A4A;
		background-color: rgba(0,0,0,0);
}

/*---------------------------------------------------------------------------------
/----------------------- Youtube2 tooltip style  -----------------------------------
/---------------------------------------------------------------------------------*/
/*Za Tooltips desno od stranata*/
.qtip-youtube2{
    max-width:400px;
	min-width: 60px;
	min-height:60px;
    
    padding:6px 6px 6px 6px;
    
    border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	

	-webkit-box-shadow: 0 0 3px #333;
	-moz-box-shadow: 0 0 3px #333;
	box-shadow: 0 0px 20px 0 rgba(25, 25, 25, 0.45);

	color: #434343;
	border: 0 solid transparent;
    

	background: #fff;



}

.qtip-youtube2 .qtip-content{
        /*color: #533c21;*/
        color: #585858;
		padding: 1.06em 1.06em 1.06em 1.06em;
		font: 18px Bariol,sans-serif;
        line-height: 18px;
        border-radius: 5px;
       

  background-image: -webkit-linear-gradient(45deg, rgb(255,255,255) 0%, rgb(255,255,255) 93%, rgb(127,59,51) 90%, rgb(140,76,59) 100%);
  background-image:    -moz-linear-gradient(45deg, rgb(255,255,255) 0%, rgb(255,255,255) 93%, rgb(127,59,51) 90%, rgb(140,76,59) 100%);



    
	}

.qtip-youtube2 h1 {
    text-shadow: 1px 1px 2px rgb(212, 212, 212);
    /*color:rgb(109, 55, 0);*/
    color:rgb(59, 59, 59);
    font-size: 27px;
    position: static;
    margin:0 0 12px 0;
    display: block;
}

.qtip-youtube2 span {
    text-decoration: underline;
    text-shadow: none;
    color:#434343;
}


.qtip-youtube2 .qtip-titlebar{
		background-color: #4A4A4A;
		background-color: rgba(0,0,0,0);
	}


/*---------------------------------------------------------------------------------
/----------------------- Cluetip style------  -----------------------------------
/---------------------------------------------------------------------------------*/

.qtip-cluetip{
	-webkit-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	-moz-box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);
	box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4);

	background-color: #D9D9C2;
	color: #111;
	border: 0 dashed transparent;
}

	.qtip-cluetip .qtip-titlebar{
		background-color: #87876A;
		color: white;
		border: 0 dashed transparent;
	}

	.qtip-cluetip .qtip-icon{
		border-color: #808064;
	}

	.qtip-cluetip .qtip-titlebar .ui-state-hover{
		border-color: #696952;
		color: #696952;
	}

/*---------------------------------------------------------------------------------
/----------------------- GLOBAL STYLE------  -----------------------------------
/---------------------------------------------------------------------------------*/


/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar{
	filter: none;
	-ms-filter: none;
}


.qtip .qtip-tip{
	margin: 0 auto;
	overflow: hidden;
	z-index: 10;
    background-color: red; !important
    border-color: pink; !important

}

	/* Opera bug #357 - Incorrect tip position
	https://github.com/Craga89/qTip2/issues/367 */
	x:-o-prefocus, .qtip .qtip-tip{
		visibility: hidden;
	}

	.qtip .qtip-tip,
	.qtip .qtip-tip .qtip-vml,
	.qtip .qtip-tip canvas{
		position: absolute;

		 color:#985098;
		background: transparent;
		border: 0 dashed transparent;
	}

	.qtip .qtip-tip canvas{ top: 0; left: 0; }

	.qtip .qtip-tip .qtip-vml{
		behavior: url(#default#VML);
		display: inline-block;
		visibility: visible;
	}


#qtip-overlay{
	position: fixed;
	left: 0; top: 0;
	width: 100%; height: 100%;
}

	/* Applied to modals with show.modal.blur set to true */
	#qtip-overlay.blurs{ cursor: pointer; }

	/* Change opacity of overlay here */
	#qtip-overlay div{
		position: absolute;
		left: 0; top: 0;
		width: 100%; height: 100%;

		background-color: black;

		opacity: 0.7;
		filter:alpha(opacity=70);
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	}
