/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block; }
body {
	line-height: 1; }
ol, ul {
	list-style: none; }
blockquote, q {
	quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none; }
table {
	border-collapse: collapse;
	border-spacing: 0; }


/* #Basic Styles
================================================== */
html {
    /*-webkit-font-smoothing: antialiased;*/
}

body {
	background: #fff;
	font: 16px/22px Arial, Helvetica, sans-serif;
	color: #666;
	-webkit-text-size-adjust: 100%;
}
#wrapper.fixed {
    position:fixed;
}
hr { 
	width:470px;	 
	clear: both; 
	margin: 45px 0 0; 
	height: 10px; 
	border:none;
}


/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
	color: inherit;
	font-weight: normal; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
h1 { font-size: 64px; line-height: 70px; margin-bottom: 12px; font-family:"Gotham A", "Gotham B"; } /* 64px/70px 4em/1.1em */
h2 { font-size: 48px; line-height: 54px; margin-bottom: 12px; font-family:"Gotham A", "Gotham B"; } /* 48px/50px 3em/1.1em */
h3 { font-size: 24px; line-height: 24px; margin-bottom: 6px;  font-family:"Gotham A", "Gotham B"; } 
h4 { font-size: 21px; line-height: 24px;  font-family:"Gotham A", "Gotham B"; } /* 24px/26px 1.5em/1.1em */
h5 { font-size: 16px; line-height: 22px; font-weight: 800; } /* 21px/26px 1.2em/1.1em */
h6 { font-size: 14px; line-height: 18px; } /* 14px/21px /1.1em*/
.subheader { color: #777; }

p { margin: 0 0 20px 0; }
p img { margin: 0; }

em { font-style: italic; }
strong { font-weight: bold;  }
small { font-size: 80%; }

/*	Blockquotes  */

blockquote cite { display: block; font-size: 12px; color: #555; }
blockquote cite:before { content: "\2014 \0020"; }
blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	
/* #Links
================================================== */	



/* #Lists
================================================== */
ul, ol { margin-bottom: 0px; }
ul { list-style: none outside; }
ol { list-style: decimal; }
ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
ul.square { list-style: square outside; }
ul.circle { list-style: circle outside; }
ul.disc { list-style: disc outside; }
ul ul, ul ol,
ol ol, ol ul { margin: 0; font-size: 90%;  }
ul ul li, ul ol li,
ol ol li, ol ul li { margin-bottom: 6px; }
li { line-height: 22px; margin-bottom: 12px; }
ul.large li { line-height: 21px; }


/* #Images
================================================== */
img.scale-with-grid {
	max-width: 100%;
	height: auto; }


/* #Buttons
================================================== */
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	background: #eee; /* Old browsers */
	background: #eee -moz-linear-gradient(top, rgba(255,255,255,.2) 0%, rgba(0,0,0,.2) 100%); /* FF3.6+ */
	background: #eee -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.2)), color-stop(100%,rgba(0,0,0,.2))); /* Chrome,Safari4+ */
	background: #eee -webkit-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Chrome10+,Safari5.1+ */
	background: #eee -o-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Opera11.10+ */
	background: #eee -ms-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* IE10+ */
	background: #eee linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* W3C */
	border: 1px solid #aaa;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	color: #444;
	display: inline-block;
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
	text-shadow: 0 1px rgba(255, 255, 255, .75);
	cursor: pointer;
	margin-bottom: 20px;
	line-height: normal;
	padding: 8px 10px;
	-webkit-appearance: none;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	color: #222;
	
	border: 1px solid #888;
	border-top: 1px solid #aaa;
	border-left: 1px solid #aaa;
    outline:0;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	border: 1px solid #666;
	
    outline:0;
}

.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
	width: 100%;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: center;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}


/* #Forms
================================================== */

form {
	margin-bottom: 20px; }
fieldset {
	margin-bottom: 20px; }
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
	border: 1px solid #ccc;
	padding: 6px 20px;
	outline: none;

	color: #777;
	margin: 0;
	width: 210px;
	max-width: 100%;
	display: block;
	margin-bottom: 10px;
	background: #fff;
}
input[type="date"] {
	padding: 2px 20px;
}
select {
	padding: 0; }
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
.btn:focus,
input[type="submit"]:focus {
	
	/*color: #444;*/
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow:  none;
    outline:0;
}
textarea {
	min-height: 60px; }
label,
legend {
	display: block;
	font-weight: bold;
	font-size: 13px;  }
select {
	width: 220px; }
input[type="checkbox"] {
	display: inline; }
label span,
legend span {
	font-weight: normal;
	font-size: 13px;
	color: #444; }

/* #Misc
================================================== */
.remove-bottom { margin-bottom: 0 !important; }
.half-bottom { margin-bottom: 10px !important; }
.add-bottom { margin-bottom: 20px !important; }

@charset "UTF-8";.center-ul{position:relative;float:right;left:-50%;text-align:left}.center-ul ul{position:relative;left:50%;overflow:auto;list-style:none;margin:0}.center-ul ul li{float:left}body{width:100%;height:100%}@media only screen and (min-width: 1024px) and (max-width: 1279px){body{font-size:13px}}div,input[type="text"],input[type="password"],input[type="email"],input[type="number"],input[type="tel"],header,li,ul,.interact a,aside,.input a,.btn,textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,#wrapper{height:100%}#wrapper{width:100%;position:relative}img{max-width:100%;height:auto;display:block}@media only screen and (max-width: 568px), only screen and (max-device-width: 570px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-device-width: 640px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait){#container img,#container video,#container embed,#container object,#container iframe{max-width:100% !important;height:auto !important}}.post-password-form{margin:21px}.post-password-form input{border-radius:20px}.post-password-form input[type="submit"]{background-color:#702082;color:#fff}body{color:#444;font-family:"Gotham SSm A","Gotham SSm B"}input{font-family:"Gotham SSm A","Gotham SSm B"}h1,h2,h3,h4,h5,h6,.btn,.intro_big{text-rendering:optimizeLegibility}h1{font-weight:900}h2{font-weight:900}h3{font-weight:900;font-family:"Gotham A","Gotham B"}h4{font-weight:800}h5{font-weight:800}h6{font-weight:800}p{font-weight:400;font-size:16px}.sub{font-weight:400;font-size:13px;clear:both}strong{font-weight:800}.intro_big{font-weight:400;font-size:21px;line-height:24px;color:#3c1053;margin-bottom:20px}.intro_small{font-weight:800;font-size:16px;line-height:22px;color:#702082;margin-bottom:20px}.tel{font-weight:800;color:#702082}a,a.btn:hover,#header a:hover{text-decoration:none}a,a:visited{color:#03b0ea;font-family:inherit;font-weight:inherit}a.disabled{color:#fff}a.disabled:hover{color:#fff}a:hover,a:active{outline:none}a:hover,a:visited:hover,a:active,a:focus,#nav a:hover,#subnav a:hover,.cmntauthor a:hover{text-decoration:underline}a[rel=external],a.external{background:url(img/external.png) no-repeat 100% 50%;padding:0 13px 0 0}a[rel=tag],a.tag{text-decoration:none;font-size:11px;background:url(img/tag.png) no-repeat;margin:0 3px 0 2px;padding:1px 6px 1px 13px;white-space:nowrap}a[rel=tag]:hover,a.tag:hover{background-position:0 -20px}a.customerservice{color:#e63888}a.mypages{color:#fbdd40}::-webkit-input-placeholder{font-weight:400;font-size:16px;color:#888}:-moz-placeholder{font-weight:400;font-size:16px;color:#888;line-height:1.2em}::-moz-placeholder{font-weight:400;font-size:16px;line-height:1.2em;color:#888}:-ms-input-placeholder{font-weight:400;font-size:16px;color:#888;line-height:1.2em}.buy-preamble ::-webkit-input-placeholder{font-weight:400;font-size:16px;line-height:30px;color:#a7a8aa}.buy-preamble :-moz-placeholder{font-weight:400;font-size:16px;line-height:30px;color:#a7a8aa}.buy-preamble ::-moz-placeholder{font-weight:400;font-size:16px;line-height:30px;color:#a7a8aa}.buy-preamble :-ms-input-placeholder{font-weight:400;font-size:16px;line-height:30px;color:#a7a8aa}input[type="text"],input[type="password"],input[type="email"],input[type="number"],input[type="tel"],input[type="date"],select{font-family:"Gotham SSm A","Gotham SSm B";font-weight:400;color:#000;line-height:1.2em}input[type="checkbox"]{float:left}select{width:100%;height:40px;padding:6px 20px;border-radius:20px;font-size:16px;-webkit-appearance:none;-moz-appearance:none;background-repeat:no-repeat;background-position:right 16px top 14px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAATCAQAAABSdmcGAAABRklEQVR4AZ2PP0tCcRSGj10Io3/QINEQ9G9ybxIagj5Bo0NDg1+htaGhwaXpmRwLigYh11wKgiBwdAiiwUESBxNLuLcDhnoOpl15lnvP+74P/IQlCjRocccmEpMNXbX4VMOycEX0S51MLE2Gen97IzSJ+nTI/luTpTO8FO6Jhgg5JTFRktBWaHYPwhZvRIZLkmM1SW3YxTvbgrDKkwseSf2pSWlq28+sIb1wjmsXvpIeqUlrYpu3zCPI4NVnrtDkwGv00nStc2Z62XDtiC9T6pIzmhxdk39zPEjFVPf4IDLkCRAlIO+SBvuIERl2qLpBkQWl6K5VbYoVeVYou9GLYi9lbckkkTBLgWgMBW3IGJHhhHCkJNRELF7kOaTtNbT1KnFFwi41o6npRaYRCetU+pqK/sm0ImGREpFS0i+JK7IEXCjBpN4P/4CO9AJC9n4AAAAASUVORK5CYII=);background-size:18px 10px}select::-ms-expand{display:none}input[type='checkbox']{opacity:0;float:left;width:1px}input[type='checkbox']+label{margin:0;clear:none;padding:0;cursor:pointer;font-weight:400;font-size:14px;margin-bottom:20px}input[type='checkbox']+label span{width:25px;height:25px;background:url(img/sprite.png) -4px -181px no-repeat;background-size:90px;margin:-5px 5px 0 -8px}input[type='checkbox']+label span{float:left}input[type='checkbox']:checked+label span{background:url(img/sprite.png) -34px -181px no-repeat;background-size:90px}label.error{color:#e63888}input.error{border-color:#e63888}fieldset input[type="text"]{height:40px;border-radius:20px}.wpcf7-checkbox input[type='checkbox'],.chk input[type='checkbox']{position:absolute}.wpcf7-checkbox label,.chk label{position:relative}.wpcf7-checkbox label input[type='checkbox']:checked+span:before,.chk label input[type='checkbox']:checked+span:before{background:url(img/sprite.png) -34px -181px no-repeat;background-size:90px}.wpcf7-checkbox label span,.chk label span{position:relative}.wpcf7-checkbox label span:before,.chk label span:before{content:'';display:inline-block;position:relative;top:5px;left:-3px;width:25px;height:25px;background:url(img/sprite.png) -4px -181px no-repeat;background-size:90px}.btn_primary_purple .btn{color:#fff !important;background-color:#702082 !important;border:1px solid #702082 !important}.btn_primary_blue .btn{color:#fff !important;background-color:#00a9e0 !important;border:1px solid #00a9e0 !important}.btn_primary_darkpurple .btn{color:#fff !important;background-color:#3c1053 !important;border:1px solid #3c1053 !important}.btn_primary_pink .btn{color:#fff !important;background-color:#e63888 !important;border:1px solid #e63888 !important}.btn_primary_white .btn{color:#000 !important;background-color:#fff !important;border:1px solid #fff !important}.btn.btn_secondary_grey{color:#fff !important;background-color:#a7a9ac !important;border:1px solid #a7a9ac !important}.bg_color_blue{background-color:#00a9e0 !important}.bg_color_darkpurple{background-color:#3c1053 !important}.bg_color_purple{background-color:#702082 !important}.bg_color_pink{background-color:#e63888 !important}.bg_color_white{background-color:#fff !important}.slot .text .pink{color:#e63888 !important}.slot .text .darkpurple{color:#3c1053 !important}.slot .text .purple{color:#702082 !important}.slot .text .white{color:#fff !important}.bg_color_pink .white,.bg_color_darkpurple .white,.bg_color_purple .white,.bg_color_blue .white{color:#fff !important}.bg_color_pink .purple,.bg_color_darkpurple .purple,.bg_color_purple .purple,.bg_color_blue .purple{color:#702082 !important}.bg_color_pink .darkpurple,.bg_color_darkpurple .darkpurple,.bg_color_purple .darkpurple,.bg_color_blue .darkpurple{color:#3c1053 !important}.bg_color_pink .pink,.bg_color_darkpurple .pink,.bg_color_purple .pink,.bg_color_blue .pink{color:#e63888 !important}.full-screen,section.full-screen{width:100%;height:100%;padding:0}.full-screen h1,section.full-screen h1{color:#fff}.full-screen .full-screen-fader,section.full-screen .full-screen-fader{width:100%;height:100%;background:rgba(0,0,0,0.3);position:absolute;top:0;left:0}.full-screen .container,section.full-screen .container{position:relative}.full-screen .large-content,section.full-screen .large-content{float:none}.full-screen .img-blurb .img-blurb-content,section.full-screen .img-blurb .img-blurb-content{left:-30px;top:-20px}.full-screen .img-blurb .icon,section.full-screen .img-blurb .icon{width:199px;height:113px;background:url(img/icons/puff-two-drops.png)}.slot .text h3{font-weight:400}.icon-left .text{width:48.4375em;float:right}.icon-right .text{width:48.4375em;float:left}.headergraphic{margin-bottom:1.5em}.slot{padding:0}.slot.dynamic{height:auto}.slot .container{position:relative;padding:70px 0 85px}.slot .icon{padding:0 25px}.slot .center-vertical-holder{width:100%}.slot.business{height:33%;min-height:33%}.slot.business.div-overflow{height:auto !important}.slot.business.has-bg:not(.fullscreen){height:33%;min-height:33%}.slot.business.fullscreen{height:66%}.slot.business.fullscreen p{font-size:16px;line-height:22px}.slot.business .container{padding:0;height:100%}.slot.business .content{height:100%}.slot.business .content p{max-width:100%}.slot.business.white-theme .text .preamble,.slot.business.white-theme .text p{color:#702082}.slot.business.white-theme .text h1,.slot.business.white-theme .text h2,.slot.business.white-theme .text h3,.slot.business.white-theme .text h4{color:#3c1053}.slot.business.dark-purple-theme h1,.slot.business.dark-purple-theme h2,.slot.business.dark-purple-theme h3,.slot.business.dark-purple-theme h4,.slot.business.dark-purple-theme h5,.slot.business.dark-purple-theme h6{color:#fff}.slot.business .img{float:right;width:320px;height:320px;border-radius:50%;background-size:cover;background-position:center;margin:40px 0}.slot.business .text{width:48.4375em;padding:40px 0}.slot.business .text .preamble{font-size:20px;font-weight:800;margin-bottom:5px}.slot.business .text .btn{border:1px solid #fff;background:#fff;color:#702082}.slot.business:not(.has-bg) .btn{border-color:#702082}.slot.icon-left .content{margin-right:0 !important}.slot.icon-left .full-height-holder{float:left}.slot.icon-left .icon{float:left}.slot.icon-right .content{margin-left:0 !important}.slot.icon-right .full-height-holder{float:right}.slot.icon-right .icon{float:right}.slot .content :last-child{margin-bottom:0}.slot .content p{max-width:550px}.slot .btn{margin-top:10px}.text-center p{margin:0 auto}@media only screen and (max-width:959px){.dynamic .container .content .text{max-width:350px}}.icon-left .icon{left:0}.icon-left .text{margin-right:0 !important}.icon-right .icon{right:0}.icon-right .text{margin-left:0 !important}.icon{position:absolute}.icon .icon-yellow-lightning{width:116px;height:191px;background:url(img/icons/lightning.png) no-repeat}.icon.yellow-lightning+.text{margin:0 175px}.icon .icon-two-bubbles{width:290px;height:169px;background:url(img/icons/customer-service-icon.png) no-repeat}.icon.two-bubbles+.text{margin:0 350px}.icon .icon-pink-bubble{width:243px;height:163px;background:url(img/icons/puff-one-drop.png) no-repeat}.icon.pink-bubble+.text{margin:0 305px}.slot.dynamic{padding:0;height:auto !important;min-height:inherit !important}.slot.dynamic.has-bg{padding:75px 0}.slot.normal{height:auto;padding:40px 0;overflow:hidden}.slot.normal .container{padding:0}.slot.normal .container,.slot.normal .content{height:100%}.slot.has-bg:not(.fullscreen){height:75%;min-height:550px;overflow:hidden}.slot.has-bg:not(.fullscreen) .container{padding:0}.slot.has-bg:not(.fullscreen) .container,.slot.has-bg:not(.fullscreen) .content{height:100%}.bgimg{position:absolute;top:0;right:0;bottom:0;left:0}.bg-repeat,.bg-repeat .bgimg{background-repeat:repeat}.bg-center,.bg-center .bgimg,.bg-fullsize .bgimg{background-repeat:no-repeat;background-position:center;background-size:cover}.bg-fullsize,.bg-fullsize .bgimg{background-size:cover;background-position:top left;background-repeat:no-repeat}.text-left{text-align:left}.text-center{text-align:center}.text-bottom .center-vertical{vertical-align:bottom}.text-bottom .center-vertical .text{padding-bottom:80px}.campaign-energicheck span.house,.campaign-energicheck span.apartment,.campaign-energicheck span.weekender{padding-right:2%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;*behavior:url(boxsizing.htc)}.campaign-energicheck .input-wrap{float:left;width:100%}.campaign-energicheck input[type="number"]{margin-top:1em;margin-right:2% !important}.campaign-energicheck .button-holder .btn{margin-right:0}.campaign-energicheck .button-holder>span{float:left}.campaign-energicheck .button-holder>span .btn{min-width:138px;float:none}.campaign-energicheck .button-holder button.apartment{background:url(img/350-apartment.png) no-repeat 50%;background-size:80px 25px;border-color:#49c5b1;font-size:0;min-height:40px;-ms-behavior:url(/backgroundsize.min.htc)}.campaign-energicheck .button-holder button.apartment:hover,.campaign-energicheck .button-holder button.apartment.active{background:#49c5b1 url(img/350-apartment-hover.png) no-repeat 50%;background-size:80px 25px}.IElte8 .campaign-energicheck .button-holder button.apartment{min-height:70px}.campaign-energicheck .button-holder button.house{background:url(img/650-house.png) no-repeat 50%;background-size:80px 25px;border-color:#49c5b1;font-size:0;min-height:40px;-ms-behavior:url(/backgroundsize.min.htc)}.campaign-energicheck .button-holder button.house:hover,.campaign-energicheck .button-holder button.house.active{background:#49c5b1 url(img/650-house-hover.png) no-repeat 50%;background-size:80px 25px}.IElte8 .campaign-energicheck .button-holder button.house{min-height:70px}.campaign-energicheck .button-holder button.weekender{background:url(img/350-weekender.png) no-repeat 50%;background-size:80px 25px;border-color:#49c5b1;font-size:0;min-height:40px;-ms-behavior:url(/backgroundsize.min.htc);min-width:135px}.campaign-energicheck .button-holder button.weekender:hover,.campaign-energicheck .button-holder button.weekender.active{background:#49c5b1 url(img/350-weekender-hover.png) no-repeat 50%;background-size:80px 25px}.IElte8 .campaign-energicheck .button-holder button.weekender{min-height:70px}@media only screen and (max-width:568px){.campaign-energicheck .button-holder span.apartment,.campaign-energicheck .button-holder span.house,.campaign-energicheck .button-holder span.weekender{background:none;width:100%;height:auto;margin-top:1em}.campaign-energicheck .button-holder .btn{width:100%}}.featured img{max-width:100%;height:auto}.ugc{word-wrap:break-word}.ugc .info-box{width:100%}.ugc h4{font-weight:900;color:#000}.ugc h4.kicker{font:24px/26px Arial,Helvetica,sans-serif}.ugc img,.ugc embed,.ugc object{max-width:100%}.ugc img{margin-bottom:30px}.ugc .alignleft{float:left;margin:0 1em 1.5em 0}.ugc .alignright{float:right;margin:0 0 1.5em 1em}.ugc .aligncenter{display:block;margin-left:auto;margin-right:auto}.ugc code,.ugc pre{font:1em/1.5 monospace;color:#888;margin-bottom:1.5em}.ugc .smalltext{font-size:12px;line-height:18px}.ugc div.smalltext{margin:0 0 20px 0}.ugc blockquote.pullquote{border:none}.ugc blockquote.pullquote,.ugc blockquote.pullquote p{font-size:24px;line-height:32px;font-weight:400;color:#702082;font-style:normal}.ugc blockquote{clear:both;margin:0 0 1.5em;padding:0 1.5em;border-left:2px solid #ccc}.ugc blockquote,.ugc blockquote p{font-style:italic;font-size:14px;color:#888}@media only screen and (min-width: 960px){.ugc blockquote{padding:0 1.5em}}.ugc cite{font-size:1em}.ugc q{font-style:italic;color:#333}.ugc q:before{content:"\201C"}.ugc q:after{content:"\201D"}.ugc table{margin:0 0 1.5em}.ugc th{text-align:left;border-bottom:1px solid #ddd;padding:.7em 1.4em .7em 0}.ugc td{padding:.7em 1.4em .7em 0}.ugc .gallery{margin:0 0 1.5em}.ugc .gallery img{border:none !important}.ugc .gallery-caption{font-size:1em;font-style:italic;line-height:1.5em;color:#888;word-wrap:break-word}.ugc ul,.ugc ol{margin:0 0 1.5em;padding:0}.ugc ul ul,.ugc ol ul,.ugc ul ol,.ugc ol ol{margin:0}.ugc li{margin:0 0 0 1.71428571em}.ugc ul li:not(.btn){list-style-type:disc}.ugc ol{counter-reset:item}.ugc ol li{display:block;position:relative;margin:0}.ugc ol li:before{margin-right:7px;margin-left:9px;content:counters(item, ".") ".";counter-increment:item}.ugc .faq-small .btn table ol li,.ugc .faq-small .btn table ul li{font-size:1em}.ugc span.wpcf7-not-valid-tip{display:none}.ugc .wpcf7-not-valid{border-color:#e63888}.ugc .wpcf7-response-output{border-color:#e63888;padding:20px;border-radius:20px;margin-left:0}.ugc legend{font-size:24px;font-family:"Gotham A","Gotham B";font-weight:900;color:#702082;margin-bottom:12px}.ugc fieldset h4{font-size:16px;font-weight:700;color:#000;margin-bottom:12px}.ugc fieldset input,.ugc fieldset textarea{padding-left:20px}.ugc input,.ugc textarea{font-size:16px;border-radius:20px}.ugc input.wpcf7-submit{float:left}.ugc img.ajax-loader{padding-top:10px;padding-left:10px}.ugc textarea{font-family:"Gotham SSm A","Gotham SSm B";font-weight:400;color:#000;line-height:1.2em}.ugc label,.ugc .wpcf7-radio span,.ugc label span,.ugc legend span{font-size:14px;font-weight:400;color:#444;margin-bottom:5px}.ugc td,.ugc th{padding:10px 15px}.ugc .wpcf7-radio input[type="radio"]{opacity:0;width:1px;position:absolute;cursor:pointer}.ugc .wpcf7-radio input[type="radio"]:checked+span{color:#000;font-weight:500}.ugc .wpcf7-radio input[type="radio"]:checked+span.wpcf7-list-item-label:before{background:#000}.ugc .wpcf7-radio span.wpcf7-list-item-label{position:relative;cursor:pointer}.ugc .wpcf7-radio span.wpcf7-list-item-label:before{content:'';display:inline-block;position:relative;top:5px;width:20px;height:20px;background:transparent;border:2px solid #000;border-radius:12px;margin:0 10px 0 0}.ugc fieldset{background-color:#eaeaea;border-radius:12px;padding:24px}.ugc fieldset legend{float:left}.ugc fieldset legend+*{clear:both}.ugc fieldset p input[type="text"],.ugc fieldset p input[type="password"],.ugc fieldset p input[type="email"],.ugc fieldset p input[type="number"],.ugc fieldset p input[type="tel"],.ugc fieldset p select{width:100%}.ugc fieldset input[type="text"],.ugc fieldset input[type="password"],.ugc fieldset input[type="email"],.ugc fieldset input[type="number"],.ugc fieldset input[type="tel"],.ugc fieldset input[type="date"],.ugc fieldset select{height:40px;border-radius:12px}.ugc fieldset textarea{border-radius:20px;width:100%}.ugc fieldset table input[type="text"]{display:inline}.ugc fieldset>fieldset{padding:0}.ugc td[valign="bottom"],.ugc th[valign="bottom"]{vertical-align:bottom}.ugc table{width:100%}.ugc table td,.ugc table th{line-height:18px}.ugc table thead{color:#702082;font-weight:400;border-radius:20px}.ugc table thead tr,.ugc table thead th{border:none}.ugc table thead tr:first-child,.ugc table thead tr.tableheader{background:#702082;color:#fff;font-weight:800;border-radius:20px}.ugc table thead tr:first-child td:first-child,.ugc table thead tr.tableheader td:first-child,.ugc table thead tr:first-child th:first-child,.ugc table thead tr.tableheader th:first-child{border-bottom-left-radius:20px;border-top-left-radius:20px}.ugc table thead tr:first-child td:last-child,.ugc table thead tr.tableheader td:last-child,.ugc table thead tr:first-child th:last-child,.ugc table thead tr.tableheader th:last-child{border-bottom-right-radius:20px;border-top-right-radius:20px}.ugc table thead+tbody tr:first-child:not(:last-child){background:#fff;color:#702082;font-weight:400}.ugc table thead+tbody tr:nth-child(odd):not(:first-child){background:#fff}.ugc table thead+tbody tr:nth-child(even){background:#eaeaea}.ugc table tbody{color:#702082;font-weight:400;border-radius:20px}.ugc table tbody tr,.ugc table tbody th{border:none}.ugc table tbody tr:first-child:not(:last-child),.ugc table tbody tr.tableheader{background:#702082;color:#fff;font-weight:800;border-radius:20px}.ugc table tbody tr:first-child:not(:last-child) td:first-child,.ugc table tbody tr.tableheader td:first-child,.ugc table tbody tr:first-child:not(:last-child) th:first-child,.ugc table tbody tr.tableheader th:first-child{border-bottom-left-radius:20px;border-top-left-radius:20px}.ugc table tbody tr:first-child:not(:last-child) td:last-child,.ugc table tbody tr.tableheader td:last-child,.ugc table tbody tr:first-child:not(:last-child) th:last-child,.ugc table tbody tr.tableheader th:last-child{border-bottom-right-radius:20px;border-top-right-radius:20px}.ugc table tbody tr:nth-child(even):not(.tableheader):not(.tablesubheader){background:#fff}.ugc table tbody tr:nth-child(odd):not(:first-child):not(.tableheader):not(.tablesubheader){background:#eaeaea}.ugc table tbody tr.tablesubheader td,.ugc table tbody tr.tablesubheader th{color:#000;background-color:#d7c3dc;font-weight:800}.ugc table tbody th:nth-child(odd):first-child{border-bottom-left-radius:20px;border-top-left-radius:20px}.ugc table tbody td:first-child{border-bottom-left-radius:20px;border-top-left-radius:20px}.ugc table tbody td:last-child{border-bottom-right-radius:20px;border-top-right-radius:20px}.ugc table.compact,.ugc table.compact_striped{font-size:12px}.ugc table.compact p,.ugc table.compact_striped p{font-size:12px}.ugc table.compact td,.ugc table.compact_striped td,.ugc table.compact th,.ugc table.compact_striped th{margin:0;padding:8px;background:#fff;color:#000}.ugc table.compact tr,.ugc table.compact_striped tr,.ugc table.compact thead,.ugc table.compact_striped thead,.ugc table.compact tbody,.ugc table.compact_striped tbody,.ugc table.compact td,.ugc table.compact_striped td,.ugc table.compact th,.ugc table.compact_striped th{border-radius:0 !important}.ugc table.compact tr,.ugc table.compact_striped tr{border-bottom:1px solid #eaeaea}.ugc table.compact tr:first-child:not(:last-child) td,.ugc table.compact_striped tr:first-child:not(:last-child) td,.ugc table.compact tr.tableheader td,.ugc table.compact_striped tr.tableheader td,.ugc table.compact thead tr td,.ugc table.compact_striped thead tr td,.ugc table.compact tr:first-child:not(:last-child) th,.ugc table.compact_striped tr:first-child:not(:last-child) th,.ugc table.compact tr.tableheader th,.ugc table.compact_striped tr.tableheader th,.ugc table.compact thead tr th,.ugc table.compact_striped thead tr th{background:#fff;color:#702082;font-weight:900;border-bottom:1px solid #702082}.ugc table.compact thead+tbody tr:first-child:not(:last-child) th,.ugc table.compact_striped thead+tbody tr:first-child:not(:last-child) th,.ugc table.compact thead+tbody tr:first-child:not(:last-child) td,.ugc table.compact_striped thead+tbody tr:first-child:not(:last-child) td{background:#fff;color:#000;font-weight:400;border-bottom:1px solid #eaeaea;border-radius:0 !important}.ugc table.compact tr.tablesubheader td,.ugc table.compact_striped tr.tablesubheader td,.ugc table.compact tr.tablesubheader th,.ugc table.compact_striped tr.tablesubheader th{color:#000;border-bottom:1px solid #000;background-color:#fff;font-weight:900}.ugc table.compact tr:first-child td:first-child,.ugc table.compact_striped tr:first-child td:first-child,.ugc table.compact tr:first-child td:first-child,.ugc table.compact_striped tr:first-child td:first-child,.ugc table.compact tr:first-child th:first-child,.ugc table.compact_striped tr:first-child th:first-child,.ugc table.compact tr:first-child th:first-child,.ugc table.compact_striped tr:first-child th:first-child{border-top-left-radius:10px !important}.ugc table.compact tr:first-child td:last-child,.ugc table.compact_striped tr:first-child td:last-child,.ugc table.compact tr:first-child td:last-child,.ugc table.compact_striped tr:first-child td:last-child,.ugc table.compact tr:first-child th:last-child,.ugc table.compact_striped tr:first-child th:last-child,.ugc table.compact tr:first-child th:last-child,.ugc table.compact_striped tr:first-child th:last-child{border-top-right-radius:10px !important}.ugc table.compact tr:last-child:not(:first-child) td:first-child,.ugc table.compact_striped tr:last-child:not(:first-child) td:first-child,.ugc table.compact tr:last-child:not(:first-child) td:first-child,.ugc table.compact_striped tr:last-child:not(:first-child) td:first-child,.ugc table.compact tr:last-child:not(:first-child) th:first-child,.ugc table.compact_striped tr:last-child:not(:first-child) th:first-child,.ugc table.compact tr:last-child:not(:first-child) th:first-child,.ugc table.compact_striped tr:last-child:not(:first-child) th:first-child{border-bottom-left-radius:10px !important}.ugc table.compact tr:last-child:not(:first-child) td:last-child,.ugc table.compact_striped tr:last-child:not(:first-child) td:last-child,.ugc table.compact tr:last-child:not(:first-child) td:last-child,.ugc table.compact_striped tr:last-child:not(:first-child) td:last-child,.ugc table.compact tr:last-child:not(:first-child) th:last-child,.ugc table.compact_striped tr:last-child:not(:first-child) th:last-child,.ugc table.compact tr:last-child:not(:first-child) th:last-child,.ugc table.compact_striped tr:last-child:not(:first-child) th:last-child{border-bottom-right-radius:10px !important}.ugc table.compact_striped tr:first-child:not(:last-child) td,.ugc table.compact_striped thead tr td,.ugc table.compact_striped tr:first-child:not(:last-child) th,.ugc table.compact_striped thead tr th{background:#702082;color:#fff;border:none}.ugc table.compact_striped tr:nth-child(odd):not(:first-child):not(.tableheader):not(.tablesubheader){border-bottom:none}.ugc table.compact_striped tr:nth-child(odd):not(:first-child):not(.tableheader):not(.tablesubheader) td,.ugc table.compact_striped tr:nth-child(odd):not(:first-child):not(.tableheader):not(.tablesubheader) th{background:#eaeaea}.ugc table.compact_striped thead+tbody tr:nth-child(odd):not(.tableheader):not(.tablesubheader) td,.ugc table.compact_striped thead+tbody tr:nth-child(odd):not(.tableheader):not(.tablesubheader) th{background:#eaeaea}.ugc .btn.content.blue{clear:both;float:none;display:inline-block}.ugc div.grid{margin:0 -8px 32px;padding:0;clear:both}.ugc div.grid.center h6{text-align:center}.ugc div.grid.center div img{display:block;margin:0 auto}.ugc div.grid div{width:100%;float:left;min-height:270px}@media only screen and (min-width:567px){.ugc div.grid div{width:33%}}.ugc div.grid div img{max-height:225px;width:auto;margin:0}.ugc div.grid div h6{margin:4px 0;min-height:3.5em}.wp-caption{text-align:left}.wp-caption img{margin:0}.wp-caption-text{font-size:1em;font-style:italic;line-height:1.5em;color:#888;word-wrap:break-word}.faq,.faq-small,.faq-search{z-index:999}.faq+.faq{z-index:99}.faq-small+*:not(.faq-small):not(section){margin-top:24px}.faq-small{clear:both;opacity:1}.faq-small.hide{opacity:0;height:0}.faq-small .btn{position:relative;background:#eaeaea;padding:10px 12px 10px 48px;color:#702082;border-radius:20px;font-weight:500;font-size:16px;line-height:22px;margin-bottom:6px;cursor:default;text-align:left;overflow:hidden}.faq-small .btn:hover{background:#eaeaea;color:#e63888}.faq-small .btn span a,.faq-small .btn p a,.faq-small .btn p a:visited{color:#00a9e0}.faq-small .btn.active p:before{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.faq-small .btn>p{margin-bottom:0;cursor:pointer}.faq-small .btn>p:before{content:'';width:20px;height:14px;background:url(img/sprite.png) -5px -97px no-repeat;background-size:90px;display:block;position:absolute;top:13px;left:18px}.faq-small .btn p:last-child{margin-bottom:0}.faq-small .btn>div{color:#444;width:48.4375em;max-width:100%;font-weight:400;padding:0;display:none}.faq-small .btn.active{height:auto}.faq-small .btn.active>div{padding:6px 0 6px;display:block}.faq-small .btn li{list-style:initial;font-weight:400;font-size:16px;line-height:22px}.faq-small.info .btn.active p:before{transform:rotate(0deg);-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg)}.faq-small.info .btn>p:before,.faq-small.info .btn.active>p:before{top:10px;width:20px;height:20px}.faq-small.info .btn>p:before{background:url(img/sprite.png) -5px -155px no-repeat;background-size:90px}.faq-small.info .btn.active>p:before{background:url(img/sprite.png) -35px -155px no-repeat;background-size:90px}.faq-small table{font-size:12px}.search-results:not(body){color:#fbdd40;font-weight:800}.faq-search{background-size:cover}.faq-search .container{height:400px;padding:0}.faq-search .container .holder{height:100%}.faq-search .container .center-vertical-holder{margin:0 auto}.faq-search input{width:100%;padding:5px 20px;font-size:16px;text-align:left;margin-top:0;margin-bottom:0;border-color:#fff}.faq-search .input{margin-bottom:10px;height:auto}.faq-search .input,.faq-search input{position:relative;width:100%}.faq-search .input span,.faq-search input span{display:block;position:absolute;top:5px;right:20px;width:30px;height:30px;background:url(img/sprite.png) -1px -60px no-repeat;background-size:90px;cursor:pointer}.faq-compact-search{padding:16px 0 8px}.faq-compact-search form{margin:0}.faq-compact-search input[type="text"]{border:none;background:none;padding:6px 20px;font-size:1.75em;color:#3c1053}.faq-compact-search input[type="text"]::placeholder{font-size:inherit;color:#702082}.faq-compact-search .input{padding-left:36px;margin-right:20px}.faq-compact-search .input::before{content:' ';display:block;position:absolute;top:1px;left:0;width:40px;height:40px;background:url(img/sprite.png) 0 -80px no-repeat;background-size:120px}.faq.grey-bg{background-color:#eaeaea}.faq .head h2{display:inline}.faq .head h2,.faq .head .btn{vertical-align:middle;margin-bottom:0}.faq .head h2{margin-right:48px;font-size:28px}.faq .input{margin-right:10px}.faq input.btn{margin-right:0}.faq input[type="text"]{display:inline;text-align:left;width:23.4375em}.faq h2.faq-category-head{position:relative;padding-left:32px;margin-left:-32px;font-size:24px;color:#444;cursor:pointer}.faq h2.faq-category-head:before{content:' ';display:block;position:absolute;top:16px;left:0;width:24px;height:24px;background:url(img/arrow_r.svg) 8px 1px no-repeat;background-size:10px 20px;background-repeat:no-repeat;-webkit-transition:all .3 ease-in-out;transition:all .3 ease-in-out}.faq h2.faq-category-head.active:before{-webkit-transform:rotate(90deg);-webkit-transform-origin:50% 50%;transform:rotate(90deg);transform-origin:50% 50%;background-position:6px 1px}@media only screen and (max-width:767px){.faq h2.faq-category-head{margin-left:0}.faq h2.faq-category-head:before{top:8px}}.faq .list{padding:0 16px 0 0}.faq .list li{margin-bottom:16px}.faq .list a{color:#702082}.faq .list p{margin-bottom:0}.faq .list strong{color:#702082;font-weight:400}.faq .list .active p strong{font-weight:800}.faq .btn{min-width:155px}.no-pageresult{z-index:10}.no-pageresult .container{text-align:center}.no-pageresult h2{display:block;margin-bottom:30px;margin-right:0}.no-pageresult.grey-bg{background-color:#eaeaea}.no-pageresult .input{margin-right:10px}.no-pageresult input.btn{margin-right:0}.no-pageresult input[type="text"]{display:inline;text-align:left;width:23.4375em}.no-pageresult .btn{min-width:155px;vertical-align:middle;margin-bottom:0}.input{position:relative;display:inline-block}.input input{border:1px solid rgba(0,0,0,0.25)}.input input[type="text"].results{border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom:0}.input input,.input+.btn{height:40px}.input .results.show{display:block}.input div.results{display:none;position:absolute;top:40px;left:0;width:100%;background:#fff;border-bottom-left-radius:20px;border-bottom-right-radius:20px;z-index:100;border:1px solid rgba(0,0,0,0.25);border-top:0;text-align:left}.input div.results ul li.active{background-color:#fbdd40;border-radius:20px}.input div.results a{display:block;font-weight:500;font-size:14px;color:#702082}.input div.results a:hover{color:#e63888}.input div.results a p{margin-bottom:0}.input div.results ul{clear:both;float:left;border-bottom:1px solid #a7a9ac;width:100%}.input div.results ul:last-child{border-bottom:none}.input div.results ul:empty{border:none}.input div.results li{position:relative;margin:0 10px 5px;padding:5px}.input div.results li:last-of-type{margin-bottom:20px}.input div.results li:first-child{margin-top:20px}.input div.results span{font-size:16px;color:#702082}.input div.results span.search_parent{font-weight:400;font-size:12px;color:#a7a9ac;clear:both}.input div.results p{font-weight:400;font-size:14px}.input div.results .show-all-results{clear:both;display:block;text-align:center;color:#444;padding:5px 0;margin:0}.input div.results .keyword-result span{display:inline-block}.input div.results .keyword-result span::first-letter{text-transform:uppercase}.input div.results .keyword-result a:hover span{color:#e63888}.input div.results p.resultheader{margin:5px 5px 5px 15px}.input div.results p.resultheader strong{font-weight:700;color:#444;font-size:14px}.input div.results ul+p.resultheader{clear:both;padding-top:10px}.input div.results .faq-result li{background:#eaeaea;border-radius:12px}.input div.results .faq-result li a{display:block;padding-left:30px;color:#702082}.input div.results .faq-result li a:before{content:' ';display:block;position:absolute;top:5px;left:7px;width:20px;height:20px;background:url(img/sprite.png) -5px -155px no-repeat;background-size:90px}.input div.results .forum-result li{margin:0 5px 5px 10px;padding:5px;background:#fff}.input div.results .forum-result li a,.input div.results .forum-result li strong{color:#702082}.input div.results .forum-result li:first-child{margin-top:0}.input div.results .page-result li{background:#fff}.input div.results .page-result a{font-weight:800;font-size:16px;color:#444}.faq-search .input div.results .faq-result li:first-child{margin-top:0}.faq-compact-search .input div.results{top:50px;left:50px;border-top-left-radius:12px;border-top-right-radius:12px}.faq-compact-search .input div.results .faq-result li:first-child{margin-top:0}.faq-compact-search .input div.results p.resultheader{margin:12px 17px 12px 15px}.faq-compact-search .input div.results:before{content:'';display:block;position:absolute;top:-10px;left:70px;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid #fff}.faq-answers .faq-small li:last-child{margin-bottom:40px}.faq-answers .answer-text .big{color:#702082;font-size:18px;margin-bottom:12px}.faq-answers .answer-text a{color:inherit}.faq-answers .large-content{margin-left:0}.faq-answers span.search_parent{font-weight:400;font-size:.8em;color:#a7a9ac;clear:both}.top-answers{margin:60px 0 0;clear:both;position:relative;overflow:hidden}.top-answers .answer{width:35.9375em;float:left;margin-right:1.5625em;margin-bottom:30px;padding-right:10px}@-moz-document url-prefix(){}.top-answers .answer a{color:#444}.top-answers .answer a:hover{text-decoration:none;color:#000}.top-answers .answer .text{float:left;width:calc(100% - 130px)}.top-answers .answer:nth-child(even){margin-right:0}.top-answers .answer h4{color:#702082;margin-bottom:20px}.top-answers .answer .img{width:100px;height:100px;float:left;border-radius:50px;overflow:hidden;margin-right:30px;background-size:cover;background-position:center}.answer-text a{color:#444}.answer-text a:hover{text-decoration:none;color:#000}input.btn{margin-right:10px}.btn:last-child{margin-right:0}body:not(.toplevel-foretag):not(.toplevel-om-oss) .newsfeed-holder .btn.active{background:#e63888 !important;border-color:#e63888 !important;color:#fff !important}.btn,input[type="submit"]{display:inline-block;background:transparent;border:1px solid transparent;border-radius:20px;padding:10px 27px;text-shadow:none;text-align:center;font-family:"Gotham SSm A","Gotham SSm B";font-weight:500;font-size:16px;line-height:18px;cursor:pointer;margin-right:10px;margin-bottom:0;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-transition:all .2s ease;-moz-transition:all .2s ease;-o-transition:all .2s ease;-ms-transition:all .2s ease;transition:all .2s ease}.btn a:visited,input[type="submit"] a:visited{color:inherit}.btn.default,input[type="submit"].default{background:#e63888;color:#fff}.btn.default a,input[type="submit"].default a{color:inherit}.btn.default:hover,input[type="submit"].default:hover{background:#e63888;color:#fff}.btn.default:hover a,input[type="submit"].default:hover a{text-decoration:none}.btn.huge,input[type="submit"].huge{background:#3c1053;color:#fff;padding:20px 30px;border-radius:50px;margin-bottom:10px}.btn.small,input[type="submit"].small{padding:5px 20px}.btn.full-width,input[type="submit"].full-width{width:100%}.btn .big,input[type="submit"] .big{font-size:16px;font-weight:800}.btn .small,input[type="submit"] .small{font-size:12px}.btn.purple,input[type="submit"].purple{background:#702082;color:#fff}.btn.purple.active,input[type="submit"].purple.active{border-color:#702082;background:#fff;color:#702082}.btn.purple .small,input[type="submit"].purple .small{color:#fff !important;opacity:.75}.btn.purple-transparent,input[type="submit"].purple-transparent{background:transparent;border-color:#702082;color:#702082}.btn.purple-transparent:hover,input[type="submit"].purple-transparent:hover,.btn.purple-transparent.active,input[type="submit"].purple-transparent.active{background:#702082;color:#fff}.btn.dark-purple,input[type="submit"].dark-purple{background:#3c1053;color:#fff}.btn.dark-purple.active,input[type="submit"].dark-purple.active{border-color:#3c1053;background:#fff;color:#3c1053}.btn.dark-purple .small,input[type="submit"].dark-purple .small{color:#fff !important;opacity:.75}.btn.orange,input[type="submit"].orange{color:#f4633a;border-color:#f4633a;background-color:transparent}.btn.orange:hover,input[type="submit"].orange:hover,.btn.orange.active,input[type="submit"].orange.active{color:#3c1053;background-color:#f4633a}.btn.green,input[type="submit"].green{background-color:#49c5b1;color:#fff}.btn.green.active,input[type="submit"].green.active{border-color:#49c5b1;background-color:#fff;color:#49c5b1}.btn.white,input[type="submit"].white{border-color:#fff;color:#fff;background-color:transparent}.btn.white.active,input[type="submit"].white.active{background-color:#fff;color:#000}.btn.white-full,input[type="submit"].white-full{border-color:#fff;color:#702082;background:#fff}.btn.white-full.active,input[type="submit"].white-full.active{background:#fff;color:#3c1053}.btn.white-full:hover,input[type="submit"].white-full:hover{color:#3c1053}.btn.grey,input[type="submit"].grey{border-color:#a7a9ac;color:#a7a9ac;background-color:transparent}.btn.grey:hover,input[type="submit"].grey:hover,.btn.grey.active,input[type="submit"].grey.active{background:#a7a9ac;color:#fff}.btn.grey-full,input[type="submit"].grey-full{border-color:#a7a9ac;background:#a7a9ac;color:#fff}.btn.grey-full.active,input[type="submit"].grey-full.active{background:#fff;color:#a7a9ac}.btn.grey-full .small,input[type="submit"].grey-full .small{color:#fff !important;opacity:.75}.btn.pink,input[type="submit"].pink{border-color:#e63888;color:#e63888;background:transparent}.btn.pink:hover,input[type="submit"].pink:hover,.btn.pink.active,input[type="submit"].pink.active{background:#e63888;color:#fff}.btn.pink-full,input[type="submit"].pink-full{border-color:#e63888;color:#fff;background:#e63888}.btn.pink-full.active,input[type="submit"].pink-full.active{background:#fff;color:#e63888}.btn.pink-full:hover,input[type="submit"].pink-full:hover{color:#fff}.btn.blue,input[type="submit"].blue{border-color:#00a9e0;color:#fff;background:#00a9e0}.btn.blue.active,input[type="submit"].blue.active{background:#fff;color:#00a9e0}.btn.yellow,input[type="submit"].yellow{border-color:#fbdd40;color:#fff;background:#fbdd40}.btn.yellow.active,input[type="submit"].yellow.active{background:#fff;color:#fbdd40}.btn.content,input[type="submit"].content{float:left;border-radius:50px;padding:10px 25px;font-weight:500;text-align:left}.btn.content.blue,input[type="submit"].content.blue{background:#00a9e0}.btn.content.blue .big,input[type="submit"].content.blue .big{color:#fbdd40}.btn.content.yellow,input[type="submit"].content.yellow{background:#fbdd40}.btn.content.yellow .big,input[type="submit"].content.yellow .big{color:#e63888}.btn.content .small,input[type="submit"].content .small{color:#702082}.btn.contact,input[type="submit"].contact{position:relative;float:left;text-align:left;padding:20px 60px 20px 30px;margin:20px 0 30px}.btn.contact.yellow,input[type="submit"].contact.yellow{background:#fbdd40;border-color:#fbdd40}.btn.contact.yellow:hover,input[type="submit"].contact.yellow:hover{background:#fbdd40}.btn.contact.contact span,input[type="submit"].contact.contact span{display:inline-block}.btn.contact.active .expandable,input[type="submit"].contact.active .expandable{display:block}.btn.contact .expandable,input[type="submit"].contact .expandable{display:none;margin:10px 0}.btn.contact h5,input[type="submit"].contact h5{font-weight:800;color:#e63888}.btn.contact p,input[type="submit"].contact p{color:#702082;font-weight:800}.btn.contact p:last-of-type,input[type="submit"].contact p:last-of-type{margin-bottom:0}.btn.contact a,input[type="submit"].contact a{color:#00a9e0}.btn.contact.active .arrow,input[type="submit"].contact.active .arrow{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.btn.contact .arrow-holder,input[type="submit"].contact .arrow-holder{position:absolute;top:4px;right:0;z-index:100;padding:20px;cursor:pointer}.btn.contact .arrow-holder .arrow,input[type="submit"].contact .arrow-holder .arrow{width:20px;height:14px;background:url(img/sprite.png) -4px -86px no-repeat;background-size:80px;display:block;text-indent:-9999px}.btn.order-btn.hide,input[type="submit"].order-btn.hide{display:none}.btn.expand,input[type="submit"].expand{border-color:#a7a9ac}.sidebar .btn.contact{width:100%}.product .holder .btn.expand:hover,.product .holder .expand>.active{background:#fff}.btn.expandable{float:none;display:inline-block;position:relative;padding:20px 70px 20px 30px}.btn.expandable:after{content:'';width:20px;height:14px;background:url(img/sprite.png) -6px -98px no-repeat;background-size:90px;display:block;position:absolute;top:23px;right:30px}.btn.expandable .times{display:none;margin:10px 0}input[type="text"].btn,input[type="password"].btn,input[type="email"].btn,input[type="number"].btn,input[type="tel"].btn{height:40px;cursor:text}@media only screen and (max-width: 1279px){.toplevel-foretag .btn.huge,.toplevel-omoss .btn.huge,.btn.huge{font-size:14px;padding:20px}}#cookie-info{background:#3c1053;padding:6px 18px}@media only screen and (min-width:768px){#cookie-info{padding:6px 0}}#cookie-info .content{font-size:12px;line-height:14px;opacity:.75;color:#fff}#cookie-info .content a{color:#fff;text-decoration:underline}#cookie-info .content a:hover{color:#00a9e0}#cookie-info .content p,#cookie-info .content h1,#cookie-info .content h2,#cookie-info .content h3{margin:0;font-size:12px;line-height:14px}#production-alert{background:#fbdd40;padding:6px 18px}@media only screen and (min-width:768px){#production-alert{padding:6px 0}}#production-alert .content{font-size:14px;line-height:18px}#production-alert .content a{color:#444;text-decoration:underline}#production-alert .content p,#production-alert .content h1,#production-alert .content h2,#production-alert .content h3{margin:0;font-size:14px;line-height:18px}.home #header{position:absolute}.home #header .header-holder{background:transparent}#header{position:relative;top:0;left:0;width:100%;z-index:9997}.home:not(.mypages) #header.small{position:sticky;position:-webkit-sticky;top:0}.home #header .movable ul a,.page-template-template-iframe-large-php #header .movable ul a{font-size:14px}.home #header.small .logo,.page-template-template-iframe-large-php #header.small .logo{width:75px;height:22px;background:url(img/logo.png) no-repeat;background-size:70px}.home #header.small .main-nav,.page-template-template-iframe-large-php #header.small .main-nav,.home #header.small .interact,.page-template-template-iframe-large-php #header.small .interact{display:block}.home #header.small .main-nav,.page-template-template-iframe-large-php #header.small .main-nav{margin-top:0}.home #header.small .header-holder,.page-template-template-iframe-large-php #header.small .header-holder{background-color:#702082;padding-bottom:6px}.home #header.small .interact,.page-template-template-iframe-large-php #header.small .interact{top:0}.home #header nav,.page-template-template-iframe-large-php #header nav{border-bottom:none !important}.home #header .current_page_ancestor ul.children,.page-template-template-iframe-large-php #header .current_page_ancestor ul.children,.home #header .current_page_item ul.children,.page-template-template-iframe-large-php #header .current_page_item ul.children{display:none !important}.home #header .interact,.page-template-template-iframe-large-php #header .interact{top:14px}.home #header .header-holder,.page-template-template-iframe-large-php #header .header-holder{padding-top:14px;padding-bottom:14px;-webkit-transition:all .1s ease-in-out;-moz-transition:all .1s ease-in-out;transition:all .1s ease-in-out;-webkit-transition:all .1s ease;-moz-transition:all .1s ease;-o-transition:all .1s ease;-ms-transition:all .1s ease;transition:all .1s ease}.home #header ul.children,.page-template-template-iframe-large-php #header ul.children{display:none}.home #header .main-nav,.page-template-template-iframe-large-php #header .main-nav{margin-top:12px}@media only screen and (max-width:767px){.home .page-template-template-iframe-large-php #header.small .interact,.page-template-template-iframe-large-php .page-template-template-iframe-large-php #header.small .interact{display:none !important}}body.home #header .main-nav li:hover>a,body.home #header .main-nav a:hover{text-decoration:underline;color:#fff}#header .movable ul a{font-weight:500;font-size:12px}#header .movable ul li li a{font-size:14px}#header .movable ul.active,#header .movable ul:hover:not(.pink-full){color:#e63888}#header .movable.active{position:relative;left:-200px}#header .interact{position:absolute;top:-8px;right:0}#header .interact a.btn,#header .interact .search{display:inline-block}#header .interact a.btn{margin:0 5px;min-width:110px;padding:0 12px;font-size:12px;line-height:18px;float:left}#header .interact a.btn,#header .interact .search-icon{text-transform:uppercase}#header .interact .search{margin-left:15px}#header .interact li{float:left}#header .interact .point{display:none;position:absolute;top:-30px;right:37px;width:25px;height:20px;background:url(img/sprite.png) -62px -125px no-repeat;background-size:90px}#header li.search-icon p{position:relative;font-weight:500;font-size:12px;color:#fff;margin-bottom:0;padding-left:32px;cursor:pointer}#header li.search-icon p:after{content:' ';display:block;position:absolute;top:-2px;left:0;width:22px;height:22px;background:url(img/sprite.png) -22px -44px no-repeat;background-size:66px}#header .search.active li.search-icon p,#header .search:hover li.search-icon p{color:#e63888}#header .search.active li.search-icon p:after,#header .search:hover li.search-icon p:after{content:' ';display:block;position:absolute;top:-2px;left:0;width:22px;height:22px;background:url(img/sprite.png) -44px -44px no-repeat;background-size:66px}.home #header.small .main-nav li a{color:rgba(254,254,254,0.5)}.header-holder{position:relative;clear:both;padding:20px 50px;background-color:#702082}.header-holder:after{content:"";display:table;clear:both}.header-holder .container{position:relative}@media only screen and (max-width: 959px){#header .header-holder .container .movable .main-nav{display:none}}.search-holder{display:none;padding:15px 0;background-color:#9c51a7}.search-holder input[type="text"]{margin-bottom:0;width:100%;height:auto;border:none;background:transparent;color:#fff;font-weight:400;font-size:24px;line-height:30px}@media only screen and (min-width: 768px) and (max-width: 959px){.search-holder input[type="text"]{width:100%}}.search-holder .input{width:35.9375em;float:left;padding-left:36px;margin-right:20px;text-align:left}.search-holder .input:before{content:' ';display:block;position:absolute;top:1px;left:0;width:40px;height:40px;background:url(img/sprite.png) -42px -80px no-repeat;background-size:120px}.search-holder .input div.results{top:50px;left:50px;border-top-left-radius:12px;border-top-right-radius:12px}.search-holder .input div.results:before{content:'';display:block;position:absolute;top:-10px;left:70px;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-bottom:10px solid #fff}.search-holder .input+.btn{width:175px;float:right}.search-holder.show{display:block}.search-holder .holder{text-align:right}@media only screen and (max-width: 959px){.search-holder{display:block;padding:0;background:none;margin-top:20px}.search-holder.hide{display:none}.search-holder .input{padding-left:0}.search-holder .input:before{display:none}.search-holder .input div.results{position:relative;top:0;left:0;border-top-left-radius:0;border-top-right-radius:0}.search-holder input[type=text]{font-size:16px;color:#444;background:#fff;border-radius:20px;border:1px solid rgba(0,0,0,0.25)}.search-holder input[type=text].results{border-bottom:0}.search-holder .search-holder .btn:last-child{display:none}}.search-holder ::-webkit-input-placeholder{font-weight:400;font-size:24px;line-height:30px;color:#fff}.search-holder :-moz-placeholder{font-weight:400;font-size:24px;line-height:30px;color:#fff}.search-holder ::-moz-placeholder{font-weight:400;font-size:24px;line-height:30px;color:#fff}.search-holder :-ms-input-placeholder{font-weight:400;font-size:24px;line-height:30px;color:#fff}@media only screen and (max-width:767px){.search-holder ::-webkit-input-placeholder{font-weight:400;font-size:16px;line-height:24px}.search-holder :-moz-placeholder{font-weight:400;font-size:16px;line-height:24px}.search-holder ::-moz-placeholder{font-weight:400;font-size:16px;line-height:24px}.search-holder :-ms-input-placeholder{font-weight:400;font-size:16px;line-height:24px}}.mypages-login-holder{display:none;background-color:#3c1053;color:#fff;padding:15px 0}.mypages-login-holder .btn.login{background-color:#e63888;border-color:#e63888;color:#fff}.mypages-login-holder a{color:#fff !important}.mypages-login-holder form{margin-bottom:0}.main-nav{float:left;margin-top:-7px;width:calc(100% - 195px)}.main-nav.outside{display:none}.main-nav.outside .menu-shadow{display:none}@media only screen and (min-width: 960px){.main-nav.outside{display:block;margin-bottom:0}}@-moz-document url-prefix(){nav{margin-right:-0.5em}}.main-nav a{font-weight:500;font-size:14px}.main-nav a.active,.main-nav a:hover:not(.pink-full){color:#e63888}@media only screen and (max-width: 959px){.main-nav>ul>li>a{font-size:16px !important}}.main-nav.hideondesktop{display:block}@media only screen and (min-width:960px){.main-nav.hideondesktop{display:none}}.main-nav ul li a{text-transform:uppercase;font-size:12px}.main-nav li li a{text-transform:none;font-size:14px}.main-nav nav{position:relative;width:100%;border-bottom:1px solid rgba(254,254,254,0.25);padding-bottom:7px;float:left}.main-nav .menu-shadow{display:none;position:absolute;width:25%;height:40px;top:5px;right:0;pointer-events:none;background:-moz-linear-gradient(left, rgba(60,16,83,0) 1%, #3c1053 100%);background:-webkit-gradient(linear, left top, right top, color-stop(1%, rgba(60,16,83,0)), color-stop(100%, #3c1053));background:-webkit-linear-gradient(left, rgba(60,16,83,0) 1%, #3c1053 100%);background:-o-linear-gradient(left, rgba(60,16,83,0) 1%, #3c1053 100%);background:-ms-linear-gradient(left, rgba(60,16,83,0) 1%, #3c1053 100%);background:linear-gradient(to right, rgba(60,16,83,0) 1%, #3c1053 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#003c1053', endColorstr='#3c1053', GradientType=1)}.main-nav li:hover>a,.main-nav li.current_page_item>a,.main-nav li.current_page_ancestor>a{color:#e63888}.main-nav li.current_page_item>a,.main-nav li.current_page_ancestor>a{font-weight:800}.main-nav ul.children{display:none}.main-nav ul.children li:first-child{padding-left:0}.main-nav ul.children li{padding:0 15px}.main-nav .current_page_ancestor ul.children,.main-nav .current_page_item ul.children{display:none}@media only screen and (min-width: 960px){.main-nav .current_page_ancestor ul.children,.main-nav .current_page_item ul.children{display:block}}.main-nav ul.children ul.children li.current_page_item a{font-size:18px}.main-nav li{padding:0 15px;margin:0;float:left}.main-nav li a{color:rgba(254,254,254,0.8)}.main-nav li ul{position:absolute;top:100%;left:0;margin:10px 0 0}.main-nav li li{position:relative}.main-nav li li a{color:#fff;font-size:16px}.main-nav .children .page_item_has_children{padding-right:40px}.main-nav li:first-child{padding-left:0}.main-nav li .page_item_has_children a{position:relative}.main-nav li .page_item_has_children>a:after{content:'';width:20px;height:14px;background:url(img/sprite.png) -4px -75px no-repeat;background-size:70px;display:block;position:absolute;top:2px;right:-30px}.main-nav .page_item_has_children .page_item_has_children:hover{background:#3c1053;padding:9px 40px 11px 20px;display:block;margin:-9px 0 -5px -5px;border-top-left-radius:12px;border-top-right-radius:12px}.main-nav .page_item_has_children .page_item_has_children .page_item_has_children:hover{margin:0;padding:10px 40px 10px 0}.main-nav .page_item_has_children .page_item_has_children .page_item_has_children:first-child:hover{margin:0;padding:0 40px 10px 0}.main-nav .page_item_has_children .page_item_has_children:first-child:hover{margin:-9px 0 -5px -20px}.main-nav ul.children ul.children>.current_page_item:first-child,.main-nav ul.children ul.children li:first-child:hover{margin:0;padding-left:0}.main-nav ul.children li:hover ul.children{display:block;border-top:none;margin-left:0}.main-nav ul.children ul.children{display:none;position:absolute;right:auto;left:0;background:#3c1053;padding:12px 18px 6px;border-bottom-left-radius:12px;border-bottom-right-radius:12px;border-top-right-radius:12px;margin-top:-1px;min-width:calc(100% + 40px)}.main-nav ul.children ul.children li{display:block;float:none;margin:0;border-bottom:1px solid rgba(254,254,254,0.25);padding:6px 12px 6px 0;min-width:220px;white-space:nowrap}.main-nav ul.children ul.children li:first-child{padding-top:0}.main-nav ul.children ul.children li:last-child{border-bottom:none}@media only screen and (max-width: 959px){.main-nav{position:absolute;top:45px;left:0;padding:0 0 15px;background:#702082;margin-top:0;float:none;width:100%}.main-nav.outside nav{margin:15px 0;overflow:auto;background:#702082}.main-nav.outside nav ul{padding-bottom:0;padding-left:0}.main-nav.outside nav li{float:none;padding:0}.main-nav.outside nav a{display:block;padding:5px;font-size:14px !important;color:#fff}.main-nav.outside .mobile-extra{display:none}.main-nav.outside li:first-child a{padding-top:0}.main-nav.outside li:last-child a{padding-bottom:0}.main-nav .menu-shadow{display:block}.main-nav .input:after{content:'';width:19px;height:20px;background-image:url(img/sprite.png);background-position:0 -41px;background-size:60px;right:10px;display:block;position:absolute;top:13px}.main-nav nav{border:none;margin:0 0 0;background:#3c1053;overflow-x:scroll;-webkit-overflow-scrolling:touch}.main-nav nav ul{padding:0 20px}.main-nav nav a{padding:10px 0 5px;display:block;color:#fff}.main-nav ul li a,.main-nav ul.children ul.children li.current_page_item a{font-size:14px}.main-nav ul.children a{text-transform:none;display:block}.main-nav ul.children ul.children a{display:block}.main-nav li a{color:#fff}.main-nav.outside nav{float:none}.main-nav li:last-child{padding-right:20px}.main-nav ul.children li:hover ul.children{border:none}.main-nav ul.children{display:none}.main-nav ul.children ul.children{background:none;position:relative;padding:20px 10px 10px}.main-nav ul.children ul.children li{border:none;padding:15px 0 0 0}.main-nav ul.children li:hover:not(.active):not(.current_page_ancestor) ul.children{display:none}.main-nav li.disabled ul{display:none !important}.main-nav ul.children.show{display:block;clear:both;padding:0 20px;overflow-y:scroll;-webkit-overflow-scrolling:touch}.main-nav ul.children.show .active .children,.main-nav ul.children.show .current_page_ancestor .children{display:block}.main-nav ul.children.show li{position:relative;float:none;padding:10px 0 0 10px;border-bottom:1px solid rgba(254,254,254,0.25)}.main-nav ul.children.show li.page_item_has_children:before{color:#fff;content:'+';position:absolute;top:7px;left:0;width:17px;height:14px}.main-nav ul.children.show li.page_item_has_children.active:before{content:'-'}.main-nav ul.children.show>li{padding:8px 0 8px 20px}.main-nav.outside:not(.footer-menu) ul.children{display:block;position:static;background:transparent;padding:0 0 0 20px;border-radius:0}.main-nav.outside:not(.footer-menu) ul.children li{border-bottom:0}.main-nav li{float:left;padding:0 15px}.main-nav .input,.main-nav input{width:100%}.main-nav .mobile-extra{display:block;padding:20px 20px 10px;clear:both}.main-nav .mobile-extra .btn{width:47%;margin-right:4%;background-color:#fff;color:#702082;border-color:#fff}.main-nav .mobile-extra .btn:last-child{margin-right:0}.main-nav.footer-menu{margin-top:0;padding:10px 20px 15px;float:none}.main-nav.footer-menu nav{border-top:none}}#header .interact{float:right}#logo{display:block;margin-right:30px;float:left}.logo{width:165px;height:50px;background:url(img/logo.png) no-repeat;background-size:164px;text-indent:-999px}@media only screen and (max-width: 959px){.logo,.home #header.small .logo{width:93px;height:27px;background-size:82px;background-position:0 50%}}#togglenav{display:block;float:right;position:relative;padding-left:40px;margin-top:3px;font-size:12px;font-weight:800;text-transform:uppercase;color:#fff}#togglenav:before{content:'';display:block;position:absolute;top:-3px;left:0;width:25px;height:25px;background-image:url(img/sprite.png);background-size:80px;background-position:-54px -214px}@media only screen and (min-width: 960px){#togglenav{display:none}}@media only screen and (max-width: 959px){body{overflow-x:hidden}body:not(.mypages) #header,.home:not(.mypages) #header{position:sticky}.home #header .header-holder{background:#702082}#header .header-holder,.home #header .header-holder,.home #header.small .header-holder{padding:10px 20px}#header .header-holder .search-holder,.home #header .header-holder .search-holder,.home #header.small .header-holder .search-holder{display:block}#header .header-holder.open .main-nav,.home #header .header-holder.open .main-nav,.home #header.small .header-holder.open .main-nav{display:block}#header .interact,.home #header .interact,.home #header.small .interact{display:none}#header .header-holder.open>.container div.main-nav,.home #header .header-holder.open>.container div.main-nav,.home #header.small .header-holder.open>.container div.main-nav{display:none}#header .search-holder{display:none}#header .mypages-login-holder{padding-left:20px;padding-right:20px}.mypages #header{position:fixed}.mypages #production-alert,.mypages #cookie-info{position:relative}.mypages #wrapper,.mypages #production-alert,.mypages #cookie-info{margin-top:47px}.mypages #production-alert~#cookie-info,.mypages #production-alert~#wrapper{margin-top:0}.mypages .signed-in{z-index:1000}#header .main-nav,.home #header.small .main-nav,.home #header .main-nav{display:none;margin-top:0}}body:not(.home) #header .interact .btn,body:not(.home) #header .interact .btn:hover{background:#fff;color:#702082;border-color:#fff}body:not(.home) .main-nav li:hover>a,body:not(.home) .main-nav li.current_page_item>a,body:not(.home) .main-nav li.current_page_ancestor>a{color:#fff}body:not(.home) .main-nav li a{color:rgba(254,254,254,0.5)}body:not(.home) .main-nav li .page_item_has_children>a:after{display:none}body:not(.home) .main-nav .children .page_item_has_children{padding-right:20px}body:not(.home) .main-nav .page_item_has_children .page_item_has_children:hover{padding-right:20px}#footer{background-color:#efefef}#footer .container{padding:36px 0 60px}#footer .col{float:left;padding-right:20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:25%}#footer .col h6{color:#3c1053;margin-bottom:12px}#footer .col a,#footer .col p{font-size:12px;line-height:18px}#footer .col p{margin-bottom:18px}#footer .col a{font-weight:400;color:#702082}#footer>.container{padding:36px 24px 0 !important}#footer .search-holder{margin-top:0 !important}#footer .search-holder .container{padding:0 24px !important}#footer .search-holder .input{max-width:100%}#footer .search-holder .input input[type=text]::-webkit-input-placeholder{color:#a7a9ac !important}#footer .search-holder .input input[type=text]:-moz-placeholder{color:#a7a9ac !important}#footer .search-holder .input input[type=text]:-ms-input-placeholder{color:#a7a9ac !important}#footer>.container{padding:36px 24px 0 !important}#footer .search-holder{margin-top:0 !important;margin-bottom:30px}#footer .search-holder.main{clear:both}#footer .search-holder .container{padding:0 24px !important}#footer .search-holder .input{width:100%}#footer .search-holder input[type=text]{width:100%}#footer .search-holder input[type=text]:focus::-webkit-input-placeholder{color:transparent}#footer .search-holder input[type=text]:focus::-moz-placeholder{color:transparent}#footer .search-holder input[type=text]:focus:-moz-placeholder{color:transparent}#footer .search-holder input[type=text]::-webkit-input-placeholder{color:#ddd}#footer .search-holder input[type=text]::-moz-placeholder{color:#ddd;opacity:1}#footer .search-holder input[type=text]:-moz-placeholder{color:#ddd;opacity:1}#footer .search-holder input[type=text]:-ms-input-placeholder{color:#ddd}#footer .search-holder input[type=text]::placeholder{color:#ddd}#footer .search-holder input[type=text].placeholder{color:#ddd}.buy+#footer{border-top:1px solid #702082}footer .facebook,footer .tw,footer .yt,footer .insta,footer .linkedin{position:relative}footer .facebook a,footer .tw a,footer .yt a,footer .insta a,footer .linkedin a{display:block;padding-left:36px;line-height:24px !important}footer .facebook a:before,footer .tw a:before,footer .yt a:before,footer .insta a:before,footer .linkedin a:before{position:absolute;top:-2px;content:' ';display:block;width:26px;height:25px}footer .facebook a{background:url(img/icons/social-fb.svg) no-repeat;background-size:24px}footer .tw a{background:url(img/icons/social-twitter.svg) no-repeat;background-size:24px}footer .yt a{background:url(img/icons/social-youtube.svg) no-repeat;background-size:24px}footer .insta a{background:url(img/icons/social-instagram.svg) no-repeat;background-size:24px}footer .linkedin a{background:url(img/icons/social-linkedin.svg) no-repeat;background-size:24px}.buy-preamble{overflow:hidden;padding:48px 0;background-color:#f3f3f3}.buy-preamble.business #kontakt{display:none}.buy-preamble .large-content{position:relative}@media only screen and (min-width: 960px){.buy-preamble .reco-badge{position:absolute;top:0;left:1000px}}@media only screen and (min-width: 1024px) and (max-width: 1279px){.buy-preamble .reco-badge{position:absolute;top:0;left:852px}}@media only screen and (max-width: 959px){.buy-preamble .reco-badge{position:absolute;top:0;left:500px}}@media only screen and (min-width: 960px) and (max-width: 1024px){.buy-preamble .reco-badge{position:absolute;top:0;left:800px}}@media only screen and (max-width: 568px), only screen and (max-device-width: 570px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-device-width: 640px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait){.buy-preamble .reco-badge{position:relative;float:right;left:0}}.buy-preamble input{display:inline-block;background:#fff;border-color:#a7a8aa;line-height:28px;color:#702082;font-weight:800;font-size:24px;text-align:left;margin-bottom:0;margin-top:-2px;vertical-align:middle;padding:5px 20px}.buy-preamble input.hide{display:none}.buy-preamble input:hover{background:rgba(254,254,254,0.5);color:#702082}.buy-preamble input.active:focus{background:#fefefe}.buy-preamble .full-height-holder{position:absolute;top:0}.buy-preamble .center-vertical-holder{bottom:-48px}.buy-preamble .center-vertical{vertical-align:bottom}.buy-preamble h4{font-weight:400;color:#702082}.buy-preamble h2{color:#3c1053}.buy-preamble .btn.ok{min-width:96px;opacity:.5}.buy-preamble .btn.ok.enabled{opacity:1}.buy-preamble .btn.ok.hide{display:none}.buy-preamble .apartment,.buy-preamble .house{min-width:132px}.buy-preamble .button-holder .btn{vertical-align:bottom}.buy{display:none;background-color:#f3f3f3}.buy .slider-mobile{position:relative}.buy .slider-mobile input{width:70%;float:left;background:#eaeaea;display:inline-block;color:#7b227f;font-family:"Gotham SSm A","Gotham SSm B";font-weight:400;font-size:24px;line-height:28px;text-align:left}.buy .slider-mobile .entity{color:#702082;font-family:"Gotham SSm A","Gotham SSm B";font-weight:400;font-size:16px;line-height:40px}.buy .description-holder p{font-size:14px;line-height:18px}.buy .btn.expand .data-holder .help{top:-15px}.buy.business .slider .full{background:#702082}.buy.business .slider .striped{background:url(img/slider-bg-purple.png)}.buy.business .cover-text{margin-top:0;margin-bottom:10px}.buy.business .product .navigation-holder{margin-top:20px}.buy h2{color:#3c1053;font-size:32px;line-height:32px}.business .product .cover-text{margin-top:0;margin-bottom:10px}.expand+.btn{padding-top:10px;padding-bottom:10px}.btn.expand{margin-bottom:10px;border-radius:20px;padding:0}.btn.expand>li{border-radius:20px}.btn.expand p{margin-bottom:0}.btn.expand>li:first-child:before{display:none;visibility:hidden}.btn.expand>li:first-child>p{position:relative;padding:10px 0;font-weight:500}.btn.expand>li:first-child.active:not(.no-child) p:before{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.btn.expand .data-holder>li:last-child{overflow:hidden}.btn.expand li.active>ul{display:block}.btn.expand ul{display:none;margin:0;text-align:left;padding:0}.btn.expand ul p{margin:0;padding:0 50px 0 15px;position:relative;font-size:13px}.btn.expand ul li.active,.btn.expand ul ul{background:#eaeaea}.btn.expand ul li.active ul{display:block;border-top:1px solid #a7a9ac;padding:5px 0 0;margin-top:10px}.btn.expand ul ul li.active p{margin-bottom:0}.btn.expand ul li.active li{padding:0}.btn.expand ul li{border-top:1px solid #eaeaea;padding:10px 0}.btn.expand ul li:last-child{border-bottom-left-radius:20px;border-bottom-right-radius:20px}.btn.expand ul li li{padding:5px 0}.btn.expand ul li li:before{display:none}.btn.expand li.no-child{cursor:default}.btn.expand li{margin-bottom:0;position:relative}.btn.expand li:not(.no-child):before{content:'';width:20px;height:14px;background:url(img/sprite.png) -35px -97px no-repeat;background-size:90px;display:block;position:absolute;top:15px;right:18px}.btn.expand li.active:not(.no-child):before{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.btn.expand li span{float:right;font-weight:800;font-size:13px}.btn.expand .details .help{top:-14px;background-size:60px;background-position:-2px -81px;width:17px;height:17px}.expand ul ul{display:none}@-moz-document url-prefix(){.product-type{margin-left:-0.5em}}.slider-content.center{text-align:center}.slider-content.center .product-type{float:none;display:inline-block;text-align:left;vertical-align:top}.popup-buy .faq-header h4{margin-bottom:0;color:#800080;font-weight:200;font-size:21px;line-height:28px}.faq-header{padding-bottom:20px;display:flex;align-items:center}.faq-header .faq-image{background:url(../img/kundtjanst.png);background-size:100%;width:100px;flex-shrink:0;height:100px;margin-right:20px}.faq-type{float:none;display:inline-block;vertical-align:top;text-align:left;margin-right:.5em;border-top-right-radius:10px;border-bottom-left-radius:10px;background:rgba(255,255,255,0.5);width:23.4375em}.faq-type .product{padding:30px;padding-right:0}.faq-type .product h4{color:#800080;font-weight:200;font-size:21px;line-height:28px}.faq-type fieldset{padding:0}.faq-type .faq-small .btn.active>div{padding:6px 0}@media only screen and (max-width: 568px), only screen and (max-device-width: 570px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-device-width: 640px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait){.faq-type .faq-small .btn.active>div{padding:16px}}.product-type{float:left;margin-right:.5em;border-top-right-radius:10px;border-bottom-left-radius:10px;background:rgba(255,255,255,0.5);width:23.4375em}.product-type .estimation-holder{margin-bottom:4px}.product-type .consumption-holder{*zoom:1}.product-type .consumption-holder:before,.product-type .consumption-holder:after{content:"";display:table}.product-type .consumption-holder:after{clear:both}.product-type p.sub{margin-bottom:10px}.product-type .estimation-holder.hide{display:none}.product-type .price-container .help{margin:7px 0 0 13px;display:none}.product-type p.discount{color:#e63888}.product-type .full-width.break-padding{width:calc(100% + 20px);margin-left:-10px}.product-type h2{color:#702082;margin-bottom:5px;font-size:28px;line-height:28px}.product-type h2 .light{font-weight:400;font-family:"Gotham SSm A","Gotham SSm B";letter-spacing:-0.05em}.product-type.has-discount .product .discount-img{display:block}.product-type.has-discount .product .price-container .help{display:inline-block}.product-type.has-discount .product h2.calculated-price{color:#e63888}.product-type.has-discount .product h2.old-calculated-price{opacity:1;font-weight:400;font-family:"Gotham SSm A","Gotham SSm B";font-size:27px;text-decoration:line-through;letter-spacing:-0.05em;color:#888}.product-type .product{border-top-right-radius:10px;border-bottom-left-radius:10px;padding:30px;position:relative}.product-type .product .price-info p{font-size:14px;line-height:18px}.product-type .product .slider{margin:35px 0 30px;width:80%}.product-type .product .slider .move .text{font-size:24px}.product-type .product .discount-img{display:none;position:absolute;width:145px;top:84px;left:140px}.popup-buy .product-type .product .discount-img{left:110px}@media only screen and (max-width: 959px){.product-type .product .discount-img{width:90px;top:70px;left:112px}}@media only screen and (min-width: 960px) and (max-width: 1024px){.product-type .product .discount-img{width:110px !important;top:84px !important;right:10px !important}}@media only screen and (max-width: 1279px){.product-type .product .discount-img{width:70px;right:16px}}.product-type .product .remove-margin{margin-bottom:0}.product-type .product .cover-img{clear:both;position:relative;overflow:hidden}.product-type .product .cover-img img{width:40%;float:left}.product-type .product .cover-text{color:#702082;margin-top:10px}.product-type .product .cover-text h3,.product-type .product .cover-text h4{color:inherit;margin-bottom:2px}.product-type .product .cover-text h3{font-weight:900;font-size:36px;line-height:36px}.product-type .product .cover-text h4{font-weight:200;font-size:30px;line-height:36px;margin-bottom:15px}.product-type.active,.product-type:hover{background-color:#fff}.product-type .old-calculated-price{opacity:0}.product-type span.btn{display:inline-block;margin-bottom:20px;font-size:14px;padding:2px 15px;margin-right:6px}.product-type .holder{clear:both}.col:last-child{margin-right:0}.slider{position:relative;width:100%;margin:60px 0 100px;height:10px}.slider.hide{display:none}.slider .full,.slider .striped{height:10px;border-radius:5px;position:absolute;top:0;left:0}.slider .full{background:#702082;z-index:3}.slider .striped{width:100%;background:url(img/slider-bg-purple2.png);z-index:2}.slider .move{width:20px;height:20px;border-radius:10px;background:#e63888;z-index:4;position:absolute;top:-5px;left:0;margin-left:-10px;cursor:pointer}.slider .move .text{position:absolute;bottom:25px;width:250px;font-family:"Gotham A","Gotham B";font-weight:900;font-size:32px;color:#702082}.slider .move span{font-size:16px;font-family:"Gotham SSm A","Gotham SSm B";font-weight:400;letter-spacing:-0.03em;margin-left:-4px}.popup-buy{display:none;max-width:1280px;width:100%;z-index:9999;overflow:hidden;padding:0;margin:0 auto}.popup-buy.show{display:block}.popup-buy.light{background-color:#fff}.popup-buy.dark{background-color:#702082}.popup-buy.business .welcome h2,.popup-buy.business .welcome h3{color:#fff}.popup-buy.business .welcome .business-only a{color:#9c59a0}.popup-buy .order{padding:100px 0 80px;display:none}.popup-buy .order.show{display:block}.popup-buy h4{color:#702082;margin-bottom:20px}.popup-buy .btn.disabled{background:#a7a9ac;cursor:not-allowed}.popup-buy #orderform .buy-info-links{clear:both;padding-top:5px}.popup-buy #orderform .buy-info-links p{font-size:14px}.popup-buy .product{padding-bottom:5px}.popup-buy .product .description-holder p{font-size:14px}.popup-buy .product .full-width.break-padding{width:100%;margin-left:unset}.popup-buy .product .btn.expand .help{top:-15px}.popup-buy .product-type{background:none}.popup-buy .product-type .expand .help-holder{font-size:16px}.popup-buy .product-type.active,.popup-buy .product-type:hover{background:none}.popup-buy .btn.special{height:50px;border-radius:25px;border-width:10px;text-align:left}.popup-buy .btn.special+.btn{height:40px;border-radius:20px}.popup-buy .btn.special+.btn.hide{display:none}@-moz-document url-prefix(){.col{margin-left:-0.5em}}.popup-buy .col{float:left;margin-right:1.5625em;width:23.4375em}.popup-buy .col.product .product-type .product{padding-left:0;padding-right:0}.popup-buy .col.info>div{padding:0 20px}.popup-buy .col.info a,.popup-buy .col.info a:visited{color:#000}.popup-buy .col.info .contact-blurb .img{width:120px;height:120px}.popup-buy .col.info .contact-blurb .text{width:calc(100% - 140px)}.popup-buy .col.info .wpcf7 fieldset{padding:0}.popup-buy .col:last-child{margin-right:0}.popup-buy .contact{margin:20px 0}.popup-buy .contact p,.popup-buy .contact h4,.popup-buy .contact a{margin-bottom:5px}.popup-buy .contact a{color:#e63888}.popup-buy .small-form{border-top-right-radius:10px;border-bottom-left-radius:10px;border:1px solid #a7a9ac;padding:40px 20px 30px}.popup-buy .small-form li{position:relative;border-bottom:1px solid #fff}.popup-buy .small-form li:last-child{border-bottom:none}.popup-buy .small-form li.one,.popup-buy .small-form li.two,.popup-buy .small-form li.three{width:auto}.popup-buy .small-form li.one p:before{background-position:-5px -9px;top:-15px}.popup-buy .small-form li.two p:before{background-position:-5px -69px}.popup-buy .small-form li.three p:before{background-position:-5px -129px}.popup-buy .small-form li p{padding-left:80px}.popup-buy .small-form li p:before{content:' ';display:block;position:absolute;left:0;width:55px;height:45px;background-image:url(img/sprite-big.png);background-size:135px}.popup-buy #additional label{float:none}.popup-buy #invoiceMethods .btn{margin-bottom:20px}.popup-buy form{color:#702082}.popup-buy form label{font-size:14px;font-weight:400;color:#444;margin-bottom:5px}.popup-buy form p{color:#000}.popup-buy form .head{font-size:16px;font-weight:800;color:inherit}.popup-buy .form{border-radius:10px;padding:20px;margin:10px 0;color:#702082}.popup-buy .form.hide{display:none}.popup-buy .form.additional{display:none;margin-bottom:20px}.popup-buy .form.additional.show{display:block}.popup-buy .form input{text-align:left}.popup-buy .form .facility{display:block}.popup-buy .form .facility.hide{display:none}.popup-buy .add-additional-form{cursor:pointer}.popup-buy .welcome{display:none;padding:100px 0 80px}.popup-buy .welcome.show{display:block}.popup-buy .welcome .title{width:60.9375em}.popup-buy .welcome .large-content{margin-left:0}.popup-buy .welcome h2{margin-bottom:35px;color:#fff}.popup-buy h3{margin-bottom:48px}.popup-buy h5{margin-bottom:40px}.popup-buy .share-buttons{margin:20px 0}.popup-buy .share-buttons .btn{position:relative;padding-left:40px}.popup-buy .share-buttons .btn:hover{border-color:#fff;color:#fff;background:transparent}.popup-buy .share-buttons .btn:before{content:' ';display:block;position:absolute;top:7px;left:10px;width:25px;height:25px;background-image:url(img/sprite.png);background-size:90px}.popup-buy .share-buttons .fb:before{background-position:-2px -33px}.popup-buy .share-buttons .twitter:before{background-position:-62px -32px}.popup-buy .share-buttons .mail:before{background-position:-32px -32px}.popup-buy.business .contact a{color:#702082}.popup-buy.business li.one p:before{background-position:-5px -246px;top:-15px}.popup-buy.business li.two p:before{background-position:-5px -306px}.popup-buy.business li.three p:before{background-position:-5px -366px}.popup-buy.business .calendar-holder .calendar-icon:hover{background-position:-84px -250px}.close-btn{display:none;position:absolute;top:20px;right:20px;width:40px;height:43px;background-image:url(img/sprite-big.png);background-position:-76px -4px;background-repeat:no-repeat;background-size:102px;cursor:pointer;opacity:.5}.dark .close-btn,.light .close-btn{display:block}.dark .close-btn{background-position:-57px -47px}.light .close-btn{background-position:-57px -3px}#overlay{display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(60,16,83,0.8);z-index:9998}#overlay.show{display:block}.help-holder{position:relative;display:inline-block}.help-holder+*{clear:both}.help-holder .floated-text{float:left}.help-holder .floated-text.helper-bottom+.help .help-holder{bottom:auto;top:50px}.help-holder .floated-text.helper-bottom+.help .arrow{bottom:auto;top:-20px;border-bottom:20px solid #702082;border-top:none}.help-holder .text{background:#702082;padding:15px;border-radius:15px}.help-holder .text h6{margin-bottom:6px}.help-holder .text p{font-size:12px;line-height:18px}.help-holder .text p:last-child{margin-bottom:0}.help-holder .help{float:left;position:absolute;display:inline-block;width:22px;height:22px;background:url(img/sprite.png) -4px -124px no-repeat;background-size:90px;vertical-align:middle;cursor:pointer;margin-left:5px;color:#fff;z-index:9990}.help-holder .help.active{z-index:9991}.help-holder .help.active .help-holder{display:block}.help-holder .help .help-holder{display:none;position:absolute;bottom:50px;right:-20px;width:275px;cursor:default}.help-holder .help .arrow{position:absolute;bottom:-20px;right:20px;width:0;height:0;border-left:10px solid transparent;border-right:10px solid transparent;border-top:20px solid #702082}.plus,.minus{display:inline-block;width:22px;height:22px;vertical-align:middle;cursor:pointer;margin-left:5px}.plus{background:url(img/sprite.png) -34px -124px no-repeat;background-size:90px}.minus{background:url(img/sprite.png) -64px -214px no-repeat;background-size:90px}.list li{font-weight:400}.disabled,.disabled a{cursor:default}.calendar-holder .calendar-parent{width:calc(100% - 45px);float:left;margin-right:0}.calendar-holder .calendar-icon{display:inline-block;width:36px;height:36px;background:url(img/sprite-big.png) -84px -190px no-repeat;background-size:135px;margin-top:2px;margin-left:7px;cursor:pointer}.calendar-holder .calendar-icon:hover{background:url(img/sprite-big.png) -15px -190px no-repeat;background-size:135px}.info-box{margin:5px 0;float:left;text-align:left;padding:24px;border-radius:12px}.info-box div.btn.default a{color:#fff !important}.info-box.purple{background:#702082;color:#fff}.info-box.purple h1,.info-box.purple h2,.info-box.purple h3,.info-box.purple h4,.info-box.purple h5,.info-box.purple h6{color:#fff !important}.info-box.purple a{color:#7fd4ef !important}.info-box.grey{background:#eaeaea;color:#3c1053}.info-box.grey h1,.info-box.grey h2,.info-box.grey h3,.info-box.grey h4,.info-box.grey h5,.info-box.grey h6,.info-box.grey a{color:#702082 !important}.info-box.green{background:#49c5b1;color:#fff}.info-box.green h1,.info-box.green h2,.info-box.green h3,.info-box.green h4,.info-box.green h5,.info-box.green h6,.info-box.green a{color:#fff !important}.info-box.lightpurple{background:#d7c3dc;color:#000}.info-box.lightpurple h1,.info-box.lightpurple h2,.info-box.lightpurple h3,.info-box.lightpurple h4,.info-box.lightpurple h5,.info-box.lightpurple h6,.info-box.lightpurple a{color:#3c1053 !important}.info-box.lightblue{background:#bfe9f7;color:#000}.info-box.lightblue h1,.info-box.lightblue h2,.info-box.lightblue h3,.info-box.lightblue h4,.info-box.lightblue h5,.info-box.lightblue h6,.info-box.lightblue a{color:#3c1053 !important}.info-box.white{background:#fff;color:#000}.info-box.white h1,.info-box.white h2,.info-box.white h3,.info-box.white h4,.info-box.white h5,.info-box.white h6,.info-box.white a{color:#3c1053 !important}.info-box h5{font-size:16px;font-weight:800;font-family:"Gotham SSm A","Gotham SSm B"}@media only screen and (max-width:959px){.buy-preamble span.apartment,.buy-preamble span.house,.buy-preamble span.weekender{width:30%}.buy-preamble span.apartment .btn,.buy-preamble span.house .btn,.buy-preamble span.weekender .btn{margin:auto}}.status table:not(.table-condensed){width:100%;margin:20px 0 40px}.status table:not(.table-condensed) thead{font-size:18px;font-weight:800;color:#702082}.status table:not(.table-condensed) tr{border-bottom:1px solid #eaeaea}.status table:not(.table-condensed) td{width:33%;text-align:center;padding:10px}.status table:not(.table-condensed) td:first-child{text-align:left}.status .district-heating{clear:both;position:relative;overflow:hidden}.status .contact{clear:both;margin:80px 0 0}.status .contact p{margin-bottom:0;color:#702082}.faq-small.disturbance .btn{background:#f4633a;color:#fff}.faq-small.disturbance .btn:hover{color:#fff}.faq-small.disturbance .btn>div{color:#fff}.faq-small.disturbance .btn p:before{background-image:url(img/icons/warning.png);background-size:cover;background-repeat:no-repeat;background-position:0 0;width:20px;height:20px;top:10px}table.disturbance img{float:left;margin-bottom:0;margin-right:5px}table.disturbance td{position:relative;vertical-align:middle}table.disturbance span{position:relative;top:11px}@media only screen and (max-width:479px){table.disturbance span{top:2px}}body.overlay #wrapper{position:fixed;top:0}body.overlay #header{position:fixed}.grey-bg{background-color:#eaeaea}.grey-border{border:1px solid #eaeaea}.purple-bg{background-color:#702082}.android .main-nav li:last-child{padding-right:0}section.grey-bg{background-color:#eaeaea}.maincontentiframe{width:100%;height:850px}.iframe-large{width:100%;position:relative;height:850px}.iframe-large iframe{display:block;width:100%;height:100%;position:absolute;top:0;left:0}#notification-popup{position:fixed;top:0;left:0;width:100%;z-index:9999;background:transparent;padding:0;height:100%;overflow-y:scroll;overflow-x:hidden}#notification-popup .content{position:relative;background:#fff;padding:100px 80px}#notification-popup h3,#notification-popup h2{color:#3c1053}.fullscreen{width:100%;height:100%;padding:0}.fullscreen .container,.fullscreen .content{height:100%}.fullscreen .full-height-holder .center-vertical-holder{width:auto}.fullscreen .center-vertical-holder{width:100%}.fullscreen h2,.fullscreen p{text-shadow:0 0 6px rgba(0,0,0,0.15)}.fullscreen .full-screen-fader{width:100%;height:100%;background:rgba(0,0,0,0.3);position:absolute;top:0;left:0}.fullscreen .container{position:relative}.fullscreen .large-content{float:none}.fullscreen .img-blurb .img-blurb-content{left:-30px;top:-20px}.fullscreen .img-blurb .icon{width:199px;height:113px;background:url(img/icons/puff-two-drops.png)}.invisible-coverimg{display:none}.validation-error{background:#f4633a;color:#fff;padding:10px 27px;border-radius:25px;display:inline-block;margin:6px 0}.datepicker-inline{background:#fff;padding:10px;border-radius:20px;border:1px solid #ccc;overflow:hidden;margin-top:7px}.datepicker-inline .table-condensed{margin:0 auto;width:245px}.datepicker-inline tr p{margin:3px;padding:5px;width:18px}.datepicker-inline .day:hover:not(.disabled) p{background:#e63888}.datepicker-inline .day p{background:#702082;color:#fff;border-radius:6px;font-size:12px;line-height:17px}.datepicker-inline .disabled p{background:#eaeaea}.datepicker-inline .old p,.datepicker-inline .new p{background:#fff;color:#a7a9ac;border:1px solid #a7a9ac}.datepicker-inline .active p{background:#e63888}.datepicker-inline th.next{position:relative;text-indent:-9999px}.datepicker-inline th.next:after{content:'';display:block;position:absolute;top:3px;right:10px;width:10px;height:15px;background-image:url(img/sprite.png);background-size:90px;background-position:-10px -218px}.datepicker-inline th.prev{position:relative;text-indent:-9999px}.datepicker-inline th.prev:after{content:'';display:block;position:absolute;top:3px;left:10px;width:10px;height:15px;background-image:url(img/sprite.png);background-size:90px;background-position:-40px -218px}.container{margin:0 auto;clear:both;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:73.4375em}.container:after{content:'';display:block;clear:both}@-moz-document url-prefix(){.large-content{margin-left:-0.5em}}.large-content{width:48.4375em}.large-content.right{margin-left:1.5625em;float:right;padding-left:10px}.large-content.left{margin-right:1.5625em;float:left;padding-right:10px}.large-content .faq-small .btn{padding-right:55px}@-moz-document url-prefix(){.small-content{margin-left:-0.5em}}.small-content{width:23.4375em}.small-content.right{float:right}.small-content.left{float:left}.half-content{width:35.9375em}.half-content.right{float:right}.half-content.left{float:left}aside img{border-top-right-radius:10px;border-bottom-left-radius:10px}.push-one{margin-left:6.25em}.push-two{margin-left:12.5em}.push-three{margin-left:18.75em}.two{width:10.9375em}.three{width:17.1875em}.four{width:23.4375em}section,#footer,.buy{background-color:#fff}section{position:relative;color:#444;padding:60px 0}.featured-image{padding:60px 0 0}.featured-image+section{padding-top:32px}.featured-image.with-text .container{position:relative}.featured-image.with-text.center{text-align:center}.featured-image.with-text.center p{margin:0 auto 20px}.featured-image.with-text .text{position:absolute;top:0;width:100%;height:100%;color:#fff;padding:20px}.featured-image.with-text .text p{width:80%}.featured-image.with-text .text>div{width:100%}.featured-image.with-text .text .btn,.featured-image.with-text .text .btn:hover{background:#fff;color:#702082;border-color:#fff}.center-vertical-holder{display:table;height:100%}.center-vertical{display:table-cell;vertical-align:middle}.center-div{margin:0 auto}.high-zindex{z-index:10}section.newsfeed-holder .large-content .btn{margin-right:10px !important}section.newsfeed-holder .large-content .btn:last-child{margin-right:0}section.newsfeed-holder .btn.default:not(.active),section.newsfeed-holder .btn.default:not(.active):hover{background-color:#a7a9ac;border-color:#a7a9ac}section.newsfeed-holder .pressimage{position:relative;width:180px;height:180px;overflow:hidden;margin-bottom:12px;background-color:#f3f3f3;background-repeat:no-repeat;background-position:50%;background-size:100%}section.newsfeed-holder .holder{clear:right;padding-bottom:20px}@media only screen and (min-width:960px){.pressimage{float:right;margin-left:20px}}.toplevel-foretag .btn.default,.toplevel-om-oss .btn.default,.toplevel-foretag .btn.orange,.toplevel-om-oss .btn.orange,.toplevel-foretag .btn.green,.toplevel-om-oss .btn.green,.toplevel-foretag .btn.white,.toplevel-om-oss .btn.white,.toplevel-foretag .btn.grey,.toplevel-om-oss .btn.grey,.toplevel-foretag .btn.grey-full,.toplevel-om-oss .btn.grey-full,.toplevel-foretag .btn.pink,.toplevel-om-oss .btn.pink,.toplevel-foretag .btn.pink-full,.toplevel-om-oss .btn.pink-full,.toplevel-foretag .btn.blue,.toplevel-om-oss .btn.blue,.toplevel-foretag .btn.yellow,.toplevel-om-oss .btn.yellow{background:#a7a9ac;border-color:#a7a9ac;color:#fff}.toplevel-foretag .btn.default.active:not(.expand),.toplevel-om-oss .btn.default.active:not(.expand),.toplevel-foretag .btn.orange.active:not(.expand),.toplevel-om-oss .btn.orange.active:not(.expand),.toplevel-foretag .btn.green.active:not(.expand),.toplevel-om-oss .btn.green.active:not(.expand),.toplevel-foretag .btn.white.active:not(.expand),.toplevel-om-oss .btn.white.active:not(.expand),.toplevel-foretag .btn.grey.active:not(.expand),.toplevel-om-oss .btn.grey.active:not(.expand),.toplevel-foretag .btn.grey-full.active:not(.expand),.toplevel-om-oss .btn.grey-full.active:not(.expand),.toplevel-foretag .btn.pink.active:not(.expand),.toplevel-om-oss .btn.pink.active:not(.expand),.toplevel-foretag .btn.pink-full.active:not(.expand),.toplevel-om-oss .btn.pink-full.active:not(.expand),.toplevel-foretag .btn.blue.active:not(.expand),.toplevel-om-oss .btn.blue.active:not(.expand),.toplevel-foretag .btn.yellow.active:not(.expand),.toplevel-om-oss .btn.yellow.active:not(.expand){background:#702082 !important;border-color:#702082 !important;color:#fff !important}.toplevel-foretag .btn.default:hover:not(.expand),.toplevel-om-oss .btn.default:hover:not(.expand),.toplevel-foretag .btn.orange:hover:not(.expand),.toplevel-om-oss .btn.orange:hover:not(.expand),.toplevel-foretag .btn.green:hover:not(.expand),.toplevel-om-oss .btn.green:hover:not(.expand),.toplevel-foretag .btn.white:hover:not(.expand),.toplevel-om-oss .btn.white:hover:not(.expand),.toplevel-foretag .btn.grey:hover:not(.expand),.toplevel-om-oss .btn.grey:hover:not(.expand),.toplevel-foretag .btn.grey-full:hover:not(.expand),.toplevel-om-oss .btn.grey-full:hover:not(.expand),.toplevel-foretag .btn.pink:hover:not(.expand),.toplevel-om-oss .btn.pink:hover:not(.expand),.toplevel-foretag .btn.pink-full:hover:not(.expand),.toplevel-om-oss .btn.pink-full:hover:not(.expand),.toplevel-foretag .btn.blue:hover:not(.expand),.toplevel-om-oss .btn.blue:hover:not(.expand),.toplevel-foretag .btn.yellow:hover:not(.expand),.toplevel-om-oss .btn.yellow:hover:not(.expand),.toplevel-foretag .btn.default.active:not(.expand),.toplevel-om-oss .btn.default.active:not(.expand),.toplevel-foretag .btn.orange.active:not(.expand),.toplevel-om-oss .btn.orange.active:not(.expand),.toplevel-foretag .btn.green.active:not(.expand),.toplevel-om-oss .btn.green.active:not(.expand),.toplevel-foretag .btn.white.active:not(.expand),.toplevel-om-oss .btn.white.active:not(.expand),.toplevel-foretag .btn.grey.active:not(.expand),.toplevel-om-oss .btn.grey.active:not(.expand),.toplevel-foretag .btn.grey-full.active:not(.expand),.toplevel-om-oss .btn.grey-full.active:not(.expand),.toplevel-foretag .btn.pink.active:not(.expand),.toplevel-om-oss .btn.pink.active:not(.expand),.toplevel-foretag .btn.pink-full.active:not(.expand),.toplevel-om-oss .btn.pink-full.active:not(.expand),.toplevel-foretag .btn.blue.active:not(.expand),.toplevel-om-oss .btn.blue.active:not(.expand),.toplevel-foretag .btn.yellow.active:not(.expand),.toplevel-om-oss .btn.yellow.active:not(.expand){background:#a7a9ac;border-color:#a7a9ac}.toplevel-foretag .btn.default:active,.toplevel-om-oss .btn.default:active,.toplevel-foretag .btn.orange:active,.toplevel-om-oss .btn.orange:active,.toplevel-foretag .btn.green:active,.toplevel-om-oss .btn.green:active,.toplevel-foretag .btn.white:active,.toplevel-om-oss .btn.white:active,.toplevel-foretag .btn.grey:active,.toplevel-om-oss .btn.grey:active,.toplevel-foretag .btn.grey-full:active,.toplevel-om-oss .btn.grey-full:active,.toplevel-foretag .btn.pink:active,.toplevel-om-oss .btn.pink:active,.toplevel-foretag .btn.pink-full:active,.toplevel-om-oss .btn.pink-full:active,.toplevel-foretag .btn.blue:active,.toplevel-om-oss .btn.blue:active,.toplevel-foretag .btn.yellow:active,.toplevel-om-oss .btn.yellow:active,.toplevel-foretag .btn.default a,.toplevel-om-oss .btn.default a,.toplevel-foretag .btn.orange a,.toplevel-om-oss .btn.orange a,.toplevel-foretag .btn.green a,.toplevel-om-oss .btn.green a,.toplevel-foretag .btn.white a,.toplevel-om-oss .btn.white a,.toplevel-foretag .btn.grey a,.toplevel-om-oss .btn.grey a,.toplevel-foretag .btn.grey-full a,.toplevel-om-oss .btn.grey-full a,.toplevel-foretag .btn.pink a,.toplevel-om-oss .btn.pink a,.toplevel-foretag .btn.pink-full a,.toplevel-om-oss .btn.pink-full a,.toplevel-foretag .btn.blue a,.toplevel-om-oss .btn.blue a,.toplevel-foretag .btn.yellow a,.toplevel-om-oss .btn.yellow a,.toplevel-foretag .btn.default a:visited,.toplevel-om-oss .btn.default a:visited,.toplevel-foretag .btn.orange a:visited,.toplevel-om-oss .btn.orange a:visited,.toplevel-foretag .btn.green a:visited,.toplevel-om-oss .btn.green a:visited,.toplevel-foretag .btn.white a:visited,.toplevel-om-oss .btn.white a:visited,.toplevel-foretag .btn.grey a:visited,.toplevel-om-oss .btn.grey a:visited,.toplevel-foretag .btn.grey-full a:visited,.toplevel-om-oss .btn.grey-full a:visited,.toplevel-foretag .btn.pink a:visited,.toplevel-om-oss .btn.pink a:visited,.toplevel-foretag .btn.pink-full a:visited,.toplevel-om-oss .btn.pink-full a:visited,.toplevel-foretag .btn.blue a:visited,.toplevel-om-oss .btn.blue a:visited,.toplevel-foretag .btn.yellow a:visited,.toplevel-om-oss .btn.yellow a:visited{color:#fff !important}.toplevel-foretag .btn.huge,.toplevel-om-oss .btn.huge{background:#3c1053;color:#fff;padding:20px 30px;border-radius:50px;margin-bottom:10px}.toplevel-foretag .btn.purple a,.toplevel-om-oss .btn.purple a,.toplevel-foretag .btn.purple a:visited,.toplevel-om-oss .btn.purple a:visited{color:#fff}.toplevel-foretag .btn.content.blue,.toplevel-om-oss .btn.content.blue,.toplevel-foretag .btn.content.yellow,.toplevel-om-oss .btn.content.yellow{display:block;background:#702082;border-color:#702082}.toplevel-foretag .btn.content.blue span,.toplevel-om-oss .btn.content.blue span,.toplevel-foretag .btn.content.yellow span,.toplevel-om-oss .btn.content.yellow span{color:#fff}.toplevel-foretag .faq-small .btn.default,.toplevel-om-oss .faq-small .btn.default{background:#702082;border-color:#702082}.toplevel-foretag .faq-small .btn.default:hover,.toplevel-om-oss .faq-small .btn.default:hover{color:#fff}.toplevel-foretag .faq-small .btn:hover,.toplevel-om-oss .faq-small .btn:hover{color:#702082}.toplevel-foretag .faq-small .btn>p:before,.toplevel-om-oss .faq-small .btn>p:before{background-position:-65px -97px}.buy-preamble .loader{position:relative;top:-5px;left:42px;width:30px;height:30px;display:inline-block;vertical-align:middle}.buy-preamble .loader img{width:30px;height:30px}.popup-buy .loader img{width:30px;height:30px;margin:0 auto}.fb a,.mail a{font-size:16px}.fb{position:relative}.fb a:before{position:absolute;top:-1px;content:' ';display:block;width:25px;height:25px;background:url(img/sprite.png) -2px -3px no-repeat;background-size:90px}.fb a{padding-left:36px;font-size:16px}.mail{position:relative}.mail a:before{position:absolute;top:-2px;content:' ';display:block;width:26px;height:25px;background:url(img/sprite.png) -32px -3px no-repeat;background-size:90px}.mail a{padding-left:36px;font-size:16px}.c-sharewidget{list-style:none;*zoom:1;margin-bottom:2em !important}.c-sharewidget:before,.c-sharewidget:after{content:"";display:table}.c-sharewidget:after{clear:both}.c-sharewidget li{list-style:none !important;float:left;margin:0;padding-right:8px}.c-sharewidget li a{border:0;font:0/0 a;text-shadow:none;color:transparent;background-color:transparent;display:inline-block;width:26px;height:26px}.c-sharewidget li a:hover{-webkit-transform:scale(1.1);-webkit-transform-origin:50% 50%;-ms-transform:scale(1.1);-ms-transform-origin:50% 50%;transform:scale(1.1);transform-origin:50% 50%}.c-sharewidget .facebook a{background:url(img/icons/social-fb.svg) no-repeat;background-size:26px}.c-sharewidget .email a{background:url(img/icons/social-mail.svg) no-repeat;background-size:26px}.c-sharewidget .tw a{background:url(img/icons/social-twitter.svg) no-repeat;background-size:26px}.c-sharewidget .linkedin a{background:url(img/icons/social-linkedin.svg) no-repeat;background-size:26px}.campaign-code .holder{width:100%}.campaign-code .holder input[type="text"]{width:70%;float:left;margin-right:20px;text-align:left}.campaign-code .holder .btn+.btn{width:20%;max-width:235px;float:left}.campaign-code .error{clear:both;color:#f4633a;font-weight:800}.news-article{border-bottom:1px solid #a7a9ac;margin-top:12px;*zoom:1}.news-article:before,.news-article:after{content:"";display:table}.news-article:after{clear:both}.news-article a{color:#444}.news-article a:hover{text-decoration:none}.news-article .holder{padding:12px 0}.news-article .date{color:#a7a9ac;font-size:14px;margin-bottom:6px}.news-article p{color:#444}#reachmee_list.news-article{border:none}.video-section{position:relative}.video-section.has-button .play-btn{display:block}.video-section video{width:100%;height:100%}.video-section .play-btn{visibility:visible;opacity:1;cursor:pointer;-webkit-transition:visibility 2s,opacity 2s;transition:visibility 2s,opacity 2s}.video-section .play-btn.hide{visibility:hidden;opacity:0}.video-section .play-btn span{display:block;width:25%;height:10px;background:#fff;margin:0 auto}.video-section .play-btn p{font-size:26px;font-weight:800;color:#fff}.video-section .holder{position:absolute;top:0;left:0;width:100%;height:100%;text-align:center}.video-section .holder>div{width:100%}.sk-embed-video{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;max-width:100%}.sk-embed-video iframe,.sk-embed-video object,.sk-embed-video embed{position:absolute;top:0;left:0;width:100%;height:100%}.quote{position:relative;clear:both;color:#fff;margin:20px 0;background:#702082;min-height:250px;width:73.4375em}.quote img{width:100%}.quote h3{color:#fff !important}.quote .text{position:absolute;top:0;width:48.4375em;left:12.5em;height:100%;color:#fff;padding:20px}.quote .btn{background:#fff !important;border-color:#fff !important;color:#702082 !important}.contact-blurb{width:23.4375em;float:left;margin:20px 0}.contact-blurb .img{width:120px;height:120px;float:left;border-radius:60px;overflow:hidden;margin-right:20px;background-size:cover;background-position:center}.contact-blurb .text{position:relative;display:inline-block;float:none;min-height:120px;height:100%;width:calc(100% - 165px)}.contact-blurb .text>div{min-height:120px}.contact-blurb .text h5{font-weight:800;color:#702082;font-size:18px;line-height:22px}.contact-blurb .text p{font-size:14px;line-height:18px;margin-bottom:0}.sidebar .contact-blurb,.sidebar .info-box,.sidebar .quote-blurb{width:100%}.sidebar .btn{margin:5px 0}.contact-2col .contact-blurb{width:100%}@media only screen and (min-width:768px){.contact-2col .contact-blurb{width:50%}}.share.list{list-style:none outside;overflow:visible;float:none}.share.list li{list-style:none outside}.customer-service .full-height-holder,.customer-service .full-height-holder+div{padding:0 16px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.customer-service .full-height-holder{position:absolute}.customer-service .list{width:100%}.customer-service .img{position:relative;width:100%;border-radius:50%;background-size:cover;background-position:center}.customer-service h3{font-family:"Gotham A","Gotham B";font-weight:900}.customer-service h3 a{color:inherit}.customer-service h4{font-weight:400}.toplevel-foretag a,.toplevel-om-oss a,.toplevel-foretag a:visited,.toplevel-om-oss a:visited{color:#702082}.toplevel-foretag .mail a:before,.toplevel-om-oss .mail a:before{background-position:-62px -3px}.toplevel-foretag .customer-service h2,.toplevel-om-oss .customer-service h2{color:#3c1053}.toplevel-foretag .customer-service h5,.toplevel-om-oss .customer-service h5{font-size:16px;color:#702082;font-weight:500}.toplevel-foretag .customer-service .list,.toplevel-om-oss .customer-service .list{margin-bottom:15px}.toplevel-foretag .customer-service .huge,.toplevel-om-oss .customer-service .huge{margin-bottom:15px}.toplevel-foretag .customer-service .btn.content,.toplevel-om-oss .customer-service .btn.content{margin-top:7px}section.content .large-content{padding:0 20px 0 0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}section.content .small-content{padding:0 0 0 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}section.content .small-content img{border-bottom-left-radius:20px;border-top-right-radius:20px}section.content .full-height-holder{position:absolute}section.content .btn{margin:5px 0}.full-width-img{color:#fff;padding:150px 0 100px}.full-width-img .bgimg{background-repeat:no-repeat;background-position:center;background-size:cover}.full-width-img h3{width:30%;min-width:200px}.full-width-img .btn{background:#fff !important;color:#702082 !important;border-color:#fff !important}.full-width-img .btn:hover{border:#fff !important}.products-holder{background:#e6e6e6;background:-moz-linear-gradient(top, #e6e6e6 61%, #d3d3d3 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(61%, #e6e6e6), color-stop(100%, #d3d3d3));background:-webkit-linear-gradient(top, #e6e6e6 61%, #d3d3d3 100%);background:-o-linear-gradient(top, #e6e6e6 61%, #d3d3d3 100%);background:-ms-linear-gradient(top, #e6e6e6 61%, #d3d3d3 100%);background:linear-gradient(to bottom, #e6e6e6 61%, #d3d3d3 100%)}.products-holder .list{width:calc(100% - 6.25em )}.products-holder .list li{border-top:1px solid transparent;border-bottom:1px solid transparent;padding:5px;-webkit-transition:padding 350ms;transition:padding 350ms;font-size:14px;margin:0}.products-holder .list li a{color:#702082}.products-holder .list li.current_page_item,.products-holder .list li:hover{border-top:1px solid #a7a9ac;border-bottom:1px solid #a7a9ac;font-family:"Gotham SSm A","Gotham SSm B";font-size:1.2em;padding:10px 5px;font-weight:900}.products-holder .list li.current_page_item a,.products-holder .list li:hover a{color:#e63888;text-decoration:none}.products-holder .list li:hover+li.current_page_item{border-top:none}.products-holder .list li.current_page_item+li:hover{border-top:none}.products-holder .full-height-holder{position:absolute}.products-holder .full-height-holder,.products-holder .full-height-holder+div{padding:0 20px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}@media only screen and (min-width: 960px){.products-holder .full-height-holder img,.products-holder .full-height-holder+div img{max-width:125%}}.products-holder .btn{min-width:135px}@media only screen and (max-width: 1279px){.products-holder .push-three .btn{margin-bottom:10px}.products-holder .push-three .btn:last-child{margin-bottom:0}}ul.o-contentblurbs{list-style:none;margin:0 -8px 32px;padding:0;clear:both}ul.o-contentblurbs li{padding:0 8px 16px 8px;width:100%;float:left;list-style:none !important;margin:0 !important}@media only screen and (min-width:567px){ul.o-contentblurbs li{width:33%}}ul.o-contentblurbs li img{max-width:100%;height:auto;margin:0 !important}ul.o-contentblurbs li h6{margin:4px 0;min-height:3.5em}@supports (display: grid){ul.o-contentblurbs{display:grid;grid-template-columns:repeat(1, 100%);grid-gap:0;width:100%}@media only screen and (min-width:567px){ul.o-contentblurbs{grid-template-columns:repeat(3, 1fr)}}ul.o-contentblurbs li{width:auto;float:none}ul.o-contentblurbs li h6{min-height:auto}}section .small{font-size:18px}.blurbs .blurb{float:left;margin-right:1.5625em;border-top-right-radius:10px;border-bottom-left-radius:10px;width:23.4375em;overflow:hidden}@-moz-document url-prefix(){.blurb{margin-left:-0.5em}}.blurbs .blurb:last-child,.blurbs .blurb:nth-child(3){margin-right:0}.blurbs .blurb:nth-child(n+4){margin-top:1.5625em}.img-blurb{position:relative;text-align:center}.img-blurb .img-blurb-content{display:inline-block;position:relative}.img-blurb .img-blurb-content .img-blurb-text{position:absolute;top:50%;width:100%;height:50px;margin-top:-30px;margin-left:30px}.img-blurb .small,.img-blurb .big{margin:0}.img-blurb .small{font-weight:800;color:#702082}.img-blurb .big a{font-size:24px;font-weight:800;color:#fbdd40}.warning-blurb{position:relative;width:35.9375em;float:left;margin-right:1.5625em;border-bottom-left-radius:10px;border-top-right-radius:10px;background:#3c1053;padding:30px;color:#e63888}@-moz-document url-prefix(){.warning-blurb{margin-left:-0.5em}}.warning-blurb:last-of-type{margin-right:0}.warning-blurb .icon{width:10.9375em;float:left;background:url(img/icons/warning-icon.png) no-repeat;height:87px}.warning-blurb .text{float:left;width:17.1875em;margin-left:10em}.warning-blurb .text p{color:#fff}.warning-blurb .text h4{font-weight:800}.full-height-holder{height:100%}.full-height-holder.left>div{right:0}.full-height-holder.right>div{left:0}.full-height-holder>div{position:absolute}.full-height-holder img{display:block;margin:0 auto}.white-theme{background-color:#fff}.white-theme h1,.white-theme h2,.white-theme h3,.white-theme h4{color:#702082}.white-theme h4.kicker{color:#e63888}.white-theme.has-bg{color:#000}.white-theme.has-bg h2,.white-theme.has-bg h4,.white-theme.has-bg a{color:#702082}.white-theme.slot .btn,.white-theme.slot .btn.default{background:#e63888;color:#fff}.white-theme.slot .btn a,.white-theme.slot .btn.default a{color:inherit}.white-theme.slot .btn:hover a,.white-theme.slot .btn.default:hover a{text-decoration:none}.white-theme.slot:not(.fullscreen) .full-height-holder .center-vertical-holder{height:auto}.white-theme .default,.white-theme input[type="submit"]{background:#e63888;color:#fff}.white-theme .default a,.white-theme input[type="submit"] a{color:inherit}.white-theme .default:hover,.white-theme input[type="submit"]:hover{border-color:#e63888}.white-theme .default:hover a,.white-theme input[type="submit"]:hover a{text-decoration:none}.toplevel-foretag input[type="submit"],.toplevel-om-oss input[type="submit"],.toplevel-foretag input[type="submit"]:hover,.toplevel-om-oss input[type="submit"]:hover{border-color:#702082;background-color:#702082;color:#fff}.white-theme:not(.grey-bg)+.white-theme:not(.grey-bg){border-top:1px solid rgba(0,0,0,0.25)}.dark-purple-theme{background-color:#3c1053;color:#fff}.dark-purple-theme h1,.dark-purple-theme h2,.dark-purple-theme h3{color:#e63888}.dark-purple-theme h4{color:#fff}.dark-purple-theme.has-bg{color:#fff}.dark-purple-theme.has-bg h2,.dark-purple-theme.has-bg h4,.dark-purple-theme.has-bg a{color:#fff}.dark-purple-theme.slot .btn,.dark-purple-theme.slot .btn.default{border-color:#e63888;background:#e63888;color:#fff}.dark-purple-theme.slot .btn a,.dark-purple-theme.slot .btn.default a{color:inherit}.dark-purple-theme.slot .btn:hover a,.dark-purple-theme.slot .btn.default:hover a{text-decoration:none}.dark-purple-theme.slot:not(.fullscreen) .full-height-holder .center-vertical-holder{height:auto}.dark-purple-theme .default,.dark-purple-theme input[type="submit"]{border-color:#fbdd40;background:#fbdd40;color:#3c1053}.dark-purple-theme .default a,.dark-purple-theme input[type="submit"] a{color:inherit}.dark-purple-theme .default:hover,.dark-purple-theme input[type="submit"]:hover{border-color:#fbdd40}.dark-purple-theme .default:hover a,.dark-purple-theme input[type="submit"]:hover a{text-decoration:none}#player{position:fixed;top:5%;left:5%;width:90%;height:90%;z-index:9999}.video-placeholder{position:relative}.video-placeholder #player{position:absolute;top:0;left:0;width:100%;height:100%}.list{margin-top:4px;margin-bottom:33px;float:left}.list li:last-child{margin-bottom:0}section.interact{display:none}#nps-popup{position:fixed;top:10%;left:10%;width:80%;height:80%;z-index:9999;display:none}#nps-popup #nps-close{position:absolute;height:50px;width:100%;z-index:10000}#nps-popup #nps-close .close-btn{position:absolute;display:block;right:14px;top:13px;background-position:-56px -3px}#nps-popup iframe,#nps-popup object,#nps-popup embed{position:relative;width:100%;height:80%}@media only screen and (min-width:1024px){input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}}@media only screen and (min-width: 1024px) and (max-width: 1279px){.has-bg:not(.faq-search):not(.text-bottom):not(.business) .container{padding:180px 0}.buy-preamble .apartment,.buy-preamble .house{min-width:120px}.faq .head h2{display:block;margin-bottom:20px}.faq .head .input{display:block;float:left}.btn.content{padding:10px 20px}.btn.expand li span{float:none;display:block}.btn.expand .details p,.btn.expand .li.active p{margin-bottom:10px !important}.product .cover-text{margin-top:30px}.customer-service h2{font-size:36px;line-height:40px}.slot.business .img{width:250px;height:250px}.popup-buy .col.info .contact-blurb .img{width:50px;height:50px}.popup-buy .col.info .contact-blurb .text{width:calc(100% - 70px);min-height:50px}.popup-buy .col.info .contact-blurb .text>div{min-height:50px}.popup-buy .col.info .contact-blurb .text h4{margin-bottom:0}}@media only screen and (min-width: 960px) and (max-width: 1024px){body{font-size:12px}.logo{width:130px;height:40px;background-size:130px}.header-holder{padding-left:30px;padding-right:30px}.btn.content{padding:10px 15px}.ugc fieldset{width:80%}.buy-preamble .center-vertical{display:block}.buy-preamble input[type="number"]:not(.hide){width:170px}.popup-buy .small-form{padding-left:10px;padding-right:10px}.popup-buy .small-form li p{padding-left:65px}.popup-buy .checkbox{margin-bottom:20px}.popup-buy .checkbox:last-child{margin-bottom:0}.popup-buy .contact-blurb .img{float:none;margin:0 auto 20px}.popup-buy .contact-blurb .text{width:100% !important;min-height:0}.popup-buy .contact-blurb .text>div{min-height:0}.product .cover-text h3{font-size:30px}.estimation-holder h2{font-size:36px}.help-holder .help .help-holder{width:300px}.datepicker-inline{padding:10px 5px}.datepicker-inline .table-condensed{width:230px}.datepicker-inline .day p{line-height:22px;font-size:12px}.datepicker-inline tr p{width:27px;padding:0;margin:2px}.btn.expand li span{float:none;display:block}.btn.expand .details p.li.active p{margin-bottom:10px !important}.buy .slider-mobile{display:block;margin-bottom:70px}.buy .slider-mobile input{float:none}.slot.business .img{width:250px;height:250px}}@media only screen and (min-width: 768px) and (max-width: 959px){body{font-size:9.5px}table:not(.table-condensed),.list a{font-size:14px}h2{font-size:42px}h3{font-size:26px}.mail a,.fb a{padding-left:40px;white-space:nowrap}.icon-yellow-lightning .icon{background-size:80px;width:80px;margin-left:50px}.faq .head h2{display:block;margin-bottom:20px}.faq .head .input{display:block;float:left;width:100%;margin-bottom:10px}.faq .head input{width:100%;margin-bottom:10px}.buy-preamble .btn{margin-bottom:10px}.customer-service h4{font-size:22px}.customer-service h2{font-size:28px;line-height:36px}.customer-service .full-height-holder{padding:0 10px 0 0}.customer-service .full-height-holder+div{padding:0 0 0 10px}.customer-service .small-content{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0 0 0 10px}.customer-service .btn.content{margin-bottom:10px;min-width:105px}.products-holder .full-height-holder{padding:0 10px 0 0}.products-holder .full-height-holder+div{padding:0}.products-holder .btn{min-width:120px;font-size:14px}.top-answers .answer{padding-right:20px}.top-answers .answer .img{margin-right:15px}.btn.expandable,.btn.contact.expand{width:100%}.btn.expand .data-holder .help-holder{float:left;display:block;left:170px}.btn.expand .data-holder .help{margin-top:15px;right:0}.toplevel-foretag .btn.huge,.toplevel-omoss .btn.huge,.btn.huge{font-size:12px;padding:15px 10px}.campaign-code .large-content{margin:0}.help-holder .help .help-holder{width:300px}.help-holder .help .arrow.hideondesktop{display:block}.product-type .arrow-holder{top:0;padding:20px 20px 80px 80px}#player{top:20%;height:60%}.buy .slider-mobile input{margin-bottom:30px}.slot.business .img{width:200px;height:200px}}@media only screen and (max-width: 959px){.input input[type="text"]{margin-bottom:0}.input ul:empty{display:none}.input ul{clear:both;position:relative;overflow:hidden}.input ul:first-child li:first-child{margin-top:5px}.input .results li{float:none}.input .results li a{color:#702082;font-weight:500;font-size:14px;text-transform:none !important}.input a{text-transform:none}.ugc fieldset{width:auto;min-width:0}.ugc table .wpcf7-list-item{white-space:nowrap}.arrow-holder{display:none;position:absolute;top:-4px;right:0;z-index:100;padding:20px;cursor:pointer}.arrow-holder .arrow{width:20px;height:14px;background:url(img/sprite.png) -56px -86px no-repeat;background-size:80px;display:block;text-indent:-9999px}.col.active .arrow-holder .arrow,.expand.active .arrow-holder .arrow{transform:rotate(180deg);-ms-transform:rotate(180deg);-webkit-transform:rotate(180deg)}.faq-type .product{border-radius:0;clear:both;padding:20px;position:relative}.product-type,.faq-type{position:relative;border-radius:0;border-top:1px solid #a7a9ac;width:100%}.product-type:last-child,.faq-type:last-child{border-bottom:1px solid #a7a9ac}.product-type .description-holder,.faq-type .description-holder{min-height:0 !important;height:auto}.product-type .holder,.faq-type .holder{clear:both}.product-type.active .holder,.faq-type.active .holder{display:block}.product-type .product,.faq-type .product{border-radius:0;clear:both;padding:20px;position:relative}.product-type .cover-text h2,.faq-type .cover-text h2{margin-bottom:0}.product-type .estimation-holder,.faq-type .estimation-holder{display:block}.product-type .estimation-holder.hideonmobile,.faq-type .estimation-holder.hideonmobile{display:none}.buy-preamble .apartment,.buy-preamble .house{min-width:0;width:47%}.buy-preamble .apartment{margin-right:0}.buy-preamble .house{margin-right:4%}.buy-preamble input{width:100%}.buy-preamble .btn{margin-bottom:10px}.buy-preamble .small-content{display:none}.buy .slider-title{padding:0}.buy .slider-mobile{display:block;padding:0;margin-bottom:20px}.buy .slider-mobile input{background:#eaeaea;display:inline-block;line-height:28px;color:#7b227f;font-weight:700;font-size:24px;text-align:left}.product .cover-img{overflow:visible}.product .cover-img img{width:25%;position:relative;margin-right:4%}.product .cover-img .cover-text{float:left;margin-top:0;width:70%}.product .cover-img .cover-text h4{margin-right:10px}.product .cover-img .cover-text h4,.product .cover-img .cover-text h3{float:left;font-size:23px;line-height:28px}.product .cover-img .cover-text .sub{color:#444;float:none}.product .help-holder{margin-left:0;clear:both}.product .help-holder .sub{margin-left:0}.product .sub{margin-bottom:0}.product .sub+h2{margin-bottom:0}.product h2 .light{font-size:20px}.product span.btn{margin-top:5px;margin-bottom:5px}.product .navigation-holder{margin:15px 0}.popup-buy{border-radius:0;overflow:visible}.popup-buy.business .header-text h1{color:#702082}.popup-buy .order{padding:20px 0 40px}.popup-buy .order h4{font-size:22px;line-height:26px}.popup-buy .order .product{padding:10px 0}.popup-buy .order .arrow-holder{top:0}.popup-buy .welcome{padding:20px 20px 40px}.popup-buy .header-text{padding:15px 20px;display:block}.popup-buy .header-text h1{margin-bottom:0;color:#e63888;font-size:32px;line-height:30px}.popup-buy .col{width:100%}.popup-buy .col:not(.product-type){margin-right:0}.popup-buy .col:not(.product-type):not(:first-child)>div:not(.arrow-holder){padding:0 20px}.popup-buy .checkbox{margin-bottom:20px}.popup-buy .checkbox:last-child{margin-bottom:0}.popup-buy .expand:not(.btn){border-bottom:1px solid #a7a9ac;padding:10px 20px;position:relative}.popup-buy .expand:not(.btn) h4{margin-bottom:0}.popup-buy .expand:not(.btn):last-child{border-bottom:0}.popup-buy .expand:not(.btn).active .expandable{display:block}.popup-buy .expand:not(.btn) .expandable{display:none}.popup-buy .expand:not(.btn) .hideondesktop{display:block}.popup-buy .expand:not(.btn) .hideonmobile{display:none}.popup-buy .small-form{margin-top:10px;margin-bottom:20px;padding:30px 20px 10px}.popup-buy .order .container{padding-bottom:20px}.popup-buy .product-type{display:inline-block;border-top:none;margin-top:0 !important}.popup-buy .col:last-child:not(.product-type){padding-top:20px}.popup-buy .close-btn{right:20px}.large-content .faq-small .btn{padding-right:10px}.product-type.active .cover-text .estimation-holder{padding-bottom:0}.help-holder{display:block}.help-holder .help{float:none}.help-holder .floated-text{display:inline-block;float:left}.details .help-holder{display:inline-block}.contact-blurb{margin:15px 0}.contact-blurb .img{float:none;margin-bottom:10px}.contact-blurb .text{width:100%}}@media only screen and (min-width:768px){.hideondesktop{display:none}}@media only screen and (min-width:480px) and (max-width:767px){.contact-blurb{width:calc(50% - 15px);margin-right:15px}}@media only screen and (max-width:767px){html,body,#wrapper{height:auto}.hideonmobile{display:none}#header .mobile-extra .btn{padding:10px;font-size:16px}.container,.large-content,.small-content,.half-content,.two,.three,.four,#footer .col,.product-type,.faq-type,.popup-buy .col .popup-buy .welcome .title,.faq-search .holder,.top-answers .answer,.blurbs .blurb,.warning-blurb,.warning-blurb .text,.faq-search .container .holder,.full-height-holder>div,.popup-buy .welcome .title,.list,.quote{width:100%}.push-one,.push-two,.push-three{margin-left:0}.left,.right{float:none}.large-content.right{margin-left:0;padding-left:0}.small-content{margin:20px 0 0}table:not(.table-condensed){width:auto;min-width:100%}.table-holder{width:100%;overflow-x:scroll;-webkit-overflow-scrolling:touch}.table-holder .table-holder{overflow:auto}.datepicker-inline{padding:10px 5px}.datepicker-inline .table-condensed{width:230px}.datepicker-inline .day p{line-height:22px;font-size:12px}.datepicker-inline tr p{width:27px;padding:0;margin:2px}.contact-blurb .text{min-height:0}.contact-blurb .text>div{min-height:0}.featured-image.with-text .text{position:relative;background:#eaeaea;padding:20px 0}.quote{background-color:transparent;min-height:1px}.quote img{margin-bottom:0}.quote .text{width:100%;left:0;position:relative;background:#eaeaea}.full-width-img{padding:0;background:#eaeaea}.full-width-img .text{padding:20px}.full-width-img h3{width:100%}section,.buy-preamble,.slot .container,#footer .container,.full-screen .container{padding:36px 24px}section.interact{display:block;padding:20px}section.interact .btn{background:#702082;border-color:#702082;color:#fff}section.interact .btn:hover{color:#fff}.full-screen h4{margin-bottom:5px}.full-screen h1{width:80%;font-size:32px;line-height:30px;color:#fff}#notification-popup .content{padding-right:20px;padding-left:20px}.popup-buy .order .container{padding:0;border-top-right-radius:20px;background:#fff}.popup-buy .col.product .products-holder{padding:0}.popup-buy .col.info .expand{padding-left:0}.buy{padding:20px 0 40px;border-top-left-radius:30px;border-top-right-radius:30px;margin-top:-30px}.buy .slider-title,.buy .slider-description,.buy .slider-mobile{padding:0 20px}.slot.has-bg{padding-top:24px}.slot.has-bg:not(.fullscreen){height:auto;min-height:0}.slot.has-bg:not(.fullscreen) .container{padding:36px 24px}.slot.business{height:auto}.slot.business.has-bg .container{padding:36px 24px}.slot.business:not(.has-bg) .text{padding:36px 24px}.slot.business .img{width:200px;height:200px;margin:24px auto 0;float:none}.slot.business .text{width:100%;padding:0}.slot.business .text p{font-size:16px;line-height:inherit}.full-height-holder,.full-height-holder>div{position:static}.customer-service .full-height-holder,.customer-service .center-vertical-holder{height:auto;position:static}.toplevel-foretag .customer-service h2,.toplevel-om-oss .customer-service h2{font-size:24px;line-height:26px}.icon-left .content,.icon-right .content,.warning-blurb .text{margin:0}.icon-two-bubbles .icon{width:280px;background-size:280px}.blurb,.warning-blurb,#footer .col,.slot .icon,.full-height-holder img{margin-bottom:15px}.small-content.right{margin-top:30px}.slot.icon-left .full-height-holder,.slot.icon-right .full-height-holder{width:100%;margin:0}.slot.icon-left .full-height-holder .icon,.slot.icon-right .full-height-holder .icon{float:none;margin:0 auto 20px}.slot.icon-left .icon,.slot.icon-right .icon{position:relative;float:none;padding:0;margin-bottom:40px}.slot.icon-left .icon>div,.slot.icon-right .icon>div{margin:0 auto}.slot.icon-left .text,.slot.icon-right .text{width:100%;margin:0}.icon .icon-two-bubbles{width:280px;background-size:280px}li.btn p,li.btn li,li.btn div{font-size:14px}li.btn>p:first-child{font-size:16px}.btn.expand li span{float:none;display:block}.btn.expand .details p{margin-bottom:10px !important}.btn.expand .data-holder p>.help-holder{display:block}.btn.expand .data-holder .help.open .help-holder,.btn.expand .data-holder .help.active .help-holder{display:block}.btn.expand .data-holder .help{margin-top:-5px;right:10px}.bgimg{position:relative;height:160px;width:auto;margin:0 24px -12px}.invisible-coverimg{display:block}.large-content.left{margin-right:0;padding-right:0}.blurbs .blurb:nth-child(n+4){margin-top:0}.products-holder .small-content{display:none}.products-holder .full-height-holder{width:50%;float:left;position:static}.products-holder .push-three h2{margin-top:24px}.products-holder .large-content p{clear:both}.products-holder .large-content .btn{min-width:0;padding:12px 0;width:calc(50% - 12px);display:block;float:left;margin-right:12px}.products-holder .large-content .btn:last-child{margin-right:0}.product-type .cover-text h3{font-size:32px !important;line-height:32px !important}.product-type .cover-text h4{font-size:27px !important;line-height:36px !important}.customer-service .full-height-holder,.customer-service .full-height-holder+div,.products-holder .full-height-holder,.products-holder .full-height-holder+div,section.content .large-content,section.content .small-content{padding:0}p,.intro_small{font-size:16px;line-height:20px}.intro_big{font-size:21px}h1,.intro_small{margin-bottom:0}.popup-buy .welcome h2{font-size:32px;line-height:35px}h2,.popup-buy h2{font-size:28px;line-height:34px}h3{font-size:21px;line-height:26px}h4{font-size:16px;line-height:22px}h5{font-size:14px;line-height:18px}h3+h2{margin-top:-6px}.home a.backtotop{background:#e63888;color:#fff}a.backtotop{display:block;width:100%;padding:20px 0;text-align:center;background:#fff;color:#702082;font-weight:800}.interact .btn{width:100%;margin-bottom:12px}.interact .btn:last-child{margin-bottom:0}.results:not(.btn){position:relative;top:0;clear:both;margin-bottom:10px}.buy-preamble input[type=text].btn{margin-top:0;width:100%}.buy-preamble .btn{display:block;float:left}.buy-preamble input.btn{width:100%;margin-top:0}.buy-preamble .btn.ok{margin:0;margin-right:6px}.buy-preamble .apartment{float:right}.buy-preamble .loader{left:50%;top:4px;margin-left:-17px;margin-bottom:10px}.btn.content{padding:10px 24px;margin-right:10px}.btn.content:last-child{margin-right:0}.main-footer-menu{display:none}.full-screen{height:auto}.full-screen h5{display:none}.full-screen .img-blurb{text-align:left}.full-screen .img-blurb .icon{width:115px;height:65px;background-size:115px;background-repeat:no-repeat}.full-screen .img-blurb .img-blurb-content{left:0}.full-screen .img-blurb .img-blurb-text{text-align:center;margin-left:17px;margin-top:-22px}.full-screen .small{font-size:11px;line-height:14px}.full-screen .big a{font-size:14px}.faq.grey-bg{background-color:#fff;border-top:1px solid #a7a9ac;padding:20px 20px 0}.faq.grey-bg+.faq{padding-top:20px}.faq.grey-bg h2{margin-bottom:20px;display:block}.faq.grey-bg .input,.faq.grey-bg input{width:100%}.faq.grey-bg .input{margin-bottom:10px}.input .faq-result a:before{width:19px;height:19px;background:url(img/sprite.png) -58px -137px no-repeat;background-size:80px}.faq-small li.btn,.faq-small .btn{padding:6px}.faq-small li.btn>p,.faq-small .btn>p{padding-left:32px}.faq-small.info .btn>p:before{background:url(img/sprite.png) -3px -137px no-repeat;background-size:80px;left:11px;top:6px}.faq-small.info .btn.active>p:before{background:url(img/sprite.png) -30px -137px no-repeat;background-size:80px;left:11px;top:6px}.faq-small .btn p:before{width:17px;background:url(img/sprite.png) -5px -86px no-repeat;background-size:80px;left:14px}.toplevel-foretag .faq-small .btn p:before,.toplevel-om-oss .faq-small .btn p:before{background-position:-59px -86px}.faq-search .container{height:auto}.faq-search .holder>div{width:100%}.faq-search h2{margin-bottom:8px}.faq-search .input span{width:20px;height:20px;background-position:0 -41px;background-size:60px;top:10px;right:10px}.faq-search .input input.results{margin-bottom:0;border:1px solid rgba(0,0,0,0.25);border-bottom:0}.faq-search .input div.results{top:40px;border:1px solid rgba(0,0,0,0.25);border-top:0}.faq-compact-search .input div.results{left:0}.customer-service .full-height-holder{width:25%;float:left;margin:0 20px 0 0}.btn.contact.expand{padding:20px;width:100%;border-radius:20px}.btn.contact.expand .big{width:65%}.top-answers .answer .img{margin-right:20px;margin-bottom:20px}.campaign-code .holder input[type="text"]{width:100%}.campaign-code .holder .btn+.btn{width:47%}}@media only screen and (max-width:479px){.product-type .arrow-holder{top:5px;padding-right:20px}.products-holder .push-three .btn{margin-bottom:10px;width:100%}.products-holder .push-three .btn:last-child{margin-bottom:0}#player{top:20%;height:60%}.popup-buy .grey-bg.additional.business-only+.help-holder{float:left}.popup-buy .grey-bg.additional.business-only+.help-holder p.floated-text{width:70%}.popup-buy .grey-bg.additional.business-only+.help-holder .help{bottom:20px}.popup-buy .small-form{padding-left:10px;padding-right:10px}.popup-buy .small-form li p{padding-left:65px}.contact-blurb{width:100%;margin-right:0}.mypages-login input,.mypages-login .float-left{width:100%}}#ChattStart{margin:0 0 16px}.sustain-area{background:#f3f3f3;min-height:284px;padding:24px 0 12px}.sustain-area h2{color:#3c1053}.sustain-area p{font-size:14px;line-height:18px}.sustain-area .btn{font-size:14px}.sustain-area .content{padding:0 1em}@media only screen and (min-width:1024px){.sustain-area .content{padding:4em 1em;float:right;width:36em}}@media only screen and (min-width:1279px){.sustain-area .content{float:right;width:42em}}.sustain-area .navigate{position:relative;padding:0 1em;min-height:280px;background-image:url(img/sustain-pic-std.jpg);background-size:212px 152px;background-repeat:no-repeat;background-position:14px 55px}@media only screen and (min-width:767px){.sustain-area .navigate{background-size:334px 231px;background-position:0 0}}@media only screen and (min-width:1024px){.sustain-area .navigate{float:left;width:36em}}@media only screen and (min-width:1279px){.sustain-area .navigate{float:left;width:30em}}.sustain-area .sustain-menu{position:absolute;left:153px;top:30px;width:220px;height:260px}@media only screen and (min-width:767px){.sustain-area .sustain-menu{left:253px;top:30px}}.sustain-area .sustain-menu-kund,.sustain-area .sustain-menu-miljo,.sustain-area .sustain-menu-ekonomi,.sustain-area .sustain-menu-socialt{display:block;position:absolute;border:0;font:0/0 a;text-shadow:none;color:transparent;background-color:transparent;-webkit-transition:.2s all ease-in-out;-moz-transition:.2s all ease-in-out;transition:.2s all ease-in-out;-webkit-transition:.2s all ease;-moz-transition:.2s all ease;-o-transition:.2s all ease;-ms-transition:.2s all ease;transition:.2s all ease}.sustain-area .sustain-menu-kund:hover,.sustain-area .sustain-menu-miljo:hover,.sustain-area .sustain-menu-ekonomi:hover,.sustain-area .sustain-menu-socialt:hover{-ms-transform:scale(1.07);transform:scale(1.07)}.sustain-area .sustain-menu-kund{left:14px;top:9px;background-image:url('img/sustain-menu-kund.png');background-position:center center;background-repeat:no-repeat;background-attachment:scroll;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;width:80px;height:111px}.sustain-area .sustain-menu-miljo{left:92px;top:34px;background-image:url('img/sustain-menu-miljo.png');background-position:center center;background-repeat:no-repeat;background-attachment:scroll;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;width:105px;height:90px}.sustain-area .sustain-menu-ekonomi{left:94px;top:125px;background-image:url('img/sustain-menu-ekonomi.png');background-position:center center;background-repeat:no-repeat;background-attachment:scroll;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;width:107px;height:82px}.sustain-area .sustain-menu-socialt{left:30px;top:131px;background-image:url('img/sustain-menu-socialt.png');background-position:center center;background-repeat:no-repeat;background-attachment:scroll;-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;width:81px;height:118px}.sustain-area.kundansvar .sustain-menu-kund,.sustain-area.miljoansvar .sustain-menu-miljo,.sustain-area.ekonomiskt-ansvar .sustain-menu-ekonomi,.sustain-area.socialt-ansvar .sustain-menu-socialt{-ms-transform:scale(1.07);transform:scale(1.07)}.sustain-area.kundansvar .navigate{background:url(img/sustain-pic-kund.jpg) no-repeat}.sustain-area.miljoansvar .navigate{background:url(img/sustain-pic-miljo.jpg) no-repeat}.sustain-area.ekonomiskt-ansvar .navigate{background:url(img/sustain-pic-ekonomi.jpg) no-repeat}.sustain-area.socialt-ansvar .navigate{background:url(img/sustain-pic-socialt.jpg) no-repeat}.is-loading #language-select{opacity:0;-webkit-transform:scale(.8);-webkit-transform-origin:50% 50%;-ms-transform:scale(.8);-ms-transform-origin:50% 50%;transform:scale(.8);transform-origin:50% 50%;-webkit-transition:all .6s ease-in-out;-moz-transition:all .6s ease-in-out;transition:all .6s ease-in-out;-webkit-transition:all .6s ease;-moz-transition:all .6s ease;-o-transition:all .6s ease;-ms-transition:all .6s ease;transition:all .6s ease}#language-select{display:none;position:absolute;right:0;top:48px;z-index:8888;width:100%;padding:18px 30px 0 24px;background:#f3f3f3;opacity:1;-webkit-transform:scale(1);-webkit-transform-origin:50% 50%;-ms-transform:scale(1);-ms-transform-origin:50% 50%;transform:scale(1);transform-origin:50% 50%;-webkit-transition:all .6s ease-in-out;-moz-transition:all .6s ease-in-out;transition:all .6s ease-in-out;-webkit-transition:all .6s ease;-moz-transition:all .6s ease;-o-transition:all .6s ease;-ms-transition:all .6s ease;transition:all .6s ease}@media only screen and (min-width: 960px){#language-select{right:60px;top:108px;width:400px;border-radius:12px}}#language-select p{font-size:14px;line-height:18px}#language-select a{padding-right:12px;color:#702082;font-weight:900}#language-select .close{border:0;font:0/0 a;text-shadow:none;color:transparent;background-color:transparent;position:absolute;top:12px;right:12px;width:24px;height:24px;background:url(img/sprite-big.png) no-repeat -25px 0;background-size:50px}.quote-blurb{position:relative;background:#eaeaea;border-radius:20px;padding:30px 20px;float:left;margin:5px 0 40px;max-width:100%}.quote-blurb:after{content:'';display:block;position:absolute;bottom:-20px;left:40px;width:0;height:0;border-left:20px solid transparent;border-right:-8px solid transparent;border-top:20px solid #eaeaea}.quote-blurb .img{width:120px;height:120px;float:left;border-radius:60px;overflow:hidden;margin-right:20px;background-size:cover;background-position:center}@media only screen and (max-width: 1279px){.quote-blurb .img{float:none;margin-bottom:10px}}.quote-blurb .text{position:relative;display:inline-block;float:none;min-height:120px;height:100%;width:calc(100% - 145px)}.quote-blurb .text>div{min-height:120px}.quote-blurb .text p,.quote-blurb .text a{font-size:14px}@media only screen and (max-width: 1279px){.quote-blurb .text{width:100%}}.quote-blurb a,.quote-blurb a:visited{color:#702082}@media only screen and (max-width:479px){table.disturbance span{top:2px}}table.data thead{border-bottom:1px dotted #808080}table.data th{font-weight:bold;text-align:left}table.data th,table.data td{padding:2px 5px}.mypages-login h3{font-weight:800;margin:1em 0;font-size:18px;color:#3c1053 !important}.mypages-login .menu a{margin-right:15px !important}.mypages-login .forms>div{margin-top:20px}.mypages-login .forms>div>div{margin-top:15px}.mypages-login .float-left{display:inline-block;margin-right:20px;vertical-align:bottom}@media only screen and (max-width: 959px){.mypages-login .float-left{margin-bottom:10px}}.mypages-login .float-left a{display:inline-block}.mypages-login .float-left a:not(.btn){line-height:50px}.mypages-login .float-left input{text-align:left}.mypages-login .float-left input[type="submit"]{margin-right:20px !important}.mypages-login .float-left.help-text{vertical-align:bottom}.mypages-login .float-left.help-text p{margin-bottom:0}.mypages-login label span{color:inherit}.mypages-login .login-user input[type="submit"]{margin-right:20px}.mypages-login .login-bankid,.mypages-login .login-mobilebankid{display:none}.mypages-login .bankid-choose-user{display:none}.mypages-login .bankid-choose-user .box{position:relative;float:right;background:#fff;padding:24px;border-radius:12px}@media only screen and (min-width:768px){.mypages-login .bankid-choose-user .box{width:35.9375em}}@media only screen and (max-width:1024px){.mypages-login .bankid-choose-user .box .users{margin:40px 0 0}}.mypages-login .bankid-choose-user .box .users li{border-bottom:1px solid #a7a9ac;margin:0 0 0 0;padding:5px 0 3px 0}.mypages-login .bankid-choose-user .box .users li a{color:#702082}.mypages-login .bankid-choose-user .box .users li:first-child{border-top:1px solid #a7a9ac}.mypages-login .user-select{position:relative;font-weight:800;margin:0 0 1em;padding-left:25px;font-size:18px;color:#3c1053 !important}@media only screen and (min-width:1025px){.mypages-login .user-select{width:30%;float:left;margin:1em 0}}.mypages-login .user-select:before{content:'';display:block;position:absolute;width:25px;left:0;top:2px;height:25px;background:url(../mypages/assets/Images/valj-anvandare.png) 0 0 no-repeat}.mypages-login .search-field{position:relative;margin-top:6px}@media only screen and (min-width:1025px){.mypages-login .search-field{width:65%;float:right}}.mypages-login .search-field span{content:'';display:block;position:absolute;top:13px;left:20px;width:25px;height:25px;background:url(../mypages/assets/Images/sprite.png) 1px -21px no-repeat;background-size:45px;z-index:100}@media only screen and (max-width:1024px){.mypages-login .search-field span{top:7px;left:14px}}.mypages-login .search-field input{width:100%;text-align:left;padding-left:52px}.mypages-login .nav-range{position:relative;width:100%;min-height:20px;float:right;overflow:hidden;text-align:center;margin-top:30px}@media only screen and (min-width:1025px){.mypages-login .nav-range{width:260px}}.mypages-login .nav-range .prev,.mypages-login .nav-range .next{position:absolute;top:50%;margin-top:-10px;width:20px;height:20px;border-radius:10px;border:1px solid #a7a9ac;cursor:pointer}.mypages-login .nav-range .prev:after,.mypages-login .nav-range .next:after{content:'';display:block;position:absolute;top:0;right:0;width:100%;height:100%;background-image:url(../mypages/assets/Images/sprite.png);background-repeat:no-repeat}.mypages-login .nav-range .prev{left:0}.mypages-login .nav-range .prev:after{background-position:-42px -2px}.mypages-login .nav-range .next{right:0}.mypages-login .nav-range .next:after{background-position:-62px -2px}.bankid-loading,.gdpr-loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999}.bankid-loading .center-table,.gdpr-loading .center-table{display:table;height:100%;width:100%;position:relative;z-index:10}.bankid-loading .center-table .center-cell,.gdpr-loading .center-table .center-cell{display:table-cell;vertical-align:middle}.bankid-loading .loader,.gdpr-loading .loader{position:relative;width:25px;height:25px;background:url(../img/loader-light.gif) no-repeat;background-size:25px;margin:0 0 12px 4px}.bankid-loading .holder,.gdpr-loading .holder{position:relative;margin:0 auto;background:#fff;padding:30px;border-radius:12px;width:90%}@media only screen and (min-width:480px){.bankid-loading .holder,.gdpr-loading .holder{width:430px}}.bankid-loading .bg,.gdpr-loading .bg{position:absolute;left:0;top:0;z-index:9;width:100%;height:100%;background:rgba(60,16,83,0.8)}.campaign-custom-video .content{float:left;width:100%}.campaign-custom-video .text-holder{float:left}.campaign-custom-video .container .content h2,.campaign-custom-video .container .content h3{color:#fff}.campaign-custom-video .container .content p{color:#fff}.campaign-custom-video .disclamer{position:absolute;right:0;bottom:20px;pointer-events:none}.campaign-custom-video .disclamer p{font-size:10px;line-height:1.1em;margin-top:2em;text-align:right}@media only screen and (max-width:768px){.campaign-custom-video .disclamer{position:relative;top:2em}.campaign-custom-video .disclamer p{text-align:left}}.campaign-custom-video .container .content .btn{background:#e63888;border:none}.campaign-custom-video .container .content .btn.blue{border-color:#00a9e0;color:#fff;background:#00a9e0}.campaign-custom-video .ribbon{width:75%;margin-bottom:1em}.campaign-custom-video .video{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:2s all ease;-moz-transition:2s all ease;-o-transition:2s all ease;-ms-transition:2s all ease;transition:2s all ease}.campaign-custom-video .video.scale{-webkit-transform:scale(1.02);-moz-transform:scale(1.02);-ms-transform:scale(1.02);-o-transform:scale(1.02);transform:scale(1.02)}.campaign-custom-video .video video{position:absolute;right:0;bottom:0;min-width:100%;min-height:100%;width:auto;height:auto;z-index:2}.campaign-custom-video div.container{z-index:3;margin-top:30px}.campaign-custom-video .overlay{position:absolute;width:100%;z-index:2;top:0;left:0;height:90px;background:-moz-linear-gradient(top, rgba(0,0,0,0.65) 0, rgba(0,0,0,0) 98%, rgba(0,0,0,0) 100%);background:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0.65)), color-stop(98%, rgba(0,0,0,0)), color-stop(100%, rgba(0,0,0,0)));background:-webkit-linear-gradient(top, rgba(0,0,0,0.65) 0, rgba(0,0,0,0) 98%, rgba(0,0,0,0) 100%);background:-o-linear-gradient(top, rgba(0,0,0,0.65) 0, rgba(0,0,0,0) 98%, rgba(0,0,0,0) 100%);background:-ms-linear-gradient(top, rgba(0,0,0,0.65) 0, rgba(0,0,0,0) 98%, rgba(0,0,0,0) 100%);background:linear-gradient(to bottom, rgba(0,0,0,0.65) 0, rgba(0,0,0,0) 98%, rgba(0,0,0,0) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0)}.campaign-custom-video .thin{font-weight:500}.vardeskapande-container{padding:35px 25px 0}.vardeskapande-container h1{font-size:42px;margin-bottom:32px;line-height:48px}.vardeskapande-container .responsive-svg-container{position:relative;width:100%;padding-bottom:39.31623932%}.vardeskapande-container .responsive-svg-container svg{position:absolute;width:100%;height:100%}.vardeskapande-container .mobile-image{display:none}@media screen and (max-width:567px){.vardeskapande-container{padding-bottom:35px}.vardeskapande-container .responsive-svg-container{display:none}.vardeskapande-container .mobile-image{display:block}}.no-touch-device .vardeskapande-container .stroke-blue,.no-touch-device .vardeskapande-container .stroke-purple{stroke:#a7a8aa;transition:all .3s}.no-touch-device .vardeskapande-container .fill-blue,.no-touch-device .vardeskapande-container .fill-blue{fill:#a7a8aa;transition:all .3s}.vardeskapande-container .hover-item{cursor:pointer}.vardeskapande-container .hover-item:hover .stroke-blue{stroke:#49c5b1}.vardeskapande-container .hover-item:hover .fill-blue{fill:#49c5b1}.vardeskapande-container .hover-item:hover .stroke-purple{stroke:#701f82}.vardeskapande-container .hover-item:hover .fill-purple{fill:#701f82}.vardeskapande-container #circles{cursor:pointer}.vardeskapande-container #circles #circle-d,.vardeskapande-container #circles #circle-c,.vardeskapande-container #circles #circle-b{position:relative}.vardeskapande-container #circles #circle-d .inner,.vardeskapande-container #circles #circle-c .inner,.vardeskapande-container #circles #circle-b .inner{position:relative;-webkit-transform:scale(.1);-webkit-transform-origin:50% 50%;-ms-transform:scale(.1);-ms-transform-origin:50% 50%;transform:scale(.1);transform-origin:50% 50%;transition:all .4s ease-out}.vardeskapande-container #circles #circle-a .inner{transform:scale(.8);transform-origin:19% 46%}.vardeskapande-container #circles #circle-a .text-bottom,.vardeskapande-container #circles #circle-a .text-top{transition:all .3s ease-in-out}.vardeskapande-container #circles #circle-a .text-top{transform:translate3d(0, 8%, 0)}.vardeskapande-container #circles #circle-a .text-bottom{transform:translate3d(0, -10%, 0)}.vardeskapande-container #circles #circle-a .inner,.vardeskapande-container #circles #circle-b .inner,.vardeskapande-container #circles #circle-c .inner,.vardeskapande-container #circles #circle-d .inner{transition:all .4s ease-in-out}.vardeskapande-container #circles #circle-b .inner{transform-origin:14.5% 35.5%}.vardeskapande-container #circles #circle-c .inner{transform-origin:9.4% 22.6%}.vardeskapande-container #circles #circle-d .inner{transform-origin:4.5% 10.1%}.vardeskapande-container #circles #logo .inner{transform-origin:7.3% 17%;transition:all .2s ease-in-out}.vardeskapande-container #circles #logo:hover .inner{transform:scale(1.1)}.vardeskapande-container #circles #logo:active .inner{transform:scale(.9)}.vardeskapande-container #circles.active #logo{pointer-events:none}.vardeskapande-container #circles.active #logo .inner{transition:transform .4s ease-in-out,opacity .2s ease-in .2s;transform:scale(.1);opacity:0}.vardeskapande-container #circles.active #circle-a .text-top,.vardeskapande-container #circles.active #circle-a .text-bottom{transform:translate3d(0, 0, 0)}.vardeskapande-container #circles.active #circle-a .inner,.vardeskapande-container #circles.active #circle-b .inner,.vardeskapande-container #circles.active #circle-c .inner,.vardeskapande-container #circles.active #circle-d .inner{transform:translate3d(0, 0, 0)}.vardeskapande-container #circles.active #circle-c .inner{transition-delay:.1s}.vardeskapande-container #circles.active #circle-d .inner{transition-delay:.2s}.vardeskapande-container.no-transforms #circles{cursor:default}.vardeskapande-container.no-transforms #circles #logo{display:none}.vardeskapanade-popup-content{visibility:hidden;opacity:0;position:fixed;z-index:9999;top:0;left:0;bottom:0;right:0;width:100vw;height:100vh;transition:all .4s}.vardeskapanade-popup-content .inner{position:fixed;background:#fff;border-radius:10px;top:50%;left:50%;height:550px;max-width:1033px;max-height:90vh;width:100%;padding:50px 25px 20px 60px;transform:translate(-50%, -50%);z-index:9999;box-shadow:0 0 10px 0 rgba(0,0,0,0.15)}@media screen and (max-width:1136px){.vardeskapanade-popup-content .inner{max-width:90vw}}@media screen and (max-width:768px){.vardeskapanade-popup-content .inner{padding:80px 25px 20px}.vardeskapanade-popup-content .inner h4.title{left:20px;top:15px}}@media screen and (max-height:768px){.vardeskapanade-popup-content .inner{height:90vh}}.vardeskapanade-popup-content .inner .inner-content{max-height:100%;overflow:auto}.vardeskapanade-popup-content .inner .close-btn{border-radius:50%;width:30px;height:30px;display:block;position:absolute;top:10px;right:10px;border:1px solid #702082;background:none;transition:all .2s}.vardeskapanade-popup-content .inner .close-btn:before,.vardeskapanade-popup-content .inner .close-btn:after{content:"";display:block;width:20px;height:1px;position:absolute;top:50%;left:5px;background:#702082}.vardeskapanade-popup-content .inner .close-btn:before{transform:rotate(-45deg)}.vardeskapanade-popup-content .inner .close-btn:after{transform:rotate(45deg)}.vardeskapanade-popup-content .inner .close-btn:hover{border-color:#3c1053}.vardeskapanade-popup-content .inner .close-btn:hover:before,.vardeskapanade-popup-content .inner .close-btn:hover:after{background:#3c1053}.vardeskapanade-popup-content:before{content:"";display:block;position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,0.66);z-index:9998}.vardeskapanade-popup-content.active{visibility:visible;opacity:1}.vardeskapanade-popup-content h4.title{font-weight:800;font-size:18px;position:absolute;left:60px;top:14px;margin:0}.vardeskapanade-popup-content .columns:after{content:"";display:block;clear:both}.vardeskapanade-popup-content .columns .col{float:left;width:47%;margin-right:6%}.vardeskapanade-popup-content .columns .col:nth-child(even){margin-right:0}@media screen and (max-width:768px){.vardeskapanade-popup-content .columns .col{float:none;width:100%;margin-right:0;margin-bottom:20px}}.fact-block .fact-title{font-size:0;margin-bottom:10px}.fact-block .fact-title .svg{display:inline-block;vertical-align:middle;margin-right:15px;height:46px;width:46px}.fact-block .fact-title .svg svg{width:46px;height:46px}.fact-block .fact-title h5{display:inline-block;vertical-align:middle;font-size:18px;font-weight:400;max-width:calc(100% - 80px)}.fact-block p{font-size:16px;font-weight:500;margin:0 0 20px}.fact-block img{display:block;max-width:100%}.fact-block img.facts-img{max-width:460px}.fact-block .minifact,.fact-block .columns3 .minifact{float:left;width:33%;min-height:58px}.fact-block .minifact .descr,.fact-block .columns3 .minifact .descr{display:block;width:80%;font-size:.7em;line-height:1em}.fact-block .columns2 .minifact{width:50%}.fact-block .num{font-size:2.3em;font-weight:900}.fact-block .unit{font-size:1.1em;font-weight:100;margin-left:3px}.fact-block .descr{font-size:.83em;font-weight:normal}.fact-block .sub-fact-block{margin-top:20px}.fact-block:after{content:"";display:block;clear:both}.sub-fact-block p{font-size:16px;font-weight:500;margin:0 0 20px}.sub-fact-block:after{content:"";display:block;clear:both}.sub-fact-block .subtitle{display:block;font-size:12px;margin:0 0 10px}.sub-fact-block .left{float:left}.sub-fact-block .right{float:right}.sub-fact-block.collapse .left,.sub-fact-block.collapse .right{float:none}.sub-fact-block.collapse .left{margin-bottom:15px}.sub-fact-block .global-mal-logos{list-style:none;margin:0;padding:0;font-size:0}.sub-fact-block .global-mal-logos li{display:inline-block;vertical-align:top;margin:0 10px 0 0;padding:0}.sub-fact-block .global-mal-logos li:last-child{margin-right:0}.sub-fact-block .global-mal-logos li a{display:block}.sub-fact-block .global-mal-logos li img{display:block;max-width:50px}.sub-fact-block .fact-button{display:inline-block;margin-top:6px;font-size:14px;font-weight:500;padding:3px 15px;border-radius:15px;border:1px solid #979797;color:#444;transition:all .2s}.sub-fact-block .fact-button:hover{border-color:#702082;color:#702082;text-decoration:none}body.locked{overflow:hidden}#test-svg{position:absolute;top:0;left:0;display:block;z-index:9999}#test-element{transform:translateX(1px)}.gdpr .gdpr_status{padding-top:10px}.gdpr table.data{width:100%}.gdpr table.data p{margin:0 0 10px 0}.gdpr .gdpr_form fieldset{margin-top:24px;width:75%}.gdpr .gdpr_form p{font-size:14px;margin-top:10px}.gdpr .gdpr_col{width:40%;float:left;margin-right:10%}.gdpr .gdpr_smalltext{font-size:70%;font-weight:normal}.gdpr input[type="text"].not-valid{border-color:#e63888}.gdpr .message{display:none}.gdpr .error{color:#f00;display:none}#kontakt{width:320px;height:284px}html.js body:not(.wp-admin) .animate{-webkit-transition:.5s all ease;-moz-transition:.5s all ease;-o-transition:.5s all ease;-ms-transition:.5s all ease;transition:.5s all ease;-webkit-transform:scale(.99);-moz-transform:scale(.99);-ms-transform:scale(.99);-o-transform:scale(.99);transform:scale(.99);opacity:0}html.js body:not(.wp-admin) .in-viewport{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}html.js body:not(.wp-admin) .scale-in{opacity:0;-webkit-transform:scale(0);-moz-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transition:.2s all ease-out;-moz-transition:.2s all ease-out;-o-transition:.2s all ease-out;-ms-transition:.2s all ease-out;transition:.2s all ease-out;transition-delay:1s}html.js body:not(.wp-admin) .scale-in.scale{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1)}html.js body:not(.wp-admin) section .animate .btn,html.js body:not(.wp-admin) section .animate .blurb{-webkit-animation-delay:.1s;-moz-animation-delay:.1s;-ms-animation-delay:.1s;-o-animation-delay:.1s;animation-delay:.1s}html.js body:not(.wp-admin) section .in-viewport .btn,html.js body:not(.wp-admin) section .in-viewport .blurb{-webkit-animation:animation 1000ms linear both;-moz-animation:animation 1000ms linear both;-ms-animation:animation 1000ms linear both;-o-animation:animation 1000ms linear both;animation:animation 1000ms linear both}html.js body:not(.wp-admin) section .in-viewport .btn.animation-done,html.js body:not(.wp-admin) section .in-viewport .blurb.animation-done{-webkit-animation:none;-moz-animation:none;-ms-animation:none;-o-animation:none;animation:none;-webkit-transform:scale(1);-moz-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition-delay:0;-moz-transition-delay:0;-ms-transition-delay:0;-o-transition-delay:0;transition-delay:0;-webkit-animation-delay:0;-moz-animation-delay:0;-ms-animation-delay:0;-o-animation-delay:0;animation-delay:0}html.js body:not(.wp-admin) section .in-viewport #kontakt{width:320px;height:284px;background:url("img/backgrounds/spritesheet.png") no-repeat;background-size:13760px auto;background-position:-13760px 0;-webkit-animation:kontakt 1.68s steps(42, end) 1 forwards;-moz-animation:kontakt 1.68s steps(42, end) 1 forwards;-ms-animation:kontakt 1.68s steps(42, end) 1 forwards;-o-animation:kontakt 1.68s steps(42, end) 1 forwards;animation:kontakt 1.68s steps(42, end) 1 forwards}html.js body:not(.wp-admin) section .in-viewport #kontakt.stop-animation{-webkit-animation:none;-moz-animation:none;-ms-animation:none;-o-animation:none;animation:none}html.js body:not(.wp-admin) section .in-viewport #kontakt.no-delay{-webkit-animation-delay:0;-moz-animation-delay:0;-ms-animation-delay:0;-o-animation-delay:0;animation-delay:0}html section.blurbs .blurb.with-link{-webkit-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);-moz-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);-o-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);-ms-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55)}html section.blurbs .blurb.with-link:hover{-webkit-transform:scale(1.04) !important;-moz-transform:scale(1.04) !important;-ms-transform:scale(1.04) !important;-o-transform:scale(1.04) !important;transform:scale(1.04) !important}html section,html #header{backface-visibility:hidden;-webkit-backface-visibility:hidden}html section a.btn,html #header a.btn,html section button.btn,html #header button.btn,html section div.btn-pop,html #header div.btn-pop{-webkit-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);-moz-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);-o-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);-ms-transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55);transition:.25s all cubic-bezier(.68, -0.55, .265, 2.55)}html section a.btn:hover,html #header a.btn:hover,html section button.btn:hover,html #header button.btn:hover,html section div.btn-pop:hover,html #header div.btn-pop:hover{-webkit-transform:scale(1.1) !important;-moz-transform:scale(1.1) !important;-ms-transform:scale(1.1) !important;-o-transform:scale(1.1) !important;transform:scale(1.1) !important}html section a.btn.disabled,html #header a.btn.disabled,html section button.btn.disabled,html #header button.btn.disabled,html section div.btn-pop.disabled,html #header div.btn-pop.disabled,html section a.btn:disabled,html #header a.btn:disabled,html section button.btn:disabled,html #header button.btn:disabled,html section div.btn-pop:disabled,html #header div.btn-pop:disabled{-webkit-transition:none .3s ease-in-out;-moz-transition:none .3s ease-in-out;transition:none .3s ease-in-out;-webkit-transition:none all ease;-moz-transition:none all ease;-o-transition:none all ease;-ms-transition:none all ease;transition:none all ease}html section a.btn.disabled:hover,html #header a.btn.disabled:hover,html section button.btn.disabled:hover,html #header button.btn.disabled:hover,html section div.btn-pop.disabled:hover,html #header div.btn-pop.disabled:hover,html section a.btn:disabled:hover,html #header a.btn:disabled:hover,html section button.btn:disabled:hover,html #header button.btn:disabled:hover,html section div.btn-pop:disabled:hover,html #header div.btn-pop:disabled:hover{-webkit-transform:none;-moz-transform:none;-ms-transform:none;-o-transform:none;transform:none}@-webkit-keyframes kontakt{from{background-position:0 0}to{background-position:-13440px 0}}@-moz-keyframes kontakt{from{background-position:0 0}to{background-position:-13440px 0}}@-ms-keyframes kontakt{from{background-position:0 0}to{background-position:-13440px 0}}@-o-keyframes kontakt{from{background-position:0 0}to{background-position:-13440px 0}}@keyframes kontakt{from{background-position:0 0}to{background-position:-13440px 0}}@-webkit-keyframes animation{0%{-webkit-transform:matrix3d(.8, 0, 0, 0, 0, .8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.8, 0, 0, 0, 0, .8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}3.333333%{-webkit-transform:matrix3d(.85818, 0, 0, 0, 0, .87441, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.85818, 0, 0, 0, 0, .87441, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}6.666667%{-webkit-transform:matrix3d(.91937, 0, 0, 0, 0, .96276, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.91937, 0, 0, 0, 0, .96276, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}10%{-webkit-transform:matrix3d(.9711, 0, 0, 0, 0, 1.0289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.9711, 0, 0, 0, 0, 1.0289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}13.333333%{-webkit-transform:matrix3d(1.00759, 0, 0, 0, 0, 1.05874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00759, 0, 0, 0, 0, 1.05874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}16.666667%{-webkit-transform:matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}20%{-webkit-transform:matrix3d(1.03539, 0, 0, 0, 0, 1.03539, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.03539, 0, 0, 0, 0, 1.03539, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}23.333333%{-webkit-transform:matrix3d(1.03321, 0, 0, 0, 0, 1.01049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.03321, 0, 0, 0, 0, 1.01049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}26.666667%{-webkit-transform:matrix3d(1.02578, 0, 0, 0, 0, .99186, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.02578, 0, 0, 0, 0, .99186, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}30%{-webkit-transform:matrix3d(1.01655, 0, 0, 0, 0, .98345, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.01655, 0, 0, 0, 0, .98345, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}33.333333%{-webkit-transform:matrix3d(1.00794, 0, 0, 0, 0, .98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00794, 0, 0, 0, 0, .98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}36.666667%{-webkit-transform:matrix3d(1.00129, 0, 0, 0, 0, .99003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00129, 0, 0, 0, 0, .99003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}40%{-webkit-transform:matrix3d(.99704, 0, 0, 0, 0, .99704, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99704, 0, 0, 0, 0, .99704, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}43.333333%{-webkit-transform:matrix3d(.99503, 0, 0, 0, 0, 1.00229, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99503, 0, 0, 0, 0, 1.00229, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}46.666667%{-webkit-transform:matrix3d(.99473, 0, 0, 0, 0, 1.00466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99473, 0, 0, 0, 0, 1.00466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}50%{-webkit-transform:matrix3d(.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}53.333333%{-webkit-transform:matrix3d(.99683, 0, 0, 0, 0, 1.00281, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99683, 0, 0, 0, 0, 1.00281, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}56.666667%{-webkit-transform:matrix3d(.9982, 0, 0, 0, 0, 1.00083, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.9982, 0, 0, 0, 0, 1.00083, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}60%{-webkit-transform:matrix3d(.99935, 0, 0, 0, 0, .99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99935, 0, 0, 0, 0, .99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}63.333333%{-webkit-transform:matrix3d(1.00017, 0, 0, 0, 0, .99869, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00017, 0, 0, 0, 0, .99869, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}66.666667%{-webkit-transform:matrix3d(1.00063, 0, 0, 0, 0, .99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00063, 0, 0, 0, 0, .99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}70%{-webkit-transform:matrix3d(1.00079, 0, 0, 0, 0, .99921, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00079, 0, 0, 0, 0, .99921, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}73.333333%{-webkit-transform:matrix3d(1.00074, 0, 0, 0, 0, .99977, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00074, 0, 0, 0, 0, .99977, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}76.666667%{-webkit-transform:matrix3d(1.00058, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00058, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}80%{-webkit-transform:matrix3d(1.00037, 0, 0, 0, 0, 1.00037, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00037, 0, 0, 0, 0, 1.00037, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}83.333333%{-webkit-transform:matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}86.666667%{-webkit-transform:matrix3d(1.00003, 0, 0, 0, 0, 1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00003, 0, 0, 0, 0, 1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}90%{-webkit-transform:matrix3d(.99993, 0, 0, 0, 0, 1.00007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99993, 0, 0, 0, 0, 1.00007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}93.333333%{-webkit-transform:matrix3d(.99989, 0, 0, 0, 0, .99995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99989, 0, 0, 0, 0, .99995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}96.666667%{-webkit-transform:matrix3d(.99988, 0, 0, 0, 0, .9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99988, 0, 0, 0, 0, .9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}100%{-webkit-transform:matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}}@keyframes animation{0%{-webkit-transform:matrix3d(.8, 0, 0, 0, 0, .8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.8, 0, 0, 0, 0, .8, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}3.333333%{-webkit-transform:matrix3d(.85818, 0, 0, 0, 0, .87441, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.85818, 0, 0, 0, 0, .87441, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}6.666667%{-webkit-transform:matrix3d(.91937, 0, 0, 0, 0, .96276, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.91937, 0, 0, 0, 0, .96276, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}10%{-webkit-transform:matrix3d(.9711, 0, 0, 0, 0, 1.0289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.9711, 0, 0, 0, 0, 1.0289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}13.333333%{-webkit-transform:matrix3d(1.00759, 0, 0, 0, 0, 1.05874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00759, 0, 0, 0, 0, 1.05874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}16.666667%{-webkit-transform:matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.02818, 0, 0, 0, 0, 1.05635, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}20%{-webkit-transform:matrix3d(1.03539, 0, 0, 0, 0, 1.03539, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.03539, 0, 0, 0, 0, 1.03539, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}23.333333%{-webkit-transform:matrix3d(1.03321, 0, 0, 0, 0, 1.01049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.03321, 0, 0, 0, 0, 1.01049, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}26.666667%{-webkit-transform:matrix3d(1.02578, 0, 0, 0, 0, .99186, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.02578, 0, 0, 0, 0, .99186, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}30%{-webkit-transform:matrix3d(1.01655, 0, 0, 0, 0, .98345, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.01655, 0, 0, 0, 0, .98345, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}33.333333%{-webkit-transform:matrix3d(1.00794, 0, 0, 0, 0, .98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00794, 0, 0, 0, 0, .98412, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}36.666667%{-webkit-transform:matrix3d(1.00129, 0, 0, 0, 0, .99003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00129, 0, 0, 0, 0, .99003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}40%{-webkit-transform:matrix3d(.99704, 0, 0, 0, 0, .99704, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99704, 0, 0, 0, 0, .99704, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}43.333333%{-webkit-transform:matrix3d(.99503, 0, 0, 0, 0, 1.00229, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99503, 0, 0, 0, 0, 1.00229, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}46.666667%{-webkit-transform:matrix3d(.99473, 0, 0, 0, 0, 1.00466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99473, 0, 0, 0, 0, 1.00466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}50%{-webkit-transform:matrix3d(.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99553, 0, 0, 0, 0, 1.00447, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}53.333333%{-webkit-transform:matrix3d(.99683, 0, 0, 0, 0, 1.00281, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99683, 0, 0, 0, 0, 1.00281, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}56.666667%{-webkit-transform:matrix3d(.9982, 0, 0, 0, 0, 1.00083, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.9982, 0, 0, 0, 0, 1.00083, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}60%{-webkit-transform:matrix3d(.99935, 0, 0, 0, 0, .99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99935, 0, 0, 0, 0, .99935, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}63.333333%{-webkit-transform:matrix3d(1.00017, 0, 0, 0, 0, .99869, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00017, 0, 0, 0, 0, .99869, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}66.666667%{-webkit-transform:matrix3d(1.00063, 0, 0, 0, 0, .99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00063, 0, 0, 0, 0, .99874, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}70%{-webkit-transform:matrix3d(1.00079, 0, 0, 0, 0, .99921, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00079, 0, 0, 0, 0, .99921, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}73.333333%{-webkit-transform:matrix3d(1.00074, 0, 0, 0, 0, .99977, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00074, 0, 0, 0, 0, .99977, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}76.666667%{-webkit-transform:matrix3d(1.00058, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00058, 0, 0, 0, 0, 1.00018, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}80%{-webkit-transform:matrix3d(1.00037, 0, 0, 0, 0, 1.00037, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00037, 0, 0, 0, 0, 1.00037, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}83.333333%{-webkit-transform:matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00018, 0, 0, 0, 0, 1.00036, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}86.666667%{-webkit-transform:matrix3d(1.00003, 0, 0, 0, 0, 1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1.00003, 0, 0, 0, 0, 1.00022, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}90%{-webkit-transform:matrix3d(.99993, 0, 0, 0, 0, 1.00007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99993, 0, 0, 0, 0, 1.00007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}93.333333%{-webkit-transform:matrix3d(.99989, 0, 0, 0, 0, .99995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99989, 0, 0, 0, 0, .99995, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}96.666667%{-webkit-transform:matrix3d(.99988, 0, 0, 0, 0, .9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(.99988, 0, 0, 0, 0, .9999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}100%{-webkit-transform:matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);transform:matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1)}}.IE9 .buy-preamble input[type="text"]{font-size:18px}.IElte8 .logo{background-image:url(img/logo-big-ie8.png)}.IElte8 .home .small#header .logo{background-image:url(img/logo-small-ie8.png)}.IElte8 .search-holder .input:before{background-position:-32px -60px;background-image:url(img/sprite-ie8.png);width:30px;height:30px;margin:5px 0 0 10px}.IElte8 .datepicker-inline th.next:after,.IElte8 .datepicker-inline th.prev:after,.IElte8 .help-holder .help,.IElte8 .plus,.IElte8 .minus,.IElte8 .fb a:before,.IElte8 .mail a:before,.IElte8 .expand.btn>li>p:before{background-image:url(img/sprite-ie8.png)}.IElte8 li .page_item_has_children>a:after,.IElte8 .contact.btn .arrow-holder .arrow{background-image:url(img/sprite-ie8.png);background-position:-5px -98px}.IElte8 #header li.search-icon p:after{background-image:url(img/sprite-ie8.png);background-position:-30px -62px;width:31px;height:29px}.IElte8 #header .search.active li.search-icon p:after,.IElte8 #header .search:hover li.search-icon p:after{background-image:url(img/sprite-ie8.png);background-position:-60px -62px;width:31px;height:29px}.IElte8 .bgimg{background-position:center}.IElte8 .small-form p:before,.IElte8 .small-form .one p:before,.IElte8 .small-form .two p:before,.IElte8 .small-form .three p:before{background-image:url(img/sprite-big-ie8.png)}.IElte8 .share-buttons .btn:before,.IElte8 .share-buttons .fb:before,.IElte8 .share-buttons .twitter:before,.IElte8 .share-buttons .mail:before{background-image:url(img/sprite-ie8.png)}.IElte8 .close-btn,.IElte8 .dark .close-btn,.IElte8 .light .close-btn{width:50px;height:53px;background-image:url(img/sprite-big-ie8.png)}.IElte8 .close-btn,.IElte8 .light .close-btn{background-position:-77px -4px}.IElte8 .dark .close-btn{background-position:-77px -64px}.IElte8 .faq-small .btn>p:before,.IElte8 .faq-small .info .btn>p:before,.IElte8 .faq-small.info .btn.active>p:before,.IElte8 .faq-search .input span,.IElte8 .input .faq-result a:before,.IElte8 .btn.contact:after{background-image:url(img/sprite-ie8.png)}.IElte8 INPUT[type="checkbox"],.IElte8 .ugc INPUT[type="radio"]{width:auto}.IElte8 input[type='checkbox']+label span,.IElte8 .wpcf7-checkbox span:before,.IElte8 .ugc .wpcf7-radio SPAN.wpcf7-list-item-label:before{display:none}.IElte8 .wpcf7-checkbox INPUT[type=checkbox],.IElte8 .ugc .wpcf7-radio INPUT[type=radio]{position:relative}.IElte8 .icon{position:absolute;top:0}.IElte8 .blurbs .blurb,.IElte8 .top-answers .answer,.IElte8 .popup-buy .col,.IElte8 .product-type{margin-right:10px}.IElte8 #overlay{background-color:#000;filter:alpha(opacity = 75)}.IElte8 td,.IElte8 th{padding:10px 20px}.IElte8 tr{background-color:#eaeaea;border-bottom:1px solid #a7a9ac}.IElte8 th{background-color:#702082;color:#fff}.IElte8 thead tr{background-color:#702082;color:#fff}.IElte8 .main-nav{width:80%}.IElte8 .main-nav a{color:#fff}@media only screen and (min-width: 960px) and (max-width: 1024px){.IElte8 .logo{background-image:url(img/logo-big-ie8-smallerscreens.png)}}.historyprices #chart_div{clear:both;position:relative;width:700px;height:350px;margin-bottom:40px}.historyprices #chart_div img.loader{position:relative;left:200px;top:150px}.historyprices #chart_labels{font-size:.75em;margin-bottom:20px}.historyprices #chart_labels .label_container{width:45%;float:left;margin-right:1em}.historyprices #chart_labels .label_color{display:inline-block;width:1em;height:1em;border-radius:3px}@media only screen and (max-width: 568px), only screen and (max-device-width: 570px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-device-width: 640px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait){.historyprices #chart_div{width:100%;height:200px;margin-bottom:20px}.historyprices #chart_div img.loader{position:relative;left:20px;top:50px}}@media not screen and (max-width: 568px), not screen and (max-device-width: 570px) and (-webkit-min-device-pixel-ratio: 1.5), not screen and (max-device-width: 640px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait){.historyprices{overflow-x:scroll}.historyprices .table-holder{overflow:visible}}.historyprices #history-graph li{float:left;list-style-type:none;margin:0 20px 20px 0}.historyprices #history-graph label{display:inline}@media only screen and (max-width: 568px), only screen and (max-device-width: 570px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-device-width: 640px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait){body .historyprices .container .section .table-stickyleft{width:300px;overflow-x:scroll;width:auto}body .historyprices .container .section .table-stickyleft table tr th:first-child,body .historyprices .container .section .table-stickyleft table tr td:first-child,body .historyprices .container .section .table-stickyleft table tr:nth-child(odd) td:first-child,body .historyprices .container .section .table-stickyleft table tr:nth-child(odd) th:first-child{position:sticky;left:0;z-index:1;background:#702082;color:#fff;font-weight:800;border-bottom:1px solid #fff;border-right:1px solid #fff}body .historyprices .container .section .table-stickyleft table tr:first-child td:first-child,body .historyprices .container .section .table-stickyleft table tr:first-child td:first-child,body .historyprices .container .section .table-stickyleft table tr:first-child th:first-child,body .historyprices .container .section .table-stickyleft table tr:first-child th:first-child{border-top-left-radius:0 !important}body .historyprices .container .section .table-stickyleft table tr:first-child td:last-child,body .historyprices .container .section .table-stickyleft table tr:first-child td:last-child,body .historyprices .container .section .table-stickyleft table tr:first-child th:last-child,body .historyprices .container .section .table-stickyleft table tr:first-child th:last-child{border-top-right-radius:0 !important}body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) td:first-child,body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) td:first-child,body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) th:first-child,body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) th:first-child{border-bottom-left-radius:0 !important}body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) td:last-child,body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) td:last-child,body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) th:last-child,body .historyprices .container .section .table-stickyleft table tr:last-child:not(:first-child) th:last-child{border-bottom-right-radius:0 !important}}.slot .content p{max-width:550px}#iispeed_poweredby{display:none}@-ms-viewport{width:device-width}ul.edit,#wpstats{position:fixed;right:0;bottom:0;list-style:none;font:bold 12px 'helvetica neue',arial,sans-serif;-webkit-font-smoothing:antialiased;z-index:10000;opacity:.8}ul.edit li{float:left;border-left:1px solid #333}ul.edit a,ul.edit a:visited{display:block;padding:7px 6px;background-color:#464646;background-image:linear-gradient(to bottom, #464646 calc(100% - 5px), #373737 100%);color:#ddd;text-decoration:none}ul.edit a:hover{background-image:linear-gradient(to bottom, #111 calc(100% - 5px), #333 100%)}/*# sourceMappingURL=layout.css.map */div.debug-slot-placeholder {
	background: #f93;
	border-bottom: 1px solid #fff;
	padding: 1em;
}

div.debug-slot-placeholder h1 {
	color: #fff;
	font: 22px/26px solid monospace;
}

div.debug-slot-placeholder h1::before {
	content: 'Slot: ';
	opacity: 0.6;
}

div.debug-slot-placeholder h1::after {
	content: ' (not implemented)';
	font-style: italic;
	opacity: 0.6;
}
/*!
 * Datepicker for Bootstrap
 *
 * Copyright 2012 Stefan Petre
 * Improvements by Andrew Rowls
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 */
.datepicker {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  direction: ltr;
  /*.dow {
		border-top: 1px solid #ddd !important;
	}*/
}
.datepicker-inline {
  width: 100%;
}
.datepicker.datepicker-rtl {
  direction: rtl;
}
.datepicker.datepicker-rtl table tr td span {
  float: right;
}
.datepicker-dropdown {
  top: 0;
  left: 0;
}
.datepicker-dropdown:before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #ccc;
  border-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  position: absolute;
}
.datepicker-dropdown:after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  position: absolute;
}
.datepicker-dropdown.datepicker-orient-left:before {
  left: 6px;
}
.datepicker-dropdown.datepicker-orient-left:after {
  left: 7px;
}
.datepicker-dropdown.datepicker-orient-right:before {
  right: 6px;
}
.datepicker-dropdown.datepicker-orient-right:after {
  right: 7px;
}
.datepicker-dropdown.datepicker-orient-top:before {
  top: -7px;
}
.datepicker-dropdown.datepicker-orient-top:after {
  top: -6px;
}
.datepicker-dropdown.datepicker-orient-bottom:before {
  bottom: -7px;
  border-bottom: 0;
  border-top: 7px solid #999;
}
.datepicker-dropdown.datepicker-orient-bottom:after {
  bottom: -6px;
  border-bottom: 0;
  border-top: 6px solid #ffffff;
}
.datepicker > div {
  display: none;
}
.datepicker.days div.datepicker-days {
  display: block;
}
.datepicker.months div.datepicker-months {
  display: block;
}
.datepicker.years div.datepicker-years {
  display: block;
}
.datepicker table {
  margin: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.datepicker td,
.datepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  font-size:16px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: none;
}
.table-striped .datepicker table tr td,
.table-striped .datepicker table tr th {
  background-color: transparent;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.day.focused {

  cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new {
  color: #999999;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}/*
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
  background-color: #fde19a;
  background-image: -moz-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -ms-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fdd49a), to(#fdf59a));
  background-image: -webkit-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: -o-linear-gradient(top, #fdd49a, #fdf59a);
  background-image: linear-gradient(top, #fdd49a, #fdf59a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdd49a', endColorstr='#fdf59a', GradientType=0);
  border-color: #fdf59a #fdf59a #fbed50;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #000;
}
.datepicker table tr td.today:hover,
.datepicker table tr td.today:hover:hover,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today.disabled:hover:hover,
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today:hover.disabled,
.datepicker table tr td.today.disabled.disabled,
.datepicker table tr td.today.disabled:hover.disabled,
.datepicker table tr td.today[disabled],
.datepicker table tr td.today:hover[disabled],
.datepicker table tr td.today.disabled[disabled],
.datepicker table tr td.today.disabled:hover[disabled] {
  background-color: #fdf59a;
}
.datepicker table tr td.today:active,
.datepicker table tr td.today:hover:active,
.datepicker table tr td.today.disabled:active,
.datepicker table tr td.today.disabled:hover:active,
.datepicker table tr td.today.active,
.datepicker table tr td.today:hover.active,
.datepicker table tr td.today.disabled.active,
.datepicker table tr td.today.disabled:hover.active {
  background-color: #fbf069 \9;
}
.datepicker table tr td.today:hover:hover {
  color: #000;
}
.datepicker table tr td.today.active:hover {
  color: #fff;
}
.datepicker table tr td.range,
.datepicker table tr td.range:hover,
.datepicker table tr td.range.disabled,
.datepicker table tr td.range.disabled:hover {
  background: #eeeeee;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today,
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today.disabled:hover {
  background-color: #f3d17a;
  background-image: -moz-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -ms-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f3c17a), to(#f3e97a));
  background-image: -webkit-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: -o-linear-gradient(top, #f3c17a, #f3e97a);
  background-image: linear-gradient(top, #f3c17a, #f3e97a);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f3c17a', endColorstr='#f3e97a', GradientType=0);
  border-color: #f3e97a #f3e97a #edde34;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.datepicker table tr td.range.today:hover,
.datepicker table tr td.range.today:hover:hover,
.datepicker table tr td.range.today.disabled:hover,
.datepicker table tr td.range.today.disabled:hover:hover,
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active,
.datepicker table tr td.range.today.disabled,
.datepicker table tr td.range.today:hover.disabled,
.datepicker table tr td.range.today.disabled.disabled,
.datepicker table tr td.range.today.disabled:hover.disabled,
.datepicker table tr td.range.today[disabled],
.datepicker table tr td.range.today:hover[disabled],
.datepicker table tr td.range.today.disabled[disabled],
.datepicker table tr td.range.today.disabled:hover[disabled] {
  background-color: #f3e97a;
}
.datepicker table tr td.range.today:active,
.datepicker table tr td.range.today:hover:active,
.datepicker table tr td.range.today.disabled:active,
.datepicker table tr td.range.today.disabled:hover:active,
.datepicker table tr td.range.today.active,
.datepicker table tr td.range.today:hover.active,
.datepicker table tr td.range.today.disabled.active,
.datepicker table tr td.range.today.disabled:hover.active {
  background-color: #efe24b \9;
}
.datepicker table tr td.selected,
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected.disabled:hover {
  background-color: #9e9e9e;
  background-image: -moz-linear-gradient(top, #b3b3b3, #808080);
  background-image: -ms-linear-gradient(top, #b3b3b3, #808080);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b3b3b3), to(#808080));
  background-image: -webkit-linear-gradient(top, #b3b3b3, #808080);
  background-image: -o-linear-gradient(top, #b3b3b3, #808080);
  background-image: linear-gradient(top, #b3b3b3, #808080);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b3b3b3', endColorstr='#808080', GradientType=0);
  border-color: #808080 #808080 #595959;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.selected:hover,
.datepicker table tr td.selected:hover:hover,
.datepicker table tr td.selected.disabled:hover,
.datepicker table tr td.selected.disabled:hover:hover,
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active,
.datepicker table tr td.selected.disabled,
.datepicker table tr td.selected:hover.disabled,
.datepicker table tr td.selected.disabled.disabled,
.datepicker table tr td.selected.disabled:hover.disabled,
.datepicker table tr td.selected[disabled],
.datepicker table tr td.selected:hover[disabled],
.datepicker table tr td.selected.disabled[disabled],
.datepicker table tr td.selected.disabled:hover[disabled] {
  background-color: #808080;
}
.datepicker table tr td.selected:active,
.datepicker table tr td.selected:hover:active,
.datepicker table tr td.selected.disabled:active,
.datepicker table tr td.selected.disabled:hover:active,
.datepicker table tr td.selected.active,
.datepicker table tr td.selected:hover.active,
.datepicker table tr td.selected.disabled.active,
.datepicker table tr td.selected.disabled:hover.active {
  background-color: #666666 \9;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(top, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td.active:hover,
.datepicker table tr td.active:hover:hover,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.disabled:hover:hover,
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active:hover.disabled,
.datepicker table tr td.active.disabled.disabled,
.datepicker table tr td.active.disabled:hover.disabled,
.datepicker table tr td.active[disabled],
.datepicker table tr td.active:hover[disabled],
.datepicker table tr td.active.disabled[disabled],
.datepicker table tr td.active.disabled:hover[disabled] {
  background-color: #e63888;
}
.datepicker table tr td.active:active,
.datepicker table tr td.active:hover:active,
.datepicker table tr td.active.disabled:active,
.datepicker table tr td.active.disabled:hover:active,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active,
.datepicker table tr td.active.disabled.active,
.datepicker table tr td.active.disabled:hover.active {
  background-color: #003399 \9;
}*/
.datepicker table tr td span {
  display: block;
  width: 23%;
  height: 54px;
  line-height: 54px;
  float: left;
  margin: 1%;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.datepicker table tr td span:hover {
  background: #eeeeee;
}
.datepicker table tr td span.disabled,
.datepicker table tr td span.disabled:hover {
  background: none;
  color: #999999;
  cursor: default;
}/*
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active.disabled:hover {
  background-color: #006dcc;
  background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0044cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  background-image: linear-gradient(top, #0088cc, #0044cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0044cc', GradientType=0);
  border-color: #0044cc #0044cc #002a80;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active:hover:hover,
.datepicker table tr td span.active.disabled:hover,
.datepicker table tr td span.active.disabled:hover:hover,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled,
.datepicker table tr td span.active:hover.disabled,
.datepicker table tr td span.active.disabled.disabled,
.datepicker table tr td span.active.disabled:hover.disabled,
.datepicker table tr td span.active[disabled],
.datepicker table tr td span.active:hover[disabled],
.datepicker table tr td span.active.disabled[disabled],
.datepicker table tr td span.active.disabled:hover[disabled] {
  background-color: #0044cc;
}
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:hover.active {
  background-color: #003399 \9;
}*/
.datepicker table tr td span.old,
.datepicker table tr td span.new {
  color: #999999;
}
.datepicker th.datepicker-switch {
  width: 145px;
}
.datepicker thead tr:first-child th,
.datepicker tfoot tr th {
  cursor: pointer;
}
.datepicker thead tr:first-child th:hover,
.datepicker tfoot tr th:hover {
  background: #eeeeee;
}
.datepicker .cw {
  font-size: 10px;
  width: 12px;
  padding: 0 2px 0 5px;
  vertical-align: middle;
}
.datepicker thead tr:first-child th.cw {
  cursor: default;
  background-color: transparent;
}
.input-append.date .add-on i,
.input-prepend.date .add-on i {
  cursor: pointer;
  width: 16px;
  height: 16px;
}
.input-daterange input {
  text-align: center;
}
.input-daterange input:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-daterange input:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-daterange .add-on {
  display: inline-block;
  width: auto;
  min-width: 16px;
  height: 20px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  margin-left: -5px;
  margin-right: -5px;
}
.datepicker.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  display: none;
  min-width: 160px;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  color: #333333;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 20px;
}
.datepicker.dropdown-menu th,
.datepicker.dropdown-menu td {
  padding: 4px 5px;
}@media print {﻿* {
  background: transparent !important;
  color: black !important;
  text-shadow: none !important;
  filter: none !important;
  -ms-filter: none !important;
}
a[href]:after {
  content: " (" attr(href) ")";
}
@page {
  margin: 2cm;
}
p,
h2,
h3 {
  orphans: 3;
  widows: 3;
}
h2,
h3 {
  page-break-after: avoid;
}
#nav,
#subnav,
#search {
  display: none;
}
/*# sourceMappingURL=print.css.map */}