/**
 * Citrix subscription entry box.
 */
#citrix2014-entry-box {
	position:fixed;
	background:transparent url(/wp-content/themes/citrix-blog-2014/images/cps/cps_bottom_bg.png) repeat-x;
	background-position:center top;
	bottom:0;
	left:0;
	width:100%;
	z-index:9999999;
	height:75px!important;
}

#citrix2014-entry-box .entry__close {
	position:absolute;
	left:50%;
	margin-left:415px;
	top:25px;
	background:url(/wp-content/themes/citrix-blog-2014/images/cps/cps_bottom_close.png) no-repeat;
	width:50px;
	height:50px;
	cursor:pointer;
}

#citrix2014-entry-box .entry__close:hover {
	background:url(/wp-content/themes/citrix-blog-2014/images/cps/cps_bottom_close_hovered.png) no-repeat;
}

#citrix2014-entry-box .entry__inner {
	width:960px;
	margin:25px auto 0;
	overflow:hidden;
	position:relative;
	color:#fff;
	height:50px;
}

#citrix2014-entry-box .entry__inner .headline {
	margin:0 0 0 110px;
	padding:10px 0 4px;
	font-family:'HelvNeue';
	font-weight:lighter;
	font-style:normal;
	font-size:1.6em;
	line-height:1em;
}

#citrix2014-entry-box .entry__inner .text {
	margin:0 0 0 110px;
	font-family:'HelvNeue';
	font-weight:700;
	font-style:normal;
	font-size:1.6em;
	line-height:1em;
}

#citrix2014-entry-box .entry__inner .text.default {
}

#citrix2014-entry-box .entry__inner .text.ok,
#citrix2014-entry-box .entry__inner .text.err,
#citrix2014-entry-box .entry__inner .text.chk {
	display:none;
	color:#fff;
	font-weight:lighter;
	position:absolute;
	right:80px;
	top:0;
	width:180px;
	padding:10px 0 5px;
	overflow:hidden;
	transition:opacity 250ms;
	z-index:1;
	font-size:1.2em;
	line-height:16px;
	opacity:0;
}

#citrix2014-entry-box .entry__inner.active .text.ok,
#citrix2014-entry-box .entry__inner.active .text.err,
#citrix2014-entry-box .entry__inner.active .text.chk {
	opacity:1;
}

#citrix2014-entry-box .entry__inner .text.default {
	display:block!important;
}

#citrix2014-entry-box .entry__inner .text.err {
}

#citrix2014-entry-box .entry__inner .subscribe-form {
	position:absolute;
	right:65px;
	top:0;
	width:450px;
	padding:10px 0 0;
	overflow:hidden;
	transition:width 350ms;
	background:#1285a4;
	height:40px;
}

#citrix2014-entry-box .entry__inner.active .subscribe-form {
	width:786px;
}

#citrix2014-entry-box .entry__inner .subscribe-form .email {
	appearance:normal;
	-webkit-appearance:none;
	border:none;
	font-size:1.6em;
	line-height:1em;
	width:40%;
	padding:10px 0 3px 5px;
	background:#fff;
	font-family:'HelvNeue';
	font-weight:400;
	font-style:normal;
	color:#555;
	outline:none;
	float:left;
	transition:width 350ms;
}

#citrix2014-entry-box .entry__inner.active .subscribe-form .email {
	width:30%;
}

#citrix2014-entry-box .entry__inner .subscribe-form .chkbox {
	float:left;
	width:160px;
	margin:0 10px;
}

#citrix2014-entry-box .entry__inner .subscribe-form .chkbox input {
	position:absolute;
	clip:rect(0,0,0,0);
}

#citrix2014-entry-box .entry__inner .subscribe-form .chkbox label {
	font-family:'HelvNeue';
	font-weight:100;
	font-style:normal;
	font-size:1.2em;
	line-height:16px;
	display:block;
	background:url(../images/cps/cps_checkboxsprite.png) no-repeat 0 8px;
	padding:2px 0 0 30px;
	cursor:pointer;
}

#citrix2014-entry-box .entry__inner .subscribe-form .chkbox input:focus + label,
#citrix2014-entry-box .entry__inner .subscribe-form .chkbox input:hover + label {
	background:url(../images/cps/cps_checkboxsprite.png) no-repeat 0 -52px;
}

#citrix2014-entry-box .entry__inner .subscribe-form .chkbox input:checked + label {
	background:url(../images/cps/cps_checkboxsprite.png) no-repeat 0 -112px;
}

#citrix2014-entry-box .entry__inner .subscribe-form .button {
	appearance:normal;
	-webkit-appearance:none;
	text-transform:uppercase;
	font-family:'HelvNeue';
	font-weight:400;
	font-style:normal;
	background:#f76900;
	color:#fff!important;
	font-size:1.4em;
	text-decoration:none;
	padding:9px 30px 3px;
	display:inline-block;
	border-radius:18px;
	border:1px solid #f76900;
	transition:background 200ms,color 350ms;
	margin:0;
	opacity:0;
	transition:opacity 250ms;
}

body.chrome.win #citrix2014-entry-box .entry__inner .subscribe-form .button,
body.gecko.win #citrix2014-entry-box .entry__inner .subscribe-form .button{
    padding: 6px 30px 7px 30px;
}
body.ie.win #citrix2014-entry-box .entry__inner .subscribe-form .button {
    padding: 7px 30px 7px 30px;
}

#citrix2014-entry-box .entry__inner .subscribe-form .button:hover {
	background:#fff;
	color:#f76900!important;
}

#citrix2014-entry-box .entry__inner.active .subscribe-form .button {
	opacity:1;
}

@media only screen and (max-width: 960px) {
	#citrix2014-entry-box {
		background-position:-464px top;
	}

	#citrix2014-entry-box .entry__inner {
		width:100%;
	}

	#citrix2014-entry-box .entry__close {
		left:auto;
		right:16px;
	}

	#citrix2014-entry-box .entry__inner .headline,
	#citrix2014-entry-box .entry__inner .text.default {
		display:none!important;
	}

	#citrix2014-entry-box .entry__inner .subscribe-form {
		width:inherit!important;
		right:inherit;
		margin:0 50px 0 110px;
	}

	#citrix2014-entry-box .entry__inner .subscribe-form .email,
	#citrix2014-entry-box .entry__inner.active .subscribe-form .email {
		width:20%!important;
	}

	#citrix2014-entry-box .entry__inner .subscribe-form .chkbox {
		width:150px;
	}

	#citrix2014-entry-box .entry__inner .subscribe-form .chkbox label {
		padding-left:23px;
	}

	#citrix2014-entry-box .entry__inner .subscribe-form .button {
		opacity:1!important;
		padding:9px 10px 3px;
	}

    body.chrome.win #citrix2014_exit_content form input.button
    body.gecko.win #citrix2014_exit_content form input.button{
        padding: 6px 10px 7px 10px;
    }
    body.ie.win #citrix2014_exit_content form input.button {
        padding: 7px 10px 7px 10px;
    }

	#citrix2014-entry-box .entry__inner .text.ok,
	#citrix2014-entry-box .entry__inner .text.err,
	#citrix2014-entry-box .entry__inner .text.chk,
	#citrix2014-entry-box .entry__inner .subscribe-form .chkbox label {
		font-size:1.1em;
	}

	#citrix2014-entry-box .entry__inner .text.ok,
	#citrix2014-entry-box .entry__inner .text.err,
	#citrix2014-entry-box .entry__inner .text.chk {
		width:150px;
		padding-top:12px;
		right:70px;
	}
}