#widgets {
	font-family: 'Open Sans', sans-serif;
	position: fixed;
	z-index: 1;
}

#widgets .widget-right {
	position: fixed;
	display: none;
	right: 0px;
	top: 260px;
	text-align: center;
	max-width: 80px;
	color: #fff;

	/* properties to animate!
	 * the ".animate" class will take care
	 * of resetting these! */
	opacity: 0;
	right: -10px;

	-webkit-transition: all ease-out 0.1s;
	-moz-transition: all ease-out 0.1s;
	-ms-transition: all ease-out 0.1s;
	-o-transition: all ease-out 0.1s;
	transition: all ease-out 0.1s;
}

#widgets .widget-right.showing {
	display: block;
}

#widgets .widget-right.animate {
	right: 0px;
	opacity: 1;
}

.layout-xs #widgets .widget-right.showing {
	display: none;
}

#widgets .widget-right a,
#widgets .widget-right span {
	display: block;
	color: #fff;
}

#widgets .widget-right span.icon {
	font-size: 10px;
	line-height: 1em;
}

#widgets .widget-right span.text {
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.3em;
	letter-spacing: 0.21em;
	padding-top: 3px;
}

#widgets .widget-right .main {
	position: relative;
	display: block;
	z-index: 1;
	background: #1a3383;
	padding: 10px 0px;
}

#widgets .widget-right .main span.icon {
	font-size: 27px;
}

#widgets .widget-right .main span.text {
	font-weight: 800;
	font-size: 8px;
	letter-spacing: 0.12em;
}

#widgets .widget-right .options {
	position: relative;
	display: none;
	z-index: 0;
	background: #f36983;

	/* properties to animate!
	 * the ".animate" class will take care
	 * of resetting these! */
	opacity: 0;
	margin-top: -10px;

	-webkit-transition: all ease-out 0.1s;
	-moz-transition: all ease-out 0.1s;
	-ms-transition: all ease-out 0.1s;
	-o-transition: all ease-out 0.1s;
	transition: all ease-out 0.1s;
}

#widgets .widget-right .options.showing {
	display: block;
}

#widgets .widget-right .options.animate {
	margin-top: 0px;
	opacity: 1;
}

#widgets .widget-right .options:before {
	position: absolute;
	display: block;
	content: ' ';
	left: 50%;
	top: -6px;
	width: 8px;
	height: 8px;
	margin-left: -4px;
	background: #1a3383;

	-webkit-transform: rotateZ(45deg);
	-moz-transform: rotateZ(45deg);
	-ms-transform: rotateZ(45deg);
	-o-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

#widgets .widget-right .options a {
	background: #ec0531;
	margin-top: 1px;
	padding: 9px 6px 6px;
}

#widgets .widget-right .options a:first-child {
	margin-top: 0px;
}

#widgets .widget-right .options a:hover {
	background: #d30018;
}





/* COOKIES! */

#cookies {
	display: none;
	font-size: 13px;
	text-align: center;
	border-bottom: 1px solid #e9ecf3;
	padding: 10px;
}

#cookies .btn {
	padding: 7px 15px;
	margin: 0px 5px;
}

#cookies .close {
	margin-top: 3px;
}





/* INCOMPATIBILITY WINDOW */

#incompat_overlay {
	position: fixed;
	display: none;
	z-index: 999;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
}

#incompat {
	position: absolute;
	display: none;
	z-index: 1000;
	left: 50%;
	top: 60px;
	background: #fff;
	padding: 20px;
	margin: 0px;
	font-size: 14px;
	text-align: center;

	width: 360px;
	margin-left: -180px;
}

.layout-xs #incompat {
	top: 30px;
	width: 290px;
	margin-left: -145px;
}

#incompat h5 {
	margin: 0px 0px 20px;
}

#incompat .browser-column {
	padding: 10px 5px;
}

#incompat .browser-column img {
	display: block;
	margin: 0px auto 5px;
}