/**
    Import all the sass files here
*/
@import url(../Css/toolkit.31b640fa93b7a6e08cb764c615aa2949.css);
/*@import "compass/utilities/sprites";*/
/*Primary*/
/*Primary*/
/*Framework*/
/* Links and texts */
/*Footer links*/
/* Social links*/
/*Secondary Colors*/
/* Generic Colors */
/*Related Content*/
@font-face {
  font-family: 'Pebble';
  src: url("../../Fonts/pebble/Pebble_W_Rg.eot");
  src: url("../../Fonts/pebble/Pebble_W_Rg.eot?#iefix") format("embedded-opentype"), url("../../Fonts/pebble/Pebble_W_Rg.woff") format("woff"), url("../../Fonts/pebble/Pebble_W_Rg.ttf") format("truetype");
  /*url('../../Fonts/pebble/pebble_rg_beta2.svg#pebbleregular') format('svg');*/
  font-weight: normal;
  font-style: normal; }

/*@font-face {
    font-family: 'helveticaNeueRegular';
    src: url('../../Fonts/HelveticaNeue.eot');
    src: url('../../Fonts/HelveticaNeue.eot?#iefix') format('embedded-opentype'),
         url('../../Fonts/HelveticaNeue.woff2') format('woff2'),
         url('../../Fonts/HelveticaNeue.woff') format('woff'),
         url('../../Fonts/HelveticaNeue.ttf') format('truetype');
         url('../../Fonts/HelveticaNeue.svg#pebbleregular') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
/* Font sizes */
/* New fonts */
/*Page title in diff devices*/
/**
    How to use
   	@media only screen and (min-width: 90em) {
		padding: 30px;
	}

    Always mobile first and then bigger screens
*/
/*
	Usage
	p {
	  @include font-size(14px)
	}
*/
/*
How to use
.burger-icon {
    @include burger(25px, 3px, 5px, #222);
}
.is-active .burger-icon {
    @include burger-to-cross;
}
 */
/**
 * Mixins for media queries
 *
 *
 * Usage
 * .sidebar {
		  width: 60%;
		  float: left;
		  margin: 0 2% 0 0;
		  @include bp-small {
		    width: 100%;
		    float: none;
		    margin: 0;
		  }
		}
 */
/**
 * Mixin for transitions
 *
 * Usage
 * a {
	  color: gray;
		@include transition(color .3s ease);
		&:hover {
		  color: black;
		 }
	}
 */
/**
 * Mixin for transform
 *
 * Usage
 *
	.element {
	  @include skew(25,10);
	  @include transform-origin(top left);
	  background-color: rgba(20,20,20,.5);
	}
 *
 *
 */
/* Examle of use:

.wrapper {
  @include flexbox();
}
.item {
  @include flex(1 200px);
  @include order(2);
}
*/
/**
 * Mixin for border-radius
 *
 * Usage
 * div {
        @include border-radius(20px);
	}
 */
html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  font-size: 16px; }

body {
  -webkit-backface-visibility: hidden;
  color: #222222;
  background-position: center top;
  background-repeat: repeat-y;
  background-size: 1968px;
  font-size: 16px;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  background-color: #fff;
  margin: 0;
  line-height: 1.42857143;
  /*
    * {
        @include transition(width 0.2s);
    }
    */
  overflow-x: hidden;
  /*&:before {
        @include bp-small {
             content: "bp-small: >= 768px";
             position: fixed;
            z-index: 1000;
             top: 0;
             left: 0;
             font-size: 12px;
             background-color: lightgoldenrodyellow;
             padding: 2px 4px;
         }
         @include bp-medium {
             content: "bp-medium: >= 992px";
         }
         @include bp-large {
             content: "bp-large: >= 1200px";
         }
     }*/ }

h2,
.ts-h2 {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 0.4em;
  font-weight: 400;
  word-break: break-word; }

img {
  max-width: 100%; }

textarea, input {
  outline: none; }

:focus {
  outline-color: transparent;
  outline-style: none; }

a, .Block__Share {
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
  color: #222222; }
  a:hover, .Block__Share:hover {
    text-decoration: none; }
  a:focus, .Block__Share:focus {
    outline-style: none;
    color: #222222;
    text-decoration: none; }

.no-gutter > [class*='col-'] {
  padding-right: 0;
  padding-left: 0; }

.no-gutter-left > [class*='col-'] {
  padding-left: 0; }

.no-gutter-right > [class*='col-'] {
  padding-right: 0; }

input::-ms-clear {
  display: none; }

.ts-button--tertiary:hover .ts-symbol {
  fill: #fff; }

.ts-button .ts-symbol--navigation-download {
  vertical-align: middle; }

.ts-button:active, .ts-button:focus {
  color: #fff; }

.back-to-parent-page {
  display: inline-block;
  color: #9706e2;
  margin-bottom: 2.5rem; }

.transition--fast, .GeneralFilter .GeneralFilter__Search--button {
  -o-transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  transition: .3s; }

.transition--medium {
  -o-transition: .6s;
  -moz-transition: .6s;
  -webkit-transition: .6s;
  transition: .6s; }

.transition--slow {
  -o-transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  transition: 1s; }

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-1000px); }
  100% {
    opacity: 1;
    transform: translateX(0px); } }

@keyframes slide {
  0% {
    opacity: 0;
    transform: translateX(-1000px); }
  100% {
    opacity: 1;
    transform: translateX(0px); } }

@-webkit-keyframes bounce {
  0%, 5%, 12.5%, 20%, 25% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  10% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); }
  15% {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px); } }

@-moz-keyframes bounce {
  0%, 5%, 12.5%, 20%, 25% {
    transform: translateY(0); }
  10% {
    transform: translateY(-5px); }
  15% {
    transform: translateY(-3px); } }

@keyframes bounce {
  0%, 5%, 12.5%, 20%, 25% {
    -ms-transform: translateY(0);
    transform: translateY(0); }
  10% {
    -ms-transform: translateX(-5px);
    transform: translateY(-5px); }
  15% {
    -ms-transform: translateY(-3px);
    transform: translateY(-3px); } }

.spinner {
  animation: rotator 2.5s linear infinite; }

@keyframes rotator {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    -webkit-transform: rotate(0deg); }
  100% {
    transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -webkit-transform: rotate(270deg); } }

.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  -moz-transform-origin: center;
  animation: dash 2.5s ease-in-out infinite, colors 10s ease-in-out infinite; }

@keyframes colors {
  0% {
    stroke: #4285F4; }
  25% {
    stroke: #DE3E35; }
  50% {
    stroke: #F7C223; }
  75% {
    stroke: #1B9A59; }
  100% {
    stroke: #4285F4; } }

@keyframes dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    -webkit-transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg);
    -moz-transform: rotate(450deg);
    -o-transform: rotate(450deg);
    -webkit-transform: rotate(450deg); } }

@-webkit-keyframes dots {
  0% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  8.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  16.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  25% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  33.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px; }
  41.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  50% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  58.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  66.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  75% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  83.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px; }
  91.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  100% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; } }

@-moz-keyframes dots {
  0% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  8.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  16.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  25% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  33.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px; }
  41.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  50% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  58.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  66.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  75% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  83.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px; }
  91.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  100% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; } }

@-o-keyframes dots {
  0% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  8.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  16.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  25% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  33.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px; }
  41.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  50% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  58.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  66.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  75% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  83.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px; }
  91.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  100% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; } }

@keyframes dots {
  0% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  8.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  16.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px 14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  25% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  33.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee -14px -14px 0 7px; }
  41.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  50% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  58.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 -14px 14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  66.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 -14px -14px 0 7px, #66dd77 -14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  75% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px -14px 0 7px, #44aaee 14px -14px 0 7px; }
  83.33% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee 14px 14px 0 7px; }
  91.67% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px 14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; }
  100% {
    -webkit-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    -moz-box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px;
    box-shadow: white 0 0 15px 0, #ff8866 -14px -14px 0 7px, #ffcc66 14px -14px 0 7px, #66dd77 14px 14px 0 7px, #44aaee -14px 14px 0 7px; } }

@-webkit-keyframes dots--mini {
  0% {
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  8.33% {
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  16.67% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 14px 14px 0 7px,
         #ffcc66 14px 14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  25% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  33.33% {
    /*box-shadow: white 0 0 15px 0,
          #ff8866 -14px -14px 0 7px,
          #ffcc66 -14px 14px 0 7px,
          #66dd77 -14px -14px 0 7px,
          #44aaee -14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px; }
  41.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  50% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  58.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  66.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px -14px 0 7px,
         #ffcc66 -14px -14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  75% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px -14px 0 7px, 
        #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  83.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee 14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px; }
  91.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 14px -14px 0 7px, 
        #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  100% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 -14px -14px 0 7px, 
         #ffcc66 14px -14px 0 7px, 
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; } }

@-moz-keyframes dots--mini {
  0% {
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  8.33% {
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  16.67% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 14px 14px 0 7px,
         #ffcc66 14px 14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  25% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  33.33% {
    /*box-shadow: white 0 0 15px 0,
          #ff8866 -14px -14px 0 7px,
          #ffcc66 -14px 14px 0 7px,
          #66dd77 -14px -14px 0 7px,
          #44aaee -14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px; }
  41.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  50% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  58.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  66.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px -14px 0 7px,
         #ffcc66 -14px -14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  75% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px -14px 0 7px, 
        #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  83.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee 14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px; }
  91.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 14px -14px 0 7px, 
        #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  100% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 -14px -14px 0 7px, 
         #ffcc66 14px -14px 0 7px, 
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; } }

@-o-keyframes dots--mini {
  0% {
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  8.33% {
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  16.67% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 14px 14px 0 7px,
         #ffcc66 14px 14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  25% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  33.33% {
    /*box-shadow: white 0 0 15px 0,
          #ff8866 -14px -14px 0 7px,
          #ffcc66 -14px 14px 0 7px,
          #66dd77 -14px -14px 0 7px,
          #44aaee -14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px; }
  41.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  50% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  58.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  66.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px -14px 0 7px,
         #ffcc66 -14px -14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  75% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px -14px 0 7px, 
        #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  83.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee 14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px; }
  91.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 14px -14px 0 7px, 
        #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  100% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 -14px -14px 0 7px, 
         #ffcc66 14px -14px 0 7px, 
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; } }

@keyframes dots--mini {
  0% {
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  8.33% {
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  16.67% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 14px 14px 0 7px,
         #ffcc66 14px 14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px 6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  25% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  33.33% {
    /*box-shadow: white 0 0 15px 0,
          #ff8866 -14px -14px 0 7px,
          #ffcc66 -14px 14px 0 7px,
          #66dd77 -14px -14px 0 7px,
          #44aaee -14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee -6px -6px 0 3px; }
  41.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  50% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  58.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 -14px 14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 -6px 6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  66.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px -14px 0 7px,
         #ffcc66 -14px -14px 0 7px,
         #66dd77 -14px -14px 0 7px,
         #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 -6px -6px 0 3px, #66dd77 -6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  75% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px -14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px -14px 0 7px, 
        #44aaee 14px -14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    -moz-box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px;
    box-shadow: #ff8866 6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px -6px 0 3px, #44aaee 6px -6px 0 3px; }
  83.33% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 14px 14px 0 7px, 
        #ffcc66 14px -14px 0 7px,
         #66dd77 14px 14px 0 7px,
         #44aaee 14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    -moz-box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px;
    box-shadow: #ff8866 6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee 6px 6px 0 3px; }
  91.67% {
    /*box-shadow: white 0 0 15px 0,
         #ff8866 -14px 14px 0 7px,
         #ffcc66 14px -14px 0 7px, 
        #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px 6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; }
  100% {
    /*box-shadow: white 0 0 15px 0, 
         #ff8866 -14px -14px 0 7px, 
         #ffcc66 14px -14px 0 7px, 
         #66dd77 14px 14px 0 7px,
         #44aaee -14px 14px 0 7px;*/
    -webkit-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    -moz-box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px;
    box-shadow: #ff8866 -6px -6px 0 3px, #ffcc66 6px -6px 0 3px, #66dd77 6px 6px 0 3px, #44aaee -6px 6px 0 3px; } }

/* Styles for old versions of IE */
.dots {
  font-family: sans-serif;
  font-weight: 100; }

.dots--mini {
  display: none; }

.dots--mini-alt4 {
  position: relative;
  right: 15px;
  top: 10px; }

.dots--mini-alt3 {
  position: relative;
  left: 15px;
  float: left !important;
  top: 62px; }

.dots--mini-alt2 {
  position: absolute;
  right: 25px;
  top: 10px; }

.dots--mini-alt1 {
  position: relative;
  left: -40px;
  float: left !important;
  top: 45px; }

/* :not(:required) hides this rule from IE9 and below */
.dots--mini:not(:required) {
  overflow: hidden;
  text-indent: -9999px;
  width: 2px;
  height: 2px;
  background: transparent;
  border-radius: 100%;
  -webkit-box-shadow: #ff8866 -10px -10px 0 2px, #ffcc66 10px -10px 0 2px, #66dd77 10px 10px 0 5px, #44aaee -10px 10px 0 5px;
  -moz-box-shadow: #ff8866 -10px -10px 0 5px, #ffcc66 10px -10px 0 5px, #66dd77 10px 10px 0 5px, #44aaee -10px 10px 0 5px;
  box-shadow: #ff8866 -10px -10px 0 5px, #ffcc66 10px -10px 0 5px, #66dd77 10px 10px 0 5px, #44aaee -10px 10px 0 5px;
  -webkit-animation: dots--mini 4s infinite ease-in-out;
  -moz-animation: dots--mini 4s infinite ease-in-out;
  -ms-animation: dots--mini 4s infinite ease-in-out;
  -o-animation: dots--mini 4s infinite ease-in-out;
  animation: dots--mini 4s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

.dots:not(:required) {
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  display: inline-block;
  width: 2px;
  height: 2px;
  background: transparent;
  border-radius: 100%;
  -webkit-box-shadow: #ff8866 -10px -10px 0 2px, #ffcc66 10px -10px 0 2px, #66dd77 10px 10px 0 5px, #44aaee -10px 10px 0 5px;
  -moz-box-shadow: #ff8866 -10px -10px 0 5px, #ffcc66 10px -10px 0 5px, #66dd77 10px 10px 0 5px, #44aaee -10px 10px 0 5px;
  box-shadow: #ff8866 -10px -10px 0 5px, #ffcc66 10px -10px 0 5px, #66dd77 10px 10px 0 5px, #44aaee -10px 10px 0 5px;
  -webkit-animation: dots 5s infinite ease-in-out;
  -moz-animation: dots 5s infinite ease-in-out;
  -ms-animation: dots 5s infinite ease-in-out;
  -o-animation: dots 5s infinite ease-in-out;
  animation: dots 5s infinite ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

.icon {
  display: inline-block;
  fill: #000000;
  background-repeat: no-repeat; }

.icon-search {
  background-image: url("../../Images/Icons/icon-search.svg"); }

.icon-arrow--right--white {
  background-image: url("../../Images/Icons/icon-arrow--right--white.svg"); }

.ts-symbol.ts-symbol--document {
  width: 20px;
  height: 26px; }

.ts-symbol.ts-symbol--globe {
  width: 26px;
  height: 26px; }

.ts-symbol.ts-symbol--video {
  width: 26px;
  height: 26px; }

.ts-symbol.ts-symbol--floppy-disk {
  width: 26px;
  height: 26px; }

.ts-symbol.ts-symbol--arrow-up, .ts-symbol.ts-symbol--arrow-down {
  width: 18px;
  height: 16px; }

.ts-symbol.ts-symbol--arrow-right {
  width: 18px;
  height: 16px; }

.ts-symbol.ts-symbol--twitter-logo {
  width: 26px;
  height: 21px; }

.ts-symbol.ts-symbol--linkedin-logo {
  width: 23px;
  height: 22px; }

.ts-symbol.ts-symbol--mail {
  width: 23px;
  height: 17px; }

.card__shadow, .Page__Block .White__Block, .Press__Release__Wrapper .White__Block, .Teaser--Block .White__Block, .Teaser--Block, .ui-autocomplete, .Share__Services {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2); }

.truncate__multi__line {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; }

h1.pageTitle, h2.pageTitle {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  color: #990ae3;
  margin: 0 0 15px;
  text-transform: uppercase;
  padding-bottom: 5px;
  font-size: 3.4375em;
  -ms-word-break: break-all;
  word-break: break-word; }

.long__text-fix {
  font-size: 2.5em !important; }

.color--purple {
  color: #9706e2; }

.body-overlay {
  z-index: 1;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); }

.flex-5 {
  -webkit-column-count: 5;
  /* Chrome, Safari, Opera */
  -moz-column-count: 5;
  /* Firefox */
  column-count: 5; }

.StartPage .hero {
  margin-bottom: 0.625rem; }
  .StartPage .hero.hero-Left .pebble-01 {
    width: 56.25rem;
    top: -12.5rem;
    left: -65.625rem; }
  .StartPage .hero.hero-Left .pebble-02 {
    width: 31.25rem;
    top: -8.125rem;
    right: -34.375rem; }
  .StartPage .hero .pebble-01 {
    width: 31.25rem;
    top: -12.5rem;
    left: -33.125rem; }
  .StartPage .hero .pebble-02 {
    width: 56.25rem;
    right: -62.5rem; }
  .StartPage .hero .hero-text {
    padding: 1.5625rem;
    margin: 1.25rem 0; }

.StartPage .Main__Wrapper {
  padding: 1.875rem 0 0; }

footer.container-fluid {
  background-color: white; }

/* All about the Story Block */
.Fixed_Ratio_Wrapper {
  position: relative;
  width: 100%; }
  .Fixed_Ratio_Wrapper:before {
    content: "";
    display: block;
    padding-top: 74%;
    /* This is a trick that gives 555:415 ratio (100% would give 1:1 ratio), Change % for other ratios  -- Bjarne */ }

.theStory {
  position: absolute;
  /* This is the content block for the ratio container above */
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #990ae3; }

.Story__Intro {
  font-size: 16px;
  line-height: normal; }

.Story__Tags {
  font-size: 12px;
  min-height: 16px; }

.Story__Date {
  font-size: 12px; }

.Story__Header {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 26px;
  width: 70%;
  line-height: 1;
  min-height: 60px;
  text-transform: uppercase; }

@media (min-width: 48em) {
  .hero.hero-Left [class*="col"] {
    float: left; }
  .hero.hero-Right [class*="col"] {
    float: right; }
  .Top__Block .row > .expand.col-sm-4 {
    width: 100%; } }

@media (min-width: 62em) {
  .Top__Block .row > .expand.col-sm-4 {
    width: 100%; }
  .StartPage .hero {
    height: 40.25rem; }
  .StartPage .hero-text {
    margin: 0; }
  .StartPage .StartPage--HeroBlock, .Action__Page .StartPage--HeroBlock {
    margin-top: -110px;
    padding-top: 110px;
    height: 644px;
    overflow: hidden; }
    .StartPage .StartPage--HeroBlock .row, .Action__Page .StartPage--HeroBlock .row {
      display: table; }
    .StartPage .StartPage--HeroBlock .Page__Block, .Action__Page .StartPage--HeroBlock .Page__Block {
      margin-bottom: 0;
      display: table-cell;
      vertical-align: middle;
      float: none; }
    .StartPage .StartPage--HeroBlock .White__Block, .Action__Page .StartPage--HeroBlock .White__Block {
      margin-top: 0; }
    .StartPage .StartPage--HeroBlock .Block__Image, .Action__Page .StartPage--HeroBlock .Block__Image {
      position: relative;
      overflow: visible; }
    .StartPage .StartPage--HeroBlock img, .Action__Page .StartPage--HeroBlock img {
      margin-top: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: auto;
      max-width: 100%; } }

@media (min-width: 75em) {
  .Top__Block .row > .expand.col-sm-4 {
    width: calc(100%/3); }
  .StartPage .hero-text {
    padding: 1.875rem; }
  .StartPage .Top__Block .Page__Block {
    margin-bottom: 1.25rem; } }

.tsab-header__logo {
  position: absolute;
  top: 20px;
  left: 16px;
  fill: #990ae3; }

@media (min-width: 62em) {
  .tsab-header {
    display: none; } }

@media (min-width: 62em) {
  .tsab-mobile-menu {
    display: none; } }

.tsab-mobile-menu .ts-mobile-menu__overlay {
  z-index: -1; }

.header--desktop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0; }

header ul {
  margin: 0;
  padding: 0;
  list-style: none; }

header li {
  display: inline-block; }

.header-top {
  background-color: transparent; }

.Wrapper__Language a.light-link, .Wrapper__Language .light-link.Block__Share {
  color: white; }
  .Wrapper__Language a.light-link:hover, .Wrapper__Language .light-link.Block__Share:hover, .Wrapper__Language a.light-link:active, .Wrapper__Language .light-link.Block__Share:active, .Wrapper__Language a.light-link:focus, .Wrapper__Language .light-link.Block__Share:focus {
    color: #990ae3; }
  :hover .Wrapper__Language a.light-link:before, :hover .Wrapper__Language .light-link.Block__Share:before {
    color: white; }

.Wrapper__Language, .JobWrapper__Language, .Wrapper__Special--Language {
  display: inline-block;
  padding: 0; }
  .Wrapper__Language li:first-child a, .Wrapper__Language li:first-child .Block__Share, .JobWrapper__Language li:first-child a, .JobWrapper__Language li:first-child .Block__Share, .Wrapper__Special--Language li:first-child a, .Wrapper__Special--Language li:first-child .Block__Share {
    margin-left: 0; }
    .Wrapper__Language li:first-child a:before, .Wrapper__Language li:first-child .Block__Share:before, .JobWrapper__Language li:first-child a:before, .JobWrapper__Language li:first-child .Block__Share:before, .Wrapper__Special--Language li:first-child a:before, .Wrapper__Special--Language li:first-child .Block__Share:before {
      content: ""; }
  .Wrapper__Language a, .Wrapper__Language .Block__Share, .JobWrapper__Language a, .JobWrapper__Language .Block__Share, .Wrapper__Special--Language a, .Wrapper__Special--Language .Block__Share {
    position: relative;
    font-size: 0.875em;
    display: block;
    text-transform: uppercase;
    margin: 4px 0 4px 15px; }
    .Wrapper__Language a:before, .Wrapper__Language .Block__Share:before, .JobWrapper__Language a:before, .JobWrapper__Language .Block__Share:before, .Wrapper__Special--Language a:before, .Wrapper__Special--Language .Block__Share:before {
      content: "|";
      position: absolute;
      left: -12px;
      font-weight: normal; }
      :hover .Wrapper__Language a:before, :hover .Wrapper__Language .Block__Share:before, :hover .JobWrapper__Language a:before, :hover .JobWrapper__Language .Block__Share:before, :hover .Wrapper__Special--Language a:before, :hover .Wrapper__Special--Language .Block__Share:before {
        color: #222222; }
    .Wrapper__Language a.Selected, .Wrapper__Language .Selected.Block__Share, .JobWrapper__Language a.Selected, .JobWrapper__Language .Selected.Block__Share, .Wrapper__Special--Language a.Selected, .Wrapper__Special--Language .Selected.Block__Share {
      font-weight: bold; }

.header-main {
  background-color: #fff;
  box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.1); }
  .header-main ul {
    display: inline-block; }
  .header-main > div > div {
    padding: 0; }

.header-logo {
  margin-top: 20px; }
  .header-logo img {
    height: 100%;
    max-height: 44px; }

.Menu__placeholder {
  display: inline-block;
  white-space: nowrap;
  padding-right: 30px;
  min-height: 80px;
  -webkit-transition: transform 0.2s;
  -moz-transition: transform 0.2s;
  -ms-transition: transform 0.2s;
  -o-transition: transform 0.2s;
  transition: transform 0.2s; }
  @media (max-width: 62em) {
    .Menu__placeholder .container {
      width: auto;
      padding: 0; } }

.Header__Language {
  min-height: 30px; }

.menu-to-left {
  -moz-transform: translateX(-190px);
  -o-transform: translateX(-190px);
  -ms-transform: translateX(-190px);
  -webkit-transform: translateX(-190px);
  transform: translateX(-190px); }

.MainMenu a, .MainMenu .Block__Share {
  position: relative;
  padding: 30px 10px;
  display: block;
  font-size: 0.875em; }
  .MainMenu a:focus, .MainMenu .Block__Share:focus {
    text-decoration: none; }
  .MainMenu a:hover, .MainMenu .Block__Share:hover, .MainMenu a:active, .MainMenu .Block__Share:active, .MainMenu a:focus, .MainMenu .Block__Share:focus {
    color: #990ae3; }

.MainMenu .active:focus,
.MainMenu .active {
  text-decoration: underline; }

.MainMenu .has-children a.after, .MainMenu .has-children .after.Block__Share {
  content: '';
  position: absolute; }

.children-active:after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #9706e2;
  bottom: 0;
  left: 50%;
  margin-left: -5px; }

.pointer {
  display: block;
  position: absolute; }
  .pointer:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #9706e2;
    top: -10px;
    position: absolute; }

.header--mobile {
  position: relative;
  background-color: #fff;
  padding: 30px;
  z-index: 2; }
  .header--mobile > div {
    display: inline-block;
    vertical-align: middle; }
    .header--mobile > div:first-child {
      float: left; }
    .header--mobile > div:last-child {
      float: right;
      position: relative; }
  .header--mobile img {
    width: 160px;
    margin: auto; }

.MobileMenuIcon {
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px;
  cursor: pointer; }
  .MobileMenuIcon span {
    color: transparent;
    position: relative;
    margin-top: 8px;
    margin-bottom: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .MobileMenuIcon span, .MobileMenuIcon span:before, .MobileMenuIcon span:after {
      display: block;
      width: 25px;
      height: 3px;
      background-color: #000000;
      -webkit-transition-property: background-color, -webkit-transform;
      -moz-transition-property: background-color, -moz-transform;
      -o-transition-property: background-color, -o-transform;
      transition-property: background-color, transform;
      -webkit-transition-duration: 0.2s;
      -moz-transition-duration: 0.2s;
      -o-transition-duration: 0.2s;
      transition-duration: 0.2s; }
    .MobileMenuIcon span:before, .MobileMenuIcon span:after {
      position: absolute;
      content: ""; }
    .MobileMenuIcon span:before {
      top: -8px; }
    .MobileMenuIcon span:after {
      top: 8px; }
  @media (min-width: 62em) {
    .MobileMenuIcon {
      display: none; } }

.MobileMenuActive span {
  background-color: transparent; }

.MobileMenuActive span:before {
  -webkit-transform: translateY(8px) rotate(45deg);
  -moz-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg); }

.MobileMenuActive span:after {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -moz-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg); }

.ts-menu-primary__second-level-li.selected {
  font-weight: 700; }

.ts-menu-primary__third-level {
  font-weight: 500; }
  .ts-menu-primary__third-level .ts-menu-primary__third-level-li.selected {
    font-weight: 700; }

@media (min-width: 62em) {
  .header-menu {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2; } }

@media (min-width: 75em) {
  .MainMenu a, .MainMenu .Block__Share {
    padding-right: 18px;
    padding-left: 18px; } }

.Cookie__Info h2 {
  color: #990ae3; }

a.ts-button.ts-button--tertiary, .ts-button.ts-button--tertiary.Block__Share {
  border-color: #990ae3;
  border-width: 1px; }

.SecondaryMenu {
  position: absolute;
  width: 100%;
  top: auto;
  z-index: 2;
  background-color: #f0f0f0;
  border-top: 1px solid #eaeaea;
  line-height: 1;
  display: none; }
  .SecondaryMenu .menu {
    display: none;
    padding: 2.25rem 15px 0.625rem; }
    .SecondaryMenu .menu.open {
      display: block; }
  .SecondaryMenu ul {
    list-style: none; }
  .SecondaryMenu li {
    vertical-align: text-top; }
  .SecondaryMenu a, .SecondaryMenu .Block__Share {
    position: relative;
    display: inline-block;
    color: #222222; }
    .SecondaryMenu a:hover, .SecondaryMenu .Block__Share:hover, .SecondaryMenu a:active, .SecondaryMenu .Block__Share:active, .SecondaryMenu a:focus, .SecondaryMenu .Block__Share:focus {
      text-decoration: underline;
      color: #222222; }
    .SecondaryMenu a.active, .SecondaryMenu .active.Block__Share {
      text-decoration: underline; }

.SecondaryMenu--title {
  margin-bottom: 1.625rem;
  font-size: 1.5em;
  text-transform: uppercase;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; }

.SecondaryMenu__Items {
  overflow: auto;
  width: 100%; }

.SecondaryMenu__Item {
  margin-bottom: 1.625rem;
  font-size: 1rem; }

.SecondaryMenu__Item:nth-child(3n+1) {
  clear: left; }

.SecondaryMenu__QuickLinks {
  margin-top: 1.625rem;
  margin-bottom: 1.625rem;
  overflow: auto; }
  .SecondaryMenu__QuickLinks li {
    width: 33.3333333333%;
    display: block;
    float: left;
    padding-left: 3px; }
    .SecondaryMenu__QuickLinks li:first-child {
      padding-left: 0; }
  .SecondaryMenu__QuickLinks .ts-link, .SecondaryMenu__QuickLinks .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .SecondaryMenu__QuickLinks .gallery-email-link {
    background-color: #fff;
    padding: 1em 1em 1em 2.8125em;
    display: block;
    font-size: 1rem; }
    .SecondaryMenu__QuickLinks .ts-link:hover, .SecondaryMenu__QuickLinks .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover, .Page__Block .Gallery__Block .gallery-content-container .SecondaryMenu__QuickLinks .gallery-email-link:hover, .SecondaryMenu__QuickLinks .ts-link:active, .SecondaryMenu__QuickLinks .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:active, .Page__Block .Gallery__Block .gallery-content-container .SecondaryMenu__QuickLinks .gallery-email-link:active, .SecondaryMenu__QuickLinks .ts-link:focus, .SecondaryMenu__QuickLinks .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:focus, .Page__Block .Gallery__Block .gallery-content-container .SecondaryMenu__QuickLinks .gallery-email-link:focus {
      text-decoration: none;
      color: #990ae3; }
    .SecondaryMenu__QuickLinks .ts-link .ts-symbol, .SecondaryMenu__QuickLinks .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link .ts-symbol, .Page__Block .Gallery__Block .gallery-content-container .SecondaryMenu__QuickLinks .gallery-email-link .ts-symbol {
      left: 1em;
      width: 20px;
      height: 20px; }

/* Search */
.Header__Search {
  display: inline-block; }

.Header__Search__Icon {
  display: block;
  height: 24px;
  width: 24px; }
  .Header__Search__Icon svg {
    height: 24px;
    width: 24px; }
    .Header__Search__Icon svg:hover, .Header__Search__Icon svg:active, .Header__Search__Icon svg:focus {
      fill: #990ae3; }

.header-search-form {
  position: relative;
  display: inline-block;
  vertical-align: middle; }
  @media only screen and (min-width: 62em) {
    .header-search-form {
      position: absolute;
      top: 30px; } }
  .header-search-form button {
    position: absolute;
    border: none;
    background: transparent;
    display: inline-block;
    visibility: hidden;
    right: 0;
    color: transparent; }
  .header-search-form input {
    position: relative;
    width: 0;
    padding: 0;
    background-color: #fff;
    border: none;
    transition: all 0.2s; }
  .header-search-form a, .header-search-form .Block__Share {
    position: absolute;
    top: 0;
    right: 0; }

.search-form-open input,
.mobile-search-form-open input {
  position: absolute;
  padding: 15px 55px 15px 20px;
  right: 0; }

.search-form-open button,
.mobile-search-form-open button {
  visibility: visible; }

.search-form-open > a, .search-form-open > .Block__Share,
.mobile-search-form-open > a,
.mobile-search-form-open > .Block__Share {
  display: none; }

.search-form-open input {
  top: -18px;
  width: 200px; }

.search-form-open .Header__Search__Icon:before {
  top: -4px;
  right: 15px; }

.mobile-search-form-open input {
  width: 200px;
  top: -8px; }

.mobile-search-form-open .Header__Search__Icon:before {
  top: 8px;
  right: 15px; }

.Breadcrumbs {
  list-style: none;
  margin: 2em 0 4.5em;
  padding: 0;
  font-size: 0.75em; }
  .Breadcrumbs:before {
    content: attr(data-prefix); }
  .Breadcrumbs li {
    display: inline-block; }
  .Breadcrumbs .Breadcrumbs__Links a, .Breadcrumbs .Breadcrumbs__Links .Block__Share {
    display: inline-block;
    color: #990ae3; }
    .Breadcrumbs .Breadcrumbs__Links a:hover, .Breadcrumbs .Breadcrumbs__Links .Block__Share:hover {
      text-decoration: none; }
  .Breadcrumbs .Breadcrumbs__Links:after {
    content: "/";
    line-height: 18px;
    margin: 0 1px 0 4px; }
  .Breadcrumbs .Breadcrumbs__Links:last-child:after {
    content: normal; }

.Cookie__Banner {
  padding: 0.625rem 0;
  border-bottom: 1px solid #9706e2;
  background-color: #fff; }
  .Cookie__Banner .ts-button {
    margin: 0; }
  .Cookie__Banner .clearfix div {
    display: table-cell;
    vertical-align: middle; }
  .Cookie__Banner .Cookie__Info {
    padding-right: 20px;
    width: 100%; }
    .Cookie__Banner .Cookie__Info p {
      margin: 0; }
  .Cookie__Banner a.btn, .Cookie__Banner .btn.Block__Share {
    color: #fff; }

.LoadMoreResults {
  width: 220px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  display: none; }

.GeneralFilter__loading {
  padding: 20px; }
  .GeneralFilter__loading .GeneralFilter__loading--item {
    width: 0px;
    display: block;
    margin-left: auto;
    margin-right: auto; }

.GeneralFilter--Style1 .dropdown--list {
  background-color: #F6F6F6; }

.GeneralFilter--Style2 .GeneralFilter__FilterDropdowns .dropdown__Wrapper {
  width: 20%; }

.GeneralFilter {
  display: none;
  min-height: 160px;
  height: 100%; }
  .GeneralFilter .ts-button {
    margin-top: 1.25em; }
  .GeneralFilter .feedback-text {
    font-weight: bold;
    margin-top: 1.25em;
    display: inline-block; }
  .GeneralFilter .GeneralFilter__Search--button {
    color: #9706e2;
    border: 0px;
    font-weight: bold;
    padding: 10px;
    top: -6px;
    position: relative;
    font-size: 0.75em; }
  .GeneralFilter .ClearFilter {
    font-size: 0.875rem;
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0 0 10px 0;
    color: #990ae3;
    display: block;
    z-index: 0; }
    .GeneralFilter .ClearFilter:hover {
      color: #990ae3; }
  .GeneralFilter .mainFilterInput {
    /* Safari 3-4, iOS 1-3.2, Android 1.6- */
    -webkit-border-radius: 3.625em;
    /* Firefox 1-3.6 */
    -moz-border-radius: 3.625em;
    /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
    border-radius: 3.625em;
    width: 100%;
    padding: 1.3125em 1.5625em 1.3125em 4.0625em;
    display: block;
    background-color: #f2f2f2;
    border: none;
    color: #222222; }
    .GeneralFilter .mainFilterInput::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #222222; }
    .GeneralFilter .mainFilterInput::-moz-placeholder {
      /* Firefox 19+ */
      color: #222222; }
    .GeneralFilter .mainFilterInput:-ms-input-placeholder {
      /* IE 10+ */
      color: #222222; }
    .GeneralFilter .mainFilterInput:-moz-placeholder {
      /* Firefox 18- */
      color: #222222; }
  .GeneralFilter .GeneralFilter__Search--MainInput {
    width: 100%;
    display: block;
    position: relative; }
    .GeneralFilter .GeneralFilter__Search--MainInput .GeneralFilter__Search__Icon {
      background-color: transparent;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: #000 !important;
      display: inline-block;
      padding: 0 16px 0 25px;
      cursor: pointer;
      border: 0;
      height: 100%; }
      .GeneralFilter .GeneralFilter__Search--MainInput .GeneralFilter__Search__Icon img {
        width: 22px;
        height: auto;
        display: block; }
  .GeneralFilter .dropdown--arrow--down {
    position: absolute;
    right: 1.0625em;
    height: 9px !important;
    width: 14px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 14px !important; }
  .GeneralFilter .dropdown--arrow--up {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
  .GeneralFilter .FilterCheckMark {
    background-color: rgba(0, 180, 140, 0.3) !important; }
    .GeneralFilter .FilterCheckMark .glyphicon {
      font-size: 0.75em;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      right: 10px; }
  .GeneralFilter .GeneralFilter__FilterDropdowns {
    position: relative;
    padding-top: 1.875em;
    padding-bottom: 0.625em;
    width: inherit;
    z-index: 1;
    height: initial;
    border-bottom: 1px solid #e5e5e5; }
    .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown__Wrapper {
      position: relative;
      width: 100%;
      margin-bottom: 1.25em; }
    .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown {
      width: 100%;
      padding: 0.875em 1.0625em;
      border: none;
      border-radius: 0px;
      background-color: #f2f2f2; }
    .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown--list {
      display: none;
      padding: 0px;
      border: 0px;
      width: 100%;
      overflow-y: auto;
      overflow-x: hidden;
      z-index: 10;
      border: 1px solid #ebebeb;
      border-top: 0; }
      .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown--list option, .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown--list li, .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown--list li.dropdown__child {
        padding: 10px 20px;
        color: black;
        z-index: 6;
        width: 100%;
        border-top: 1px solid #ebebeb;
        position: relative;
        text-overflow: ellipsis;
        overflow: hidden; }
      .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown--list li:hover, .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown--list li.dropdown__child:hover {
        color: #9706e2;
        cursor: pointer; }
    .GeneralFilter .GeneralFilter__FilterDropdowns .displayDropdownItem {
      display: inline-block;
      position: absolute;
      z-index: 10;
      height: auto; }
    .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown:hover {
      color: #9706e2;
      cursor: pointer; }
  .GeneralFilter .News__Flow__Wrapper {
    border-top: 1px solid #DBDBDB;
    min-height: 40px;
    padding: 10px;
    margin: 20px 0;
    position: relative;
    z-index: 4; }
  .GeneralFilter .News__Search__Icon:hover, .GeneralFilter .ClearFilter:hover {
    color: #9706e2 !important;
    background-color: white !important; }
  .GeneralFilter .GeneralFilter__ChosenFilters {
    display: none;
    padding: 1.25em 0 0.625em;
    border-bottom: 1px solid #e5e5e5; }
    .GeneralFilter .GeneralFilter__ChosenFilters h4 {
      font-size: 0.75rem;
      letter-spacing: 0.1666666667em;
      text-transform: uppercase;
      margin: 0.3333333333em 0 0 0; }
  .GeneralFilter .GeneralFilter__Tags {
    padding: 0;
    margin: 0; }
    .GeneralFilter .GeneralFilter__Tags .tag {
      background-color: #f2f2f2;
      white-space: nowrap;
      display: inline-block;
      margin: 0 0.625em 0.625em 0;
      width: auto;
      line-height: 1;
      padding: 0.375em 2.5em 0.375em 1.1875em;
      position: relative;
      border-radius: 1.625em; }
      .GeneralFilter .GeneralFilter__Tags .tag small {
        font-size: 8px;
        width: 0px;
        display: inline;
        position: relative;
        float: left;
        left: 40px;
        top: 5px;
        color: gray; }
      .GeneralFilter .GeneralFilter__Tags .tag .tag--text {
        text-transform: uppercase;
        font-size: 0.75em;
        font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        letter-spacing: 0.0833333333em;
        margin-top: 2px; }
      .GeneralFilter .GeneralFilter__Tags .tag .tag--close--wrapper {
        height: 0.875em;
        width: 0.875em;
        overflow: hidden;
        display: block;
        position: absolute;
        right: 1.1875em;
        top: 50%;
        transform: translateY(-50%); }
        .GeneralFilter .GeneralFilter__Tags .tag .tag--close--wrapper:before, .GeneralFilter .GeneralFilter__Tags .tag .tag--close--wrapper:after {
          position: absolute;
          top: 50%;
          left: 0;
          right: 0;
          transform: rotate(45deg);
          width: 100%;
          height: 0.0625em;
          background-color: #222222;
          content: '';
          display: block;
          cursor: pointer;
          z-index: 0; }
        .GeneralFilter .GeneralFilter__Tags .tag .tag--close--wrapper:after {
          transform: rotate(-45deg); }
      .GeneralFilter .GeneralFilter__Tags .tag .tag--close {
        position: absolute;
        border: none;
        z-index: 1;
        height: 100%;
        width: 100%;
        display: block;
        padding: 0;
        margin: 0;
        background-color: transparent; }

.GeneralFilter .GeneralFilter__Tags:empty {
  display: none; }

.Calender__Page .GeneralFilter {
  min-height: 70px; }

.paginationThin .paginationThin__Current, .paginationThin .paginationThin__Last {
  background-color: white;
  height: 50px;
  display: block;
  float: left;
  padding: 13px 2px; }

.paginationThin .paginationThin__Current--extra1, .paginationThin .paginationThin__Current--extra2 {
  display: inline-block;
  margin-top: 0; }

.paginationThin li:last-child a.pagination__next, .paginationThin li:last-child .pagination__next.Block__Share {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-right: 30px !important; }

.paginationRegular .disabled a.pagination__prev, .paginationRegular .disabled .pagination__prev.Block__Share, .paginationRegular .disabled a.pagination__next, .paginationRegular .disabled .pagination__next.Block__Share {
  display: none; }

.paginationRegular .disabled a.pagination__first, .paginationRegular .disabled .pagination__first.Block__Share, .paginationRegular .disabled a.pagination__last, .paginationRegular .disabled .pagination__last.Block__Share {
  background: white; }

.paginationRegular li:last-child a.pagination__next, .paginationRegular li:last-child .pagination__next.Block__Share {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-right: 30px; }

.pagination li.active {
  font-weight: bold; }
  .pagination li.active a, .pagination li.active .Block__Share, .pagination li.active p {
    color: #9706e2; }

.pagination a:focus, .pagination .Block__Share:focus, .pagination p:focus {
  background-color: white !important;
  color: #9706e2 !important; }

.pagination a.pagination__first, .pagination .pagination__first.Block__Share, .pagination p.pagination__first,
.pagination a.pagination__prev,
.pagination .pagination__prev.Block__Share, .pagination p.pagination__prev {
  height: 50px;
  border: none;
  line-height: 35px;
  color: black;
  font-size: 20px;
  font-weight: bold;
  padding: 17px; }

.pagination a.pagination__first:after, .pagination .pagination__first.Block__Share:after, .pagination p.pagination__first:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 16 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.3,13.9,2,14,1.6,14z'/><path d='M8.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L12.2,7L7.4,2.5C6.8,1.9,6.8,1,7.4,0.4s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C9.3,13.9,8.9,14,8.6,14z'/></svg>");
  background-repeat: no-repeat;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  content: '';
  display: block;
  height: 15px;
  width: 16px; }

.pagination a.pagination__first:hover:after, .pagination .pagination__first.Block__Share:hover:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 16 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.3,13.9,2,14,1.6,14z'/><path d='M8.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L12.2,7L7.4,2.5C6.8,1.9,6.8,1,7.4,0.4s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C9.3,13.9,8.9,14,8.6,14z'/></svg>");
  background-repeat: no-repeat; }

.pagination a.pagination__prev:after, .pagination .pagination__prev.Block__Share:after, .pagination p.pagination__prev:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 9 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.4,13.9,2,14,1.6,14z'/></svg>");
  background-repeat: no-repeat;
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  content: '';
  display: block;
  height: 15px;
  width: 10px; }

.pagination a.pagination__prev:hover:after, .pagination .pagination__prev.Block__Share:hover:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 9 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.4,13.9,2,14,1.6,14z'/></svg>");
  background-repeat: no-repeat; }

.pagination li.PageinatorItem:first-child::before {
  content: " ";
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 100%;
  position: relative;
  float: left;
  margin-left: -25px;
  margin-right: -15px;
  top: 0px;
  z-index: 0; }

.pagination li.paginationThin__Current:first-child {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  padding-left: 40px; }

.pagination li.paginationThin__Last:last-child {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  padding-right: 40px; }

.pagination li.PageinatorItem:last-child p.paginationItem {
  background-color: white;
  padding-right: 25px;
  border-top-left-radius: 0px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  border-bottom-left-radius: 0px; }

.pagination li:first-child a.pagination__prev:before, .pagination li:first-child .pagination__prev.Block__Share:before, .pagination li:last-child a.pagination__prev:before, .pagination li:last-child .pagination__prev.Block__Share:before {
  content: " ";
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 100%;
  position: absolute;
  float: left;
  margin-left: -35px;
  margin-right: -15px;
  top: 0px;
  z-index: 0; }

.pagination .PageinatorItem {
  height: 50px;
  position: inherit;
  float: left;
  display: inline-block;
  white-space: nowrap; }

.pagination a.pagination__current, .pagination .pagination__current.Block__Share, .pagination p.pagination__current {
  height: 50px;
  border: none;
  width: 100%;
  position: relative;
  padding: 14px 10px;
  background-color: white;
  color: black; }

.pagination a.pagination__current:hover, .pagination .pagination__current.Block__Share:hover, .pagination p.pagination__current:hover {
  background-color: white;
  color: #9706e2; }

.pagination .pagination__next, .pagination a.pagination__last, .pagination .pagination__last.Block__Share, .pagination p.pagination__last {
  height: 50px;
  border: none;
  line-height: 35px;
  color: black;
  font-size: 20px;
  font-weight: bold;
  padding: 17px; }

.pagination a.pagination__next:after, .pagination .pagination__next.Block__Share:after, .pagination p.pagination__next:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 9 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.4,13.9,2,14,1.6,14z'/></svg>");
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 15px;
  width: 10px; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .pagination {
    /* Retina-specific stuff here */
    /*a.pagination__next:after, p.pagination__next:after{
            background-position: 0 -42px !important;
        }
        a.pagination__prev:after, p.pagination__prev:after{
            background-position: 0 -42px !important;
        }*/ } }

.pagination a.pagination__next:hover:after, .pagination .pagination__next.Block__Share:hover:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 9 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.4,13.9,2,14,1.6,14z'/></svg>");
  background-repeat: no-repeat; }

.pagination a.pagination__last:after, .pagination .pagination__last.Block__Share:after, .pagination p.pagination__last:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 16 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.3,13.9,2,14,1.6,14z'/><path d='M8.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L12.2,7L7.4,2.5C6.8,1.9,6.8,1,7.4,0.4s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C9.3,13.9,8.9,14,8.6,14z'/></svg>");
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 15px;
  width: 16px; }

.pagination a.pagination__last:hover:after, .pagination .pagination__last.Block__Share:hover:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 9 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.3,13.9,2,14,1.6,14z'/><path d='M8.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L12.2,7L7.4,2.5C6.8,1.9,6.8,1,7.4,0.4s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C9.3,13.9,8.9,14,8.6,14z'/></svg>");
  background-repeat: no-repeat; }

.pagination a.pagination__next:hover, .pagination .pagination__next.Block__Share:hover, .pagination a.pagination__prev:hover, .pagination .pagination__prev.Block__Share:hover, .pagination a.pagination__last:hover, .pagination .pagination__last.Block__Share:hover, .pagination a.pagination__first:hover, .pagination .pagination__first.Block__Share:hover,
.pagination p.pagination__next:hover, .pagination p.pagination__prev:hover, .pagination p.pagination__last:hover, .pagination p.pagination__first:hover {
  background-color: white;
  color: #9706e2; }

.test a:after, .test .Block__Share:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 16 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.3,13.9,2,14,1.6,14z'/><path d='M8.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L12.2,7L7.4,2.5C6.8,1.9,6.8,1,7.4,0.4s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C9.3,13.9,8.9,14,8.6,14z'/></svg>");
  background-repeat: no-repeat;
  content: '';
  display: block;
  height: 15px;
  width: 16px; }

.test:hover a:after, .test:hover .Block__Share:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 16 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.3,13.9,2,14,1.6,14z'/><path d='M8.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L12.2,7L7.4,2.5C6.8,1.9,6.8,1,7.4,0.4s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C9.3,13.9,8.9,14,8.6,14z'/></svg>");
  background-repeat: no-repeat; }

.test a:after, .test .Block__Share:after {
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.Workday__Joblisting__Block .GeneralFilter__FilterDropdowns .dropdown--list {
  background-color: #f3f3f3;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
  border: 1px solid #ebebeb;
  border-top: 0; }

.Workday__Joblisting__Block .GeneralFilter__FilterDropdowns .dropdown__Wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 0.3125em; }

.Blog__Post__Author__Block .ts-h2 {
  padding-bottom: 0;
  margin-bottom: 0; }

.Blog__Post__Author__Block .subtitle {
  font-size: 0.75rem;
  color: #a0a0a0;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem; }

.Blog__Post__Author__Block img {
  margin-bottom: 1rem;
  display: block; }

.Right__Col .Blog__Post__Author__Block .ts-h2 {
  border: 0;
  margin-bottom: 0.4166666667em;
  padding-bottom: 0; }

.RelatedContent__Wrapper {
  width: 100%;
  padding-bottom: 20px;
  display: inline-block; }
  .RelatedContent__Wrapper .RelatedContent {
    float: left;
    display: block;
    padding: 15px;
    margin: 0 0 15px; }
    .RelatedContent__Wrapper .RelatedContent .RC_Image {
      float: left;
      height: 50px;
      width: 60px;
      display: block;
      padding-right: 10px; }
    .RelatedContent__Wrapper .RelatedContent .RC_Heading {
      margin-left: 70px;
      margin-top: 0;
      line-height: 23px;
      font-size: 16px; }
    .RelatedContent__Wrapper .RelatedContent .RC_Preamble {
      padding-left: normal;
      font-size: 1.3rem;
      margin-left: 60px; }
    .RelatedContent__Wrapper .RelatedContent p {
      margin: 0px; }

.List__Page .pagination {
  margin: 0px; }

.ContentPage1 .ContentPage1__DynamicTop {
  display: flex;
  display: -webkit-flex; }

.ContentPage1 .DynamicVisibilityBlock {
  float: left;
  max-width: 50%; }
  .ContentPage1 .DynamicVisibilityBlock div {
    -webkit-flex: 1;
    flex: 1; }

.ContentPage1 .ContentPage1__MainArticle {
  width: 100%;
  display: block;
  float: left;
  overflow: hidden; }
  .ContentPage1 .ContentPage1__MainArticle .row > div {
    float: left; }

.Page__Main__Preamble {
  margin-bottom: 1rem; }
  .Page__Main__Preamble p {
    margin-top: 0;
    font-size: 1.125rem; }

.Page__Main__Image {
  margin-top: 1rem;
  margin-bottom: 1rem; }
  .Page__Main__Image img {
    width: 100%;
    display: block; }

.Page__Main__Content {
  margin-bottom: 1.875rem; }
  .Page__Main__Content p {
    font-size: 1rem; }

.Page__Main__Metadata {
  color: #a0a0a0;
  text-transform: uppercase;
  display: block;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 1rem; }
  .Page__Main__Metadata li {
    margin-bottom: 0;
    display: inline-block;
    font-size: 1rem; }
    .Page__Main__Metadata li:after {
      content: ","; }
    .Page__Main__Metadata li:last-child:after {
      content: ""; }

article {
  word-wrap: break-word; }
  article a, article .Block__Share {
    color: #990ae3; }
  article .ts-h1 {
    margin-bottom: .8em; }
  article h2,
  article caption {
    margin-top: 1rem; }
  article h2 {
    margin-bottom: -0.3em; }
  article p {
    margin-top: 1em;
    margin-bottom: 0; }
  article li {
    margin-top: 0.3em;
    margin-bottom: 0; }
    article li:first-child {
      margin-top: 1em; }
    article li p {
      margin-top: 0; }

table.fullTableWidth {
  width: 100% !important; }

table {
  width: 100%;
  margin-top: 0px;
  padding-top: 0px;
  overflow-x: auto; }
  table caption {
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #222222;
    padding-top: 0;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #CCCCCC; }
  table thead td,
  table thead th {
    padding: 0 0.625rem 0.625rem 0.625rem;
    font-size: 1rem;
    font-weight: bold;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    color: #222222; }
    table thead td h1, table thead td h2, table thead td h3, table thead td h4, table thead td h5, table thead td p,
    table thead th h1,
    table thead th h2,
    table thead th h3,
    table thead th h4,
    table thead th h5,
    table thead th p {
      font-size: 1rem;
      font-weight: bold;
      font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      color: #222222;
      width: 90%;
      text-overflow: ellipsis;
      height: 20px;
      overflow: hidden; }
    table thead td span,
    table thead th span {
      width: 10%; }
  table thead td:hover {
    cursor: pointer; }
  table thead tr:nth-child(1) {
    background-color: white; }
  table th {
    padding-top: 0; }
  table td {
    padding: 0.625em; }
  table td,
  table th {
    overflow: hidden;
    width: auto;
    word-wrap: break-word; }
  table tr:nth-child(odd) {
    background-color: #f2f2f2; }
  table tr:nth-child(even) {
    background-color: transparent; }
  table.table-contact {
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 1rem; }
    table.table-contact tr:nth-child(odd) {
      background-color: transparent; }
    table.table-contact tr:last-child td {
      padding-bottom: 1rem; }
    table.table-contact th,
    table.table-contact td {
      padding-top: 0;
      padding-bottom: 0; }

.ContentPage2 .Bottom__Content,
.ContentPage3 .Bottom__Content {
  margin: 20px 0; }

/* CSS for the Job Page */
.Job__Page {
  /*Job Ad page*/ }
  .Job__Page .Job__Post__Wrapper {
    position: relative; }
  .Job__Page .JobWrapper__Language {
    padding: 0; }
    .Job__Page .JobWrapper__Language li {
      font-size: 0.75rem; }
  .Job__Page .Right__Col {
    padding-top: 0; }
  .Job__Page .Company__Logo {
    width: 100%;
    margin-bottom: 20px; }
  .Job__Page .Main__Wrapper {
    margin: 0; }
  .Job__Page .Main__Wrapper .Job__Post__Wrapper {
    margin-bottom: 30px; }
  .Job__Page .Page__Main__Content .Job__Information {
    margin-bottom: 2.5rem; }
  .Job__Page .Page__Main__Content p {
    font-size: 1rem; }
  .Job__Page .Page__Main__Content .openPositionBodyText ul li {
    font-size: 1rem; }
  .Job__Page .Job__Company__Info h4 {
    font-weight: bold;
    margin: 0 0 0.125rem 0; }
  .Job__Page .Job__Company__Info h4,
  .Job__Page .Job__Company__Info p {
    font-size: 1rem; }
  .Job__Page .Job__Company__Info p {
    margin-bottom: 0.625rem; }
  .Job__Page .Job__Company__Info a, .Job__Page .Job__Company__Info .Block__Share {
    color: #990ae3;
    text-decoration: none; }
  .Job__Page .Job__Company__Info .Job__Company__Info--Contact {
    padding: 0;
    margin-bottom: 0.625rem; }

.OnePager .container .OnePagerPage__Area {
  margin-bottom: 2.5rem; }

@media (min-width: 48em) {
  .Page__Main__Preamble {
    margin-bottom: 2.5rem; }
    .Page__Main__Preamble p {
      font-size: 1.5rem; }
  .Page__Main__Content p {
    font-size: 1rem; }
  .Page__Main__Image {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem; }
  article h2,
  article caption {
    margin-top: 1.5em; }
  article h2 {
    margin-bottom: -0.5em; }
  article p {
    font-size: 1.25rem;
    margin-top: 1.5em;
    margin-bottom: 0; }
  article li {
    font-size: 16px;
    margin-top: 0.3em;
    margin-bottom: 0; }
  .Bottom__Content {
    margin: 20px 0; } }

.ts-footer-nav {
  /*
    background-color: $color--gray;
    color: $body-color;
    padding-bottom: 3rem;
    line-height: 1;

    a {
        color: $body-color;

        &:hover {
            color: $body-color;
        }

        .ts-symbol {
            fill: $body-color;
        }
    }
    */
  padding-bottom: 2.5rem; }

.ts-footer-nav__ul {
  padding: 0 15px; }

/*.ts-footer-nav__li__top-level-text {
    border-bottom: 1px solid #c0c0c0;
    padding: remCalc(23px) 0 remCalc(24px);
    
    .ts-symbol {
        fill: $body-color;
    }

}*/
.ts-footer-nav__li__top-level-text__a {
  /*
    font-family: $font-pebble-regular;
    text-transform: uppercase;
    font-size: $font-size--xxxl;
    */
  line-height: 1; }

/*.ts-footer-sub-menu__ul__li {
    border-bottom: 1px solid #c0c0c0;

    &:after {
        background: none;
        width: 0;
        position: static;
    }
}

.ts-footer-sub-menu__ul__li__a {
    font-size: $font-size--m;
    margin: remCalc(14px) 0 remCalc(12px);
}*/
.ts-follow-us {
  /*.container {
        position: relative;
    }*/
  /*.Back__ToTop {
        font-size: $font-size--m;
    }*/ }
  .ts-follow-us a, .ts-follow-us .Block__Share {
    display: inline-block; }
    .ts-follow-us a:hover .ts-follow-us__symbol, .ts-follow-us .Block__Share:hover .ts-follow-us__symbol {
      fill: #000; }
  .ts-follow-us .ts-follow-us__symbol {
    width: 50px;
    height: 50px; }

@media (min-width: 62em) {
  .MainFooter__Wrapper {
    margin-top: 1.25rem; } }

.Content--Area {
  position: relative;
  overflow-x: hidden; }

.ts-h1 {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; }

.ts-link, .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
  position: relative;
  padding-left: 1.6875em; }
  .ts-link .ts-symbol, .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link .ts-symbol {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }

.nowrap, .Page__Block .Gallery__Block .gallery-content-container .ts-link, .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .ts-h2.one-line .first-name, .Page__Block .Gallery__Block .ts-h2.one-line .last-name, .Page__Block .Gallery__Block p:not(.designation), .block-25 .Story__Block .Block__Preamble, .block-25 .Sense__Block .Block__Preamble {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

p.paragraph {
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif !important;
  font-size: 16px !important; }

.btn-primary {
  background: #9706e2;
  border: 1px solid #3f0064; }
  .btn-primary:hover {
    background: #3f0064; }

.Main__Wrapper img {
  max-width: 100%; }

.Main__Wrapper .See__More {
  position: absolute;
  right: 40px;
  bottom: 60px; }

.Main__Wrapper .See__More__Link {
  display: inline-block;
  text-align: right;
  color: #333333;
  text-decoration: underline; }
  .Main__Wrapper .See__More__Link:hover {
    color: #990ae3; }

.Main__Wrapper .blue .btn-primary, .Main__Wrapper .red .btn-primary {
  background: #fff;
  border: 1px solid #DBDBDB;
  color: #3f0064; }
  .Main__Wrapper .blue .btn-primary:hover, .Main__Wrapper .red .btn-primary:hover {
    background: #3f0064; }

.Main__Wrapper h2.style1, .Main__Wrapper h3.style1, .Main__Wrapper h4.style1, .Main__Wrapper h5.style1 {
  font-size: 3.4375em;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  color: #990ae3;
  text-rendering: optimizeLegibility; }

.Main__Wrapper h1.BannerTitle {
  font-size: 3.4375em;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  margin-top: 40px;
  padding: 0;
  margin-bottom: 1.625rem;
  text-rendering: optimizeLegibility;
  -ms-word-break: break-all;
  word-break: break-all;
  line-height: 1; }

.Main__Wrapper .BlockTitle {
  margin: 0 0 20px;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 1.5em; }

/*Extras: view and comments icons */
.PageType {
  color: #a0a0a0;
  font-size: 0.75em; }

.Extras {
  color: #a0a0a0;
  font-size: 0.75em;
  letter-spacing: 1px; }
  .Extras .Extras__Date {
    width: 40%;
    padding-right: 0px; }
  .Extras .Icons {
    padding-left: 0px;
    text-align: right;
    width: 60%;
    text-align: right;
    float: right; }
  .Extras .glyphicon {
    margin-left: 3px; }
  .Extras a, .Extras .Block__Share {
    color: #a0a0a0;
    display: inline-block; }

.Views__Icon, .Comments__Icon a, .Comments__Icon .Block__Share {
  display: inline-block;
  margin-right: 10px;
  color: #a0a0a0;
  line-height: 18px;
  padding: 1px 0 5px 35px; }

.Views__Icon {
  background: transparent url(/Assets/Images/sprite_32px.png) no-repeat 0 -1350px;
  padding-top: 1px; }
  .Views__Icon:hover {
    background-position: 0 -1450px;
    color: #990ae3; }
  .Views__Icon:empty {
    display: none; }

.Comments__Icon a, .Comments__Icon .Block__Share {
  background: transparent url(/Assets/Images/sprite_32px.png) no-repeat 7px -1550px; }
  .Comments__Icon a:hover, .Comments__Icon .Block__Share:hover {
    background-position: 7px -1650px;
    color: #990ae3; }
  .Comments__Icon a:empty, .Comments__Icon .Block__Share:empty {
    display: none !important; }

.Right__Col .Page__Block,
.Main__Right__Col .Page__Block {
  margin-bottom: 2.5rem; }
  .Right__Col .Page__Block .See__More,
  .Main__Right__Col .Page__Block .See__More {
    position: static;
    text-align: right; }

.Right__Col .List__Block .ts-h2,
.Main__Right__Col .List__Block .ts-h2 {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0; }

.Right__Col .Share__Block__Placeholder,
.Main__Right__Col .Share__Block__Placeholder {
  margin-bottom: 20px; }

.Right__Col .ts-h2,
.Right__Col h2,
.Main__Right__Col .ts-h2,
.Main__Right__Col h2 {
  color: #222222;
  text-transform: none;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.3125rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1; }

.Right__Col .Page__Tags__Placeholder .Page__Block,
.Main__Right__Col .Page__Tags__Placeholder .Page__Block {
  height: auto; }

.Right__Col .Fact__Box .ts-h2,
.Main__Right__Col .Fact__Box .ts-h2 {
  border: 0;
  padding-bottom: 0; }

.Right__Col .Fact__Box .Fact__Box__Description p a, .Right__Col .Fact__Box .Fact__Box__Description p .Block__Share,
.Main__Right__Col .Fact__Box .Fact__Box__Description p a,
.Main__Right__Col .Fact__Box .Fact__Box__Description p .Block__Share {
  color: #9706e2; }
  .Right__Col .Fact__Box .Fact__Box__Description p a:hover, .Right__Col .Fact__Box .Fact__Box__Description p .Block__Share:hover,
  .Main__Right__Col .Fact__Box .Fact__Box__Description p a:hover,
  .Main__Right__Col .Fact__Box .Fact__Box__Description p .Block__Share:hover {
    color: #ad42e4; }

.Right__Col .Extras .Icons,
.Main__Right__Col .Extras .Icons {
  display: none; }

.White__Block {
  background-color: none; }

.Page__Block, .Press__Release__Wrapper, .Teaser--Block {
  margin-bottom: 20px;
  /* Tags */ }
  @media (min-width: 75em) {
    .Page__Block, .Press__Release__Wrapper, .Teaser--Block {
      margin-bottom: 30px; } }
  .Page__Block .White__Block, .Press__Release__Wrapper .White__Block, .Teaser--Block .White__Block {
    padding: 20px; }
    @media (min-width: 48em) {
      .Page__Block .White__Block, .Press__Release__Wrapper .White__Block, .Teaser--Block .White__Block {
        padding: 25px; } }
    @media (min-width: 75em) {
      .Page__Block .White__Block, .Press__Release__Wrapper .White__Block, .Teaser--Block .White__Block {
        padding: 30px; } }
  .Page__Block h3, .Press__Release__Wrapper h3, .Teaser--Block h3 {
    margin: 0 0 20px; }
  .Page__Block p, .Press__Release__Wrapper p, .Teaser--Block p {
    margin-bottom: 1em; }
  .Page__Block .Intro, .Press__Release__Wrapper .Intro, .Teaser--Block .Intro {
    margin-bottom: 0; }
  .Page__Block .media-left, .Press__Release__Wrapper .media-left, .Teaser--Block .media-left {
    padding-right: 20px; }
  .Page__Block .Page__Tags ul, .Press__Release__Wrapper .Page__Tags ul, .Teaser--Block .Page__Tags ul {
    margin: 0;
    list-style: none;
    padding: 0; }
    .Page__Block .Page__Tags ul li, .Press__Release__Wrapper .Page__Tags ul li, .Teaser--Block .Page__Tags ul li {
      display: inline-block;
      margin: 0 0.625em 0.625em 0; }
      .Page__Block .Page__Tags ul li a, .Page__Block .Page__Tags ul li .Block__Share, .Press__Release__Wrapper .Page__Tags ul li a, .Press__Release__Wrapper .Page__Tags ul li .Block__Share, .Teaser--Block .Page__Tags ul li a, .Teaser--Block .Page__Tags ul li .Block__Share {
        white-space: nowrap;
        position: relative;
        border-radius: 2.1666666667em;
        line-height: 1;
        padding: 0.5em 1.5833333333em;
        background-color: #f2f2f2;
        text-transform: uppercase;
        font-size: 0.75rem;
        max-width: 16.6666666667em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
        letter-spacing: 0.0833333333em;
        transition: background-color 0.15s ease, color 0.15s ease; }
        .Page__Block .Page__Tags ul li a:hover, .Page__Block .Page__Tags ul li .Block__Share:hover, .Press__Release__Wrapper .Page__Tags ul li a:hover, .Press__Release__Wrapper .Page__Tags ul li .Block__Share:hover, .Teaser--Block .Page__Tags ul li a:hover, .Teaser--Block .Page__Tags ul li .Block__Share:hover {
          color: #fff;
          background-color: #990ae3; }
  .Page__Block .Link__List__Block .Link__List__Wrap, .Press__Release__Wrapper .Link__List__Block .Link__List__Wrap, .Teaser--Block .Link__List__Block .Link__List__Wrap {
    margin-top: 0; }
  .Page__Block .Link__List__Block ul, .Press__Release__Wrapper .Link__List__Block ul, .Teaser--Block .Link__List__Block ul {
    margin: 0 0 1rem 0;
    padding: 0;
    list-style: none;
    list-style-position: inside; }
  .Page__Block .Link__List__Block li, .Press__Release__Wrapper .Link__List__Block li, .Teaser--Block .Link__List__Block li {
    margin-bottom: 0.625em; }
  .Page__Block .Link__List__Block a, .Page__Block .Link__List__Block .Block__Share, .Press__Release__Wrapper .Link__List__Block a, .Press__Release__Wrapper .Link__List__Block .Block__Share, .Teaser--Block .Link__List__Block a, .Teaser--Block .Link__List__Block .Block__Share {
    color: #990ae3; }
  .Page__Block .Link__List__Block .ts-link, .Page__Block .Link__List__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Link__List__Block .gallery-email-link, .Press__Release__Wrapper .Link__List__Block .ts-link, .Press__Release__Wrapper .Link__List__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Press__Release__Wrapper .Link__List__Block .gallery-email-link, .Teaser--Block .Link__List__Block .ts-link, .Teaser--Block .Link__List__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Teaser--Block .Link__List__Block .gallery-email-link {
    color: #222222; }
    .Page__Block .Link__List__Block .ts-link:hover, .Page__Block .Link__List__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover, .Page__Block .Gallery__Block .gallery-content-container .Link__List__Block .gallery-email-link:hover, .Press__Release__Wrapper .Link__List__Block .ts-link:hover, .Press__Release__Wrapper .Link__List__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover, .Page__Block .Gallery__Block .gallery-content-container .Press__Release__Wrapper .Link__List__Block .gallery-email-link:hover, .Teaser--Block .Link__List__Block .ts-link:hover, .Teaser--Block .Link__List__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover, .Page__Block .Gallery__Block .gallery-content-container .Teaser--Block .Link__List__Block .gallery-email-link:hover {
      color: #990ae3; }

.RelatedDocuments__placeholder .Link__List__Block.RelatedDocuments ul {
  list-style-type: none;
  padding-left: 0; }

.ContentPage1__Content .block-100 {
  margin-top: 20px; }

.Text__Block {
  margin-bottom: 20px; }
  .Text__Block a, .Text__Block .Block__Share {
    color: #9706e2; }
  .Text__Block .Subscription__Text {
    font-size: 16px; }

@media (min-width: 48em) {
  .Big__Blocks .Link__List__Wrap, .Bottom__Content .Link__List__Wrap {
    height: 220px;
    overflow: hidden;
    margin-top: -10px; }
  .Big__Blocks .block-75 .Link__List__Wrap, .Big__Blocks .block-100 .Link__List__Wrap, .Bottom__Content .block-75 .Link__List__Wrap, .Bottom__Content .block-100 .Link__List__Wrap {
    height: 230px;
    margin-bottom: 20px; } }

.Main__Col {
  margin-bottom: 2.5rem; }
  .Main__Col .Page__Content__Wrapper {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    height: 100%;
    width: 100%;
    margin: 0; }
    .Main__Col .Page__Content__Wrapper .Page__Block {
      height: 440px; }
    .Main__Col .Page__Content__Wrapper .Block__Row .Page__Block {
      height: initial; }
    .Main__Col .Page__Content__Wrapper .Block__Row .Quote__Block {
      margin-bottom: 2.5rem; }

.Full__Col .Main__Right__Col .Page__Block .White__Block,
.Full__Col .ContentPage1__Content .Page__Block .White__Block,
.Full__Col .Bottom__Gallery__Wrapper .Page__Block .White__Block {
  overflow: hidden;
  height: 100%;
  box-shadow: none;
  padding: 30px 0px; }

.Full__Col .Main__Right__Col .Page__Block .Gallery__Block,
.Full__Col .ContentPage1__Content .Page__Block .Gallery__Block,
.Full__Col .Bottom__Gallery__Wrapper .Page__Block .Gallery__Block {
  padding: 0; }

.Full__Col .Page__Block.Quote__Block .White__Block,
.Full__Col .Page__Block.Share__Block__Placeholder .White__Block {
  padding: 30px !important; }

.Full__Col .Bottom__Content .Page__Block .White__Block {
  padding: 20px;
  padding-left: 10px; }

.Full__Col h3, .Full__Col .BlockTitle {
  color: #990ae3; }

.Full__Col .Main__Left__Col {
  overflow: hidden;
  height: 100%; }

.Bottom__Content {
  margin: 20px 0; }

.block-25 .Block__Preamble {
  display: none; }

.Big__Blocks .block-25, .Bottom__Content .block-25 {
  width: 100%; }
  @media (min-width: 48em) {
    .Big__Blocks .block-25, .Bottom__Content .block-25 {
      width: 50%; } }
  @media (min-width: 75em) {
    .Big__Blocks .block-25, .Bottom__Content .block-25 {
      width: 33.33333333%; } }

@media (min-width: 48em) {
  .Big__Blocks .block-75, .Bottom__Content .block-75 {
    width: 100%; } }

@media (min-width: 75em) {
  .Big__Blocks .block-75, .Bottom__Content .block-75 {
    width: 66.66666666%; } }

.Big__Blocks .block-25:last-child, .Bottom__Content .block-25:last-child {
  width: 100%; }
  @media (min-width: 48em) {
    .Big__Blocks .block-25:last-child, .Bottom__Content .block-25:last-child {
      width: 100%; } }
  @media (min-width: 75em) {
    .Big__Blocks .block-25:last-child, .Bottom__Content .block-25:last-child {
      width: 33.33333333%; } }

@media (min-width: 48em) {
  .Big__Blocks .Page__Block .White__Block, .Bottom__Content .Page__Block .White__Block {
    height: 440px;
    overflow: hidden; } }

@media (min-width: 75em) {
  .Big__Blocks .Page__Block .White__Block, .Bottom__Content .Page__Block .White__Block {
    height: 440px;
    overflow: hidden; } }

.Small__Blocks .Page__Block .White__Block {
  height: 100%;
  overflow: hidden;
  margin-bottom: 40px; }

.Job__Page .Full__Col .Page__Block .White__Block {
  margin: 0; }

.Job__Page .Page__Content__Wrapper {
  padding: 0; }

.Job__Page .Bottom__Content > .row {
  padding: 20px 30px 15px 30px; }

.Job__Page .Bottom__Content > h3.BlockTitle {
  margin: 30px 30px 0;
  padding-top: 30px;
  color: #333; }
  .Job__Page .Bottom__Content > h3.BlockTitle:empty {
    padding-top: 0;
    display: none; }
    .Job__Page .Bottom__Content > h3.BlockTitle:empty + .row {
      padding: 30px 30px 15px; }

.Job__Page .Bottom__Content:empty {
  display: none; }

.Search__Page--results {
  -ms-word-break: break-all;
  word-break: break-all; }

.pagination-container {
  text-align: center; }

.paginationItem:hover {
  cursor: pointer; }

.emptyResults {
  display: none; }

li.PageinatorItem, p.paginationItem {
  display: none; }

.pagination--dots {
  position: relative;
  top: 15px; }

.MiniSpinner {
  height: 2px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  min-width: 20%;
  position: relative;
  overflow: hidden;
  bottom: 40px; }

.MiniSpinner:before {
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #9706e2;
  -moz-animation: loading 2s linear infinite;
  -o-animation: loading 2s linear infinite;
  -webkit-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite; }

@-moz-keyframes loading {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

@-webkit-keyframes loading {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

@keyframes loading {
  from {
    left: -200px;
    width: 30%; }
  50% {
    width: 30%; }
  70% {
    width: 70%; }
  80% {
    left: 50%; }
  95% {
    left: 120%; }
  to {
    left: 100%; } }

.floatTextRight {
  text-align: right; }

.Main__Left__Col .shadowRight {
  right: 75px; }

.shadowRight {
  -webkit-box-shadow: inset -42px 0px 37px -36px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset -42px 0px 37px -36px rgba(0, 0, 0, 0.4);
  box-shadow: inset -42px 0px 37px -36px rgba(0, 0, 0, 0.4);
  height: 100%;
  position: absolute;
  width: 40px;
  z-index: 5;
  right: 15px; }

.dots--mini {
  float: right; }

.List__Block {
  background-color: #fff; }
  .List__Block header {
    margin-bottom: 0.875rem;
    position: relative; }
  .List__Block ul {
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
    list-style: none;
    padding: 0.625em 0 0 0; }
  .List__Block li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.625em 0.5em;
    margin: 0 0.625em; }
    .List__Block li:first-child {
      border-top: 0; }
  .List__Block a, .List__Block .Block__Share {
    display: block; }
  .List__Block .ts-h2 {
    margin-bottom: 0;
    display: inline-block; }
  .List__Block .updates-status {
    text-transform: uppercase;
    font-size: 0.75em;
    color: #a0a0a0;
    display: inline-block;
    margin-left: 0.3125rem; }
  .List__Block .view-all {
    color: #990ae3;
    font-size: 0.875em;
    position: absolute;
    right: 10px;
    bottom: 0;
    display: inline-block; }
  .List__Block .PageType {
    display: block;
    margin-bottom: 0.375rem;
    text-transform: uppercase; }
  .List__Block .item-title {
    display: inline-block; }

.ts-section {
  background-color: #fff;
  margin-left: -15px;
  margin-right: -15px; }

:nth-child(odd) > .ts-section {
  background-color: #f2f2f2; }
  :nth-child(odd) > .ts-section .ts-teaser__content:after {
    background: -webkit-linear-gradient(top, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    background: linear-gradient(to bottom, rgba(242, 242, 242, 0) 0%, #f2f2f2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00F2F2F2', endColorstr='#FFF2F2F2',GradientType=0 ); }

.ts-page-sections-navigation a, .ts-page-sections-navigation .Block__Share {
  color: #990ae3; }

.ts-page-sections-navigation__list-item--active a, .ts-page-sections-navigation__list-item--active .Block__Share {
  color: #222222; }

.ts-teaser__content {
  font-size: 1.25rem;
  line-height: 1.3;
  position: static !important; }
  .ts-teaser__content p:first-child {
    font-size: 1.5rem;
    line-height: 1.25; }
  .ts-teaser__content p a, .ts-teaser__content p .Block__Share {
    color: #990ae3; }

@media only screen and (min-width: 1024px) {
  .ts-teaser__content {
    padding-left: 0px; } }

.pebbles {
  display: none; }
  .pebbles .pebble {
    position: absolute;
    z-index: 0;
    display: block;
    max-width: none; }

.StartPage .pebbles .pebble {
  z-index: -1; }

@media (min-width: 48em) {
  .List__Block ul {
    height: 400px;
    margin-bottom: 0; }
  .pebbles {
    display: block; } }

@media (min-width: 62em) {
  .main-content {
    padding-top: 110px; }
  .Main__Col {
    margin-bottom: 1.25rem; }
  .Right__Col {
    padding-top: 1.9375rem; }
    .Right__Col p {
      font-size: 0.875rem; }
    .Right__Col .ts-link, .Right__Col .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Right__Col .gallery-email-link {
      font-size: 1rem; } }

/*Gallery Block*/
.gallery img {
  width: 100%; }

.gallery .ts-h2 {
  color: #990ae3;
  margin: 0.6666666666666667em 0 0 0; }

.gallery p {
  margin-bottom: 1em; }

.Main__Col .Page__Content__Wrapper .Gallery__BlocksPage .Page__Block {
  height: auto; }

.Main__Col .Page__Block .Gallery__Block {
  box-shadow: none; }

.block-100 .Page__Block .Gallery__Block .gallery-image-container, block-75 .Page__Block .Gallery__Block .gallery-image-container {
  width: 100%;
  height: 262px;
  float: none; }

.block-100 .Page__Block .Gallery__Block .gallery-content-container, block-75 .Page__Block .Gallery__Block .gallery-content-container {
  float: none;
  max-width: none; }
  .block-100 .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content, block-75 .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
    display: none; }
  .block-100 .Page__Block .Gallery__Block .gallery-content-container .ts-link, .block-100 .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, block-75 .Page__Block .Gallery__Block .gallery-content-container .ts-link, block-75 .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
    max-width: calc(100% - 2rem); }

.Page__Block .Gallery__Block {
  height: 475px;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  /*.first-name {
        display: block;
        overflow: hidden;

        .Main__Col & {
            line-height: 1;
        }
    }*/ }
  .Page__Block .Gallery__Block .gallery-content-container {
    padding: 0 1rem 0 1rem; }
    .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
      display: none; }
    .Page__Block .Gallery__Block .gallery-content-container .ts-link, .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
      position: absolute;
      bottom: 1rem;
      max-width: calc(100% - 2rem); }
  .Page__Block .Gallery__Block .gallery-image-container {
    overflow: hidden;
    width: 100%;
    height: 262px;
    position: relative; }
    .Page__Block .Gallery__Block .gallery-image-container img {
      max-width: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%); }
  .Page__Block .Gallery__Block .ts-h2 {
    color: #990ae3;
    margin: 1rem 0 0.25rem 0;
    text-transform: uppercase;
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    padding-bottom: 0;
    border: 0; }
  .Main__Col .Page__Block .Gallery__Block .first-name, .Main__Col .Page__Block .Gallery__Block .last-name {
    line-height: 1; }
  .Page__Block .Gallery__Block .ts-h2 {
    overflow: hidden; }
  .Page__Block .Gallery__Block .ts-h2.two-lines {
    max-height: 60px;
    display: block; }
    .Page__Block .Gallery__Block .ts-h2.two-lines .first-name {
      white-space: inherit;
      text-overflow: inherit;
      position: relative; }
  .Page__Block .Gallery__Block .email {
    margin: 0.3125rem 0; }
  .Page__Block .Gallery__Block .designation {
    margin-bottom: 0;
    line-height: 1.1; }
  .Page__Block .Gallery__Block p:not(.designation) {
    margin-bottom: 0.625rem;
    font-size: 1rem; }
  .Page__Block .Gallery__Block .Profile__Image__Wrapper {
    float: left;
    width: 100%; }
  .Page__Block .Gallery__Block .Profile__Description__Wrapper {
    padding-top: 5px; }
  .Page__Block .Gallery__Block .Profile__Info_Wrapper {
    padding: 10px 30px; }
  .Page__Block .Gallery__Block .Profile__Contact__Info div:first-child:after {
    content: "|";
    margin-left: 10px; }
  .Page__Block .Gallery__Block .Profile__Contact__Info div:first-child {
    margin-right: 0px;
    padding-right: 10px; }
  .Page__Block .Gallery__Block .Profile__Contact__Info div {
    display: inline-block;
    font-size: 12px; }
  .Page__Block .Gallery__Block .See__More {
    text-align: right;
    position: static; }
    .Page__Block .Gallery__Block .See__More .See__More__Link {
      padding: 0 15px 15px;
      display: inline-block; }

.block-75 .Page__Block .Gallery__Block .ts-h2.two-lines, .block-25 .Page__Block .Gallery__Block .ts-h2.two-lines {
  max-height: 90px; }

.Right__Col .Page__Block .Gallery__Block .first-name,
.Right__Col .Page__Block .Gallery__Block .last-name {
  display: inline-block; }

.Right__Col .Page__Block .Gallery__Block .first-name:after {
  content: " "; }

.Size8 .Gallery__Block .Profile__Image__Wrapper, .block-75 .Gallery__Block .Profile__Image__Wrapper {
  width: calc(50% - 15px); }

.Size8 .Gallery__Block .Profile__Info_Wrapper, .block-75 .Gallery__Block .Profile__Info_Wrapper {
  width: calc(100% - 50% + 15px); }

.Size8 .Gallery__Block .Profile__Contact__Info, .block-75 .Gallery__Block .Profile__Contact__Info {
  display: block;
  margin-top: 15px; }
  .Size8 .Gallery__Block .Profile__Contact__Info div, .block-75 .Gallery__Block .Profile__Contact__Info div {
    display: block;
    margin-bottom: 2px; }
    .Size8 .Gallery__Block .Profile__Contact__Info div:first-child:after, .block-75 .Gallery__Block .Profile__Contact__Info div:first-child:after {
      content: ""; }

.Size12 .Gallery__Block .Profile__Image__Wrapper, .block-100 .Gallery__Block .Profile__Image__Wrapper {
  width: calc(33.33333333% - 20px); }

.Size12 .Gallery__Block .Profile__Info_Wrapper, .block-100 .Gallery__Block .Profile__Info_Wrapper {
  width: calc(66.66666667% + 20px); }

.Size8 .Gallery__Block .Profile__Description, .Size12 .Gallery__Block .Profile__Description,
.block-75 .Gallery__Block .Profile__Description, .block-100 .Gallery__Block .Profile__Description {
  max-height: 105px;
  overflow: hidden;
  margin-bottom: 22px; }

.Size8 .Gallery__Block .Profile__Info_Wrapper, .Size12 .Gallery__Block .Profile__Info_Wrapper,
.block-75 .Gallery__Block .Profile__Info_Wrapper, .block-100 .Gallery__Block .Profile__Info_Wrapper {
  float: left;
  padding: 15px 30px;
  overflow: hidden; }
  .Size8 .Gallery__Block .Profile__Info_Wrapper h3, .Size12 .Gallery__Block .Profile__Info_Wrapper h3,
  .block-75 .Gallery__Block .Profile__Info_Wrapper h3, .block-100 .Gallery__Block .Profile__Info_Wrapper h3 {
    margin: 5px 0 10px;
    color: #000; }

.Size8 .Gallery__Block .See__More__Link, .Size12 .Gallery__Block .See__More__Link,
.block-75 .Gallery__Block .See__More__Link, .block-100 .Gallery__Block .See__More__Link {
  color: #000; }

.Size4 .Gallery__Block,
.block-25 .Gallery__Block,
.Right__Col .Gallery__Block,
.Main__Right__Col .Gallery__Block,
.Big__Blocks .Gallery__Block {
  padding: 0; }
  .Size4 .Gallery__Block .Profile__Info_Wrapper,
  .block-25 .Gallery__Block .Profile__Info_Wrapper,
  .Right__Col .Gallery__Block .Profile__Info_Wrapper,
  .Main__Right__Col .Gallery__Block .Profile__Info_Wrapper,
  .Big__Blocks .Gallery__Block .Profile__Info_Wrapper {
    position: absolute;
    bottom: 0;
    background-color: #272727;
    width: 100%;
    color: #fff;
    opacity: 0.8; }
    .Size4 .Gallery__Block .Profile__Info_Wrapper h3,
    .block-25 .Gallery__Block .Profile__Info_Wrapper h3,
    .Right__Col .Gallery__Block .Profile__Info_Wrapper h3,
    .Main__Right__Col .Gallery__Block .Profile__Info_Wrapper h3,
    .Big__Blocks .Gallery__Block .Profile__Info_Wrapper h3 {
      margin: 10px 0;
      color: #fff; }
    .Size4 .Gallery__Block .Profile__Info_Wrapper .Profile__Desig, .Size4 .Gallery__Block .Profile__Info_Wrapper .Profile__Description__Wrapper, .Size4 .Gallery__Block .Profile__Info_Wrapper .See__More, .Size4 .Gallery__Block .Profile__Info_Wrapper .Profile__Contact__Info,
    .block-25 .Gallery__Block .Profile__Info_Wrapper .Profile__Desig,
    .block-25 .Gallery__Block .Profile__Info_Wrapper .Profile__Description__Wrapper,
    .block-25 .Gallery__Block .Profile__Info_Wrapper .See__More,
    .block-25 .Gallery__Block .Profile__Info_Wrapper .Profile__Contact__Info,
    .Right__Col .Gallery__Block .Profile__Info_Wrapper .Profile__Desig,
    .Right__Col .Gallery__Block .Profile__Info_Wrapper .Profile__Description__Wrapper,
    .Right__Col .Gallery__Block .Profile__Info_Wrapper .See__More,
    .Right__Col .Gallery__Block .Profile__Info_Wrapper .Profile__Contact__Info,
    .Main__Right__Col .Gallery__Block .Profile__Info_Wrapper .Profile__Desig,
    .Main__Right__Col .Gallery__Block .Profile__Info_Wrapper .Profile__Description__Wrapper,
    .Main__Right__Col .Gallery__Block .Profile__Info_Wrapper .See__More,
    .Main__Right__Col .Gallery__Block .Profile__Info_Wrapper .Profile__Contact__Info,
    .Big__Blocks .Gallery__Block .Profile__Info_Wrapper .Profile__Desig,
    .Big__Blocks .Gallery__Block .Profile__Info_Wrapper .Profile__Description__Wrapper,
    .Big__Blocks .Gallery__Block .Profile__Info_Wrapper .See__More,
    .Big__Blocks .Gallery__Block .Profile__Info_Wrapper .Profile__Contact__Info {
      display: none; }
  .Size4 .Gallery__Block:hover .Profile__Desig,
  .block-25 .Gallery__Block:hover .Profile__Desig,
  .Right__Col .Gallery__Block:hover .Profile__Desig,
  .Main__Right__Col .Gallery__Block:hover .Profile__Desig,
  .Big__Blocks .Gallery__Block:hover .Profile__Desig {
    display: block; }
  .Size4 .Gallery__Block:hover .Profile__Contact__Info,
  .block-25 .Gallery__Block:hover .Profile__Contact__Info,
  .Right__Col .Gallery__Block:hover .Profile__Contact__Info,
  .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info,
  .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info {
    display: block;
    margin-top: 15px; }
    .Size4 .Gallery__Block:hover .Profile__Contact__Info div,
    .block-25 .Gallery__Block:hover .Profile__Contact__Info div,
    .Right__Col .Gallery__Block:hover .Profile__Contact__Info div,
    .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info div,
    .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info div {
      display: block;
      margin-bottom: 2px; }
      .Size4 .Gallery__Block:hover .Profile__Contact__Info div:first-child:after,
      .block-25 .Gallery__Block:hover .Profile__Contact__Info div:first-child:after,
      .Right__Col .Gallery__Block:hover .Profile__Contact__Info div:first-child:after,
      .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info div:first-child:after,
      .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info div:first-child:after {
        content: ""; }
    .Size4 .Gallery__Block:hover .Profile__Contact__Info a, .Size4 .Gallery__Block:hover .Profile__Contact__Info .Block__Share,
    .block-25 .Gallery__Block:hover .Profile__Contact__Info a,
    .block-25 .Gallery__Block:hover .Profile__Contact__Info .Block__Share,
    .Right__Col .Gallery__Block:hover .Profile__Contact__Info a,
    .Right__Col .Gallery__Block:hover .Profile__Contact__Info .Block__Share,
    .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info a,
    .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info .Block__Share,
    .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info a,
    .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info .Block__Share {
      color: #fff; }
      .Size4 .Gallery__Block:hover .Profile__Contact__Info a:hover, .Size4 .Gallery__Block:hover .Profile__Contact__Info .Block__Share:hover,
      .block-25 .Gallery__Block:hover .Profile__Contact__Info a:hover,
      .block-25 .Gallery__Block:hover .Profile__Contact__Info .Block__Share:hover,
      .Right__Col .Gallery__Block:hover .Profile__Contact__Info a:hover,
      .Right__Col .Gallery__Block:hover .Profile__Contact__Info .Block__Share:hover,
      .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info a:hover,
      .Main__Right__Col .Gallery__Block:hover .Profile__Contact__Info .Block__Share:hover,
      .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info a:hover,
      .Big__Blocks .Gallery__Block:hover .Profile__Contact__Info .Block__Share:hover {
        color: #fff;
        text-decoration: underline; }
  .Size4 .Gallery__Block:hover .See__More,
  .block-25 .Gallery__Block:hover .See__More,
  .Right__Col .Gallery__Block:hover .See__More,
  .Main__Right__Col .Gallery__Block:hover .See__More,
  .Big__Blocks .Gallery__Block:hover .See__More {
    display: block;
    bottom: 15px;
    right: 15px;
    position: absolute;
    width: 100%;
    color: #fff;
    z-index: 9; }
  .Size4 .Gallery__Block:hover .Profile__Info_Wrapper,
  .block-25 .Gallery__Block:hover .Profile__Info_Wrapper,
  .Right__Col .Gallery__Block:hover .Profile__Info_Wrapper,
  .Main__Right__Col .Gallery__Block:hover .Profile__Info_Wrapper,
  .Big__Blocks .Gallery__Block:hover .Profile__Info_Wrapper {
    top: 0; }
  .Size4 .Gallery__Block .See__More__Link,
  .block-25 .Gallery__Block .See__More__Link,
  .Right__Col .Gallery__Block .See__More__Link,
  .Main__Right__Col .Gallery__Block .See__More__Link,
  .Big__Blocks .Gallery__Block .See__More__Link {
    color: #fff; }
    .Size4 .Gallery__Block .See__More__Link:hover,
    .block-25 .Gallery__Block .See__More__Link:hover,
    .Right__Col .Gallery__Block .See__More__Link:hover,
    .Main__Right__Col .Gallery__Block .See__More__Link:hover,
    .Big__Blocks .Gallery__Block .See__More__Link:hover {
      text-decoration: none; }
  .Size4 .Gallery__Block .Profile__Image__Wrapper,
  .block-25 .Gallery__Block .Profile__Image__Wrapper,
  .Right__Col .Gallery__Block .Profile__Image__Wrapper,
  .Main__Right__Col .Gallery__Block .Profile__Image__Wrapper,
  .Big__Blocks .Gallery__Block .Profile__Image__Wrapper {
    width: 100%; }

.ts-overlay-gallery-block .ts-overlay__inner .profile-image {
  width: 100%;
  display: block;
  margin-bottom: 1.25rem; }

.ts-overlay-gallery-block .ts-overlay__inner .position {
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase; }

.ts-overlay-gallery-block .ts-overlay__inner .preamble {
  font-size: 1.5rem; }

.ts-overlay-gallery-block .ts-overlay__inner p {
  font-size: 1.25rem;
  margin-top: 1.5rem; }

.ts-overlay-gallery-block .ts-overlay__inner .ts-button {
  margin: 2rem 0 0;
  position: relative;
  white-space: normal;
  max-width: 100%; }
  .ts-overlay-gallery-block .ts-overlay__inner .ts-button svg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%); }
  .ts-overlay-gallery-block .ts-overlay__inner .ts-button span {
    margin-left: 25px;
    display: block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap; }

@media (min-width: 48em) {
  .ts-overlay-gallery-block .ts-overlay__inner {
    max-width: 52.1875rem; }
    .ts-overlay-gallery-block .ts-overlay__inner .profile-image {
      margin-bottom: 1.875rem; }
  .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
    margin-top: 1em; }
  .block-100 .Page__Block .Gallery__Block .gallery-image-container {
    width: 440px;
    height: 440px;
    float: left; }
  .block-100 .Page__Block .Gallery__Block .gallery-content-container {
    float: left;
    max-width: calc(100% - 440px); }
    .block-100 .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
      display: block;
      max-height: 250px;
      overflow: hidden;
      margin-top: 1em; }
      .block-100 .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content p {
        white-space: normal; }
    .block-100 .Page__Block .Gallery__Block .gallery-content-container .ts-link, .block-100 .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
      max-width: calc(100% - 440px - 2rem); }
  /* Specific styles for bigBlocks > galleryBlock (on startpage)... */
  .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-image-container {
    width: 440px;
    height: 440px;
    float: left; }
  .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container {
    float: left;
    max-width: calc(100% - 440px); }
    .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
      display: block;
      max-height: 250px;
      overflow: hidden; }
      .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content p {
        white-space: normal; }
    .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .ts-link, .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
      max-width: calc(100% - 440px - 2rem); } }

@media only screen and (min-width: 977px) {
  .block-75 .Page__Block .Gallery__Block .gallery-image-container {
    width: 440px;
    height: 440px;
    float: left; }
  .block-75 .Page__Block .Gallery__Block .gallery-content-container {
    float: left;
    max-width: calc(100% - 440px); }
    .block-75 .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
      display: block;
      max-height: 250px;
      overflow: hidden; }
      .block-75 .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content p {
        white-space: normal; }
    .block-75 .Page__Block .Gallery__Block .gallery-content-container .ts-link, .block-75 .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
      max-width: calc(100% - 440px - 2rem); }
  /* Specific styles for bigBlocks > galleryBlock (on startpage)... */
  .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-image-container {
    width: 440px;
    height: 440px;
    float: left; }
  .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container {
    float: left;
    max-width: calc(100% - 440px); }
    .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content {
      display: block;
      max-height: 250px;
      overflow: hidden; }
      .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .Gallery__Block--lightbox-content p {
        white-space: normal; }
    .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .ts-link, .galleryBlock-one_third_startpage .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
      max-width: calc(100% - 440px - 2rem); } }

@media only screen and (max-width: 414px) {
  .gallery-xxs-full {
    width: 100%; } }

.gallery-xxs-full p.designation {
  margin-top: 0;
  font-size: 16px;
  display: block !important; }

.gallery-xxs-full .email {
  display: block !important; }

.gallery-xxs-full .gallery-email-link {
  display: block !important; }

.gallery-xxs-full .ts-link, .gallery-xxs-full .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .gallery-xxs-full .gallery-email-link, .gallery-xxs-full .email a, .gallery-xxs-full .email .Block__Share {
  color: #222; }

.gallery-xxs-full .ts-link:hover, .gallery-xxs-full .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover, .Page__Block .Gallery__Block .gallery-content-container .gallery-xxs-full .gallery-email-link:hover, .gallery-xxs-full .email a:hover, .gallery-xxs-full .email .Block__Share:hover {
  color: #990ae3; }

.gallery-xxs-full .epi-editContainer {
  margin: 0; }

.gallery-xxs-full p {
  display: none !important; }

/*@media only screen and (max-width: 768px) {
    .Main__Col .Page__Block .Gallery__Block {
        .first-name {
            white-space: nowrap;
            text-overflow: ellipsis;
        }
    }
}*/
iframe {
  border: 0;
  width: 100%;
  /*min-height:100%;*/ }

.News__Kit__List .ts-symbol {
  width: 40px;
  height: 40px;
  position: absolute; }

.News__Kit__List .item-title {
  margin-left: 50px;
  width: 100%; }

.News__Flow__Wrapper, .SearchPage__Wrapper {
  display: none;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  /*.Blog__Post__Comments__Icon{
        text-align:right;
    }*/ }
  .News__Flow__Wrapper .blog-image, .SearchPage__Wrapper .blog-image {
    width: 70%; }
    .News__Flow__Wrapper .blog-image img, .SearchPage__Wrapper .blog-image img {
      margin-top: 0.65rem; }
  .News__Flow__Wrapper .blog-content, .SearchPage__Wrapper .blog-content {
    margin-top: 0.65rem; }
  .News__Flow__Wrapper .Comments__Icon, .SearchPage__Wrapper .Comments__Icon {
    float: right; }
  .News__Flow__Wrapper .News__ViewCount, .News__Flow__Wrapper .ItemProperties, .SearchPage__Wrapper .News__ViewCount, .SearchPage__Wrapper .ItemProperties {
    float: right;
    text-align: right;
    position: relative;
    display: inline;
    color: #a4a4a4; }
    .News__Flow__Wrapper .News__ViewCount span, .News__Flow__Wrapper .ItemProperties span, .SearchPage__Wrapper .News__ViewCount span, .SearchPage__Wrapper .ItemProperties span {
      display: inline; }
  .News__Flow__Wrapper .ItemProperties, .SearchPage__Wrapper .ItemProperties {
    min-width: 150px;
    width: 150px;
    overflow: hidden;
    white-space: nowrap; }
    .News__Flow__Wrapper .ItemProperties span, .SearchPage__Wrapper .ItemProperties span {
      float: right; }
  .News__Flow__Wrapper .News__Flow__Wrapper--Top, .SearchPage__Wrapper .News__Flow__Wrapper--Top {
    color: #a0a0a0;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    text-transform: uppercase;
    font-size: 0.75em; }
  .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 {
    display: block;
    width: 100%; }
    .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--date, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--date {
      display: inline;
      padding-right: 10px; }
    .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--author, .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Item, .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Category, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--author, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Item, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Category {
      display: inline;
      color: #a4a4a4;
      font-size: 12px;
      font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }
    .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--author-item, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--author-item {
      display: inline; }
    .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--author-item:not(:empty), .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--author-item:not(:empty) {
      margin-right: 10px; }
    .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Item:after, .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Category:after, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Item:after, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Category:after {
      content: ", "; }
    .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Item:last-of-type:after, .News__Flow__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Category:last-of-type:after, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Item:last-of-type:after, .SearchPage__Wrapper .News__Flow__Wrapper--Header__Level2 .News__Flow__Wrapper--Category:last-of-type:after {
      content: ""; }
  .News__Flow__Wrapper .News__Flow__Wrapper--content, .SearchPage__Wrapper .News__Flow__Wrapper--content {
    flex: 1;
    display: block;
    width: 100%; }
    .News__Flow__Wrapper .News__Flow__Wrapper--content .News__Flow__Wrapper--date, .SearchPage__Wrapper .News__Flow__Wrapper--content .News__Flow__Wrapper--date {
      font-size: 0.75em;
      font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif; }
    .News__Flow__Wrapper .News__Flow__Wrapper--content h3, .SearchPage__Wrapper .News__Flow__Wrapper--content h3 {
      margin-top: 5px;
      margin-bottom: 0px; }
    .News__Flow__Wrapper .News__Flow__Wrapper--content .EventDate, .SearchPage__Wrapper .News__Flow__Wrapper--content .EventDate {
      font-size: 1.5em;
      margin-bottom: 30px; }
    .News__Flow__Wrapper .News__Flow__Wrapper--content h4, .SearchPage__Wrapper .News__Flow__Wrapper--content h4 {
      font-size: 1.5em;
      font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; }
  .News__Flow__Wrapper .News__Flow__Wrapper--image--Wrapper, .SearchPage__Wrapper .News__Flow__Wrapper--image--Wrapper {
    display: block;
    width: 33.333333%;
    max-width: 200px;
    overflow: hidden; }
    .News__Flow__Wrapper .News__Flow__Wrapper--image--Wrapper .News__Flow__Wrapper--image, .SearchPage__Wrapper .News__Flow__Wrapper--image--Wrapper .News__Flow__Wrapper--image {
      display: inline-block;
      flex: 1;
      float: left;
      padding-right: 25px;
      width: 245px; }
  .News__Flow__Wrapper .Newsitem__Preamble, .SearchPage__Wrapper .Newsitem__Preamble {
    display: block;
    text-align: left;
    margin-top: 9px; }
    .News__Flow__Wrapper .Newsitem__Preamble p, .SearchPage__Wrapper .Newsitem__Preamble p {
      word-break: break-word;
      display: inline; }
  .News__Flow__Wrapper .Newsitem__Link, .SearchPage__Wrapper .Newsitem__Link {
    display: inline;
    text-align: right;
    text-decoration: underline;
    white-space: pre; }

/*.SearchPage__Wrapper,.News__Flow__Wrapper{
    display:none;
}*/
.News__Block__Wrapper {
  overflow: hidden;
  position: relative; }
  .News__Block__Wrapper .hide-newslist {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white; }
  .News__Block__Wrapper .PageType {
    margin-bottom: 0; }
  .News__Block__Wrapper .News__Block__Preamble {
    font-size: 0.875em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; }
  .News__Block__Wrapper .News__Block__List .media-left {
    padding-right: 0; }
    .News__Block__Wrapper .News__Block__List .media-left a, .News__Block__Wrapper .News__Block__List .media-left .Block__Share {
      width: 140px;
      position: relative;
      height: 80px;
      overflow: hidden;
      margin-right: 10px;
      margin-bottom: 5px; }
    .News__Block__Wrapper .News__Block__List .media-left img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      height: auto; }
    .News__Block__Wrapper .News__Block__List .media-left + .media-body {
      display: table-cell; }
      .News__Block__Wrapper .News__Block__List .media-left + .media-body .media-heading {
        white-space: normal;
        /*   display: -webkit-box;
                    -webkit-line-clamp: 3;
                    -webkit-box-orient: vertical;*/ }
  .News__Block__Wrapper .News__Block__List .media-body {
    display: block;
    width: 100%; }
  .News__Block__Wrapper .News__Block__List .media-heading {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }

.Main__Wrapper .Big__Blocks .block-100 .News__Block__12, .Main__Wrapper .Bottom__Content .block-100 .News__Block__12 {
  height: auto; }

.Big__Blocks .block-100 .News__Block__12 .News__Block__List, .Bottom__Content .block-100 .News__Block__12 .News__Block__List {
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap; }
  .Big__Blocks .block-100 .News__Block__12 .News__Block__List li, .Bottom__Content .block-100 .News__Block__12 .News__Block__List li {
    width: 50%;
    padding-right: 30px;
    margin-bottom: 30px; }
    .Big__Blocks .block-100 .News__Block__12 .News__Block__List li:nth-child(even), .Bottom__Content .block-100 .News__Block__12 .News__Block__List li:nth-child(even) {
      padding-right: 0; }
    .Big__Blocks .block-100 .News__Block__12 .News__Block__List li:nth-child(3), .Big__Blocks .block-100 .News__Block__12 .News__Block__List li:nth-child(4), .Bottom__Content .block-100 .News__Block__12 .News__Block__List li:nth-child(3), .Bottom__Content .block-100 .News__Block__12 .News__Block__List li:nth-child(4) {
      display: block;
      margin-bottom: 0; }

.Big__Blocks .block-25, .Bottom__Content .block-25 {
  /*.News__Block__PageType,*/ }
  .Big__Blocks .block-25 .Views__Icon,
  .Big__Blocks .block-25 .Comments__Icon, .Bottom__Content .block-25 .Views__Icon,
  .Bottom__Content .block-25 .Comments__Icon {
    display: none !important; }

.Right__Col {
  padding-top: 0; }

.Right__Col .News__Block__12 li,
.Main__Right__Col .News__Block__12 li {
  float: none;
  width: auto;
  padding-right: 5px; }

.Right__Col .List__Block ul,
.Main__Right__Col .List__Block ul {
  height: auto; }

.Right__Col .List__Block li,
.Main__Right__Col .List__Block li {
  margin: 0;
  padding-right: 0;
  padding-left: 0; }

.Right__Col .updates-status,
.Right__Col .media-left,
.Main__Right__Col .updates-status,
.Main__Right__Col .media-left {
  display: none; }

@media (min-width: 62em) {
  .Right__Col .List__Block ul {
    border-color: rgba(0, 0, 0, 0.1); } }

/*For subscription form*/
.subscribeInfo {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  padding-right: 10px;
  padding-top: 3px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px; }

/* Hide the browser's default checkbox */
.subscribeInfo input {
  position: absolute;
  opacity: 0;
  cursor: pointer; }

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border: solid black;
  border-width: 1px; }

/* On mouse-over, add a grey background color */
.subscribeInfo:hover input ~ .checkmark {
  background-color: #ccc; }

/* When the checkbox is checked, add a blue background */
.subscribeInfo input:checked ~ .checkmark {
  background-color: white; }

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none; }

/* Show the checkmark when checked */
.subscribeInfo input:checked ~ .checkmark:after {
  display: block; }

/* Style the checkmark/indicator */
.subscribeInfo .checkmark:after {
  left: 8px;
  top: 3px;
  width: 8px;
  height: 13px;
  border: solid #c0f;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.Quote__Block {
  position: relative; }
  .Quote__Block.blue .White__Block {
    background: #9706e2; }
  .Quote__Block.red .White__Block {
    background: #E11644; }
  .Quote__Block.green .White__Block {
    background: green; }
  .Quote__Block.purple .White__Block, .Quote__Block.Purple .White__Block {
    background: #990ae3; }
  .Quote__Block.white .White__Block, .Quote__Block.White .White__Block, .Quote__Block.noBg .White__Block {
    background: #fff;
    color: #000; }
    .Quote__Block.white .White__Block .Quote__Heading, .Quote__Block.White .White__Block .Quote__Heading, .Quote__Block.noBg .White__Block .Quote__Heading {
      color: #000; }
    .Quote__Block.white .White__Block .StandardButton, .Quote__Block.White .White__Block .StandardButton, .Quote__Block.noBg .White__Block .StandardButton {
      background: #fff; }
  .Quote__Block .imgBG {
    width: 100%;
    height: 100%;
    max-width: 100%; }
  .Quote__Block .White__Block {
    min-height: 340px;
    background-size: cover; }
  .Quote__Block .Quote__Heading {
    margin-bottom: 20px;
    padding-bottom: 5px;
    color: #fff;
    font-size: 25px;
    line-height: 30px;
    height: 76%;
    overflow: hidden; }
  .Quote__Block .StandardButton {
    position: absolute;
    bottom: 30px; }

.Share__Block__Wrapper {
  height: 440px;
  position: relative;
  background-color: #fff;
  background-image: url("/Assets/Images/share-bloc-background.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  line-height: 1; }
  .Share__Block__Wrapper .Share__Block__Header {
    position: relative;
    width: 100%;
    height: 24px; }
  .Share__Block__Wrapper .ts-h2 {
    position: absolute;
    margin: 0;
    bottom: 0;
    line-height: 1;
    text-transform: none; }
  .Share__Block__Wrapper .Share__Symbol {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block;
    font-size: 0.75em; }
  .Share__Block__Wrapper .ts-link, .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Share__Block__Wrapper .gallery-email-link {
    color: #fff;
    position: absolute;
    bottom: 20px; }
    .Share__Block__Wrapper .ts-link:hover, .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover, .Page__Block .Gallery__Block .gallery-content-container .Share__Block__Wrapper .gallery-email-link:hover {
      color: #990ae3; }
      .Share__Block__Wrapper .ts-link:hover .ts-symbol, .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link:hover .ts-symbol, .Page__Block .Gallery__Block .gallery-content-container .Share__Block__Wrapper .gallery-email-link:hover .ts-symbol {
        fill: #990ae3; }
    .Share__Block__Wrapper .ts-link .ts-symbol, .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link .ts-symbol, .Page__Block .Gallery__Block .gallery-content-container .Share__Block__Wrapper .gallery-email-link .ts-symbol {
      fill: #fff; }
  .Share__Block__Wrapper .Share__Block__Content {
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%, -33%);
    width: 100%;
    padding: 0 30px; }
  .Share__Block__Wrapper .Share__Refresh__Time {
    font-size: 0.75em;
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 20px; }
  .Share__Block__Wrapper .Share__Changes__Wrap {
    font-size: 1.5em;
    text-align: center;
    letter-spacing: 1px; }
    .Share__Block__Wrapper .Share__Changes__Wrap .ts-symbol {
      display: none; }
    .Share__Block__Wrapper .Share__Changes__Wrap span {
      display: inline-block;
      text-align: right; }
    .Share__Block__Wrapper .Share__Changes__Wrap .Share__Change__Price {
      text-align: center; }
  .Share__Block__Wrapper .Change__Trend__Icon {
    display: inline-block;
    width: 20px;
    height: 20px; }
  .Share__Block__Wrapper .Share__Price {
    font-size: 3.4375rem;
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    text-align: center;
    margin-bottom: 20px; }
  .Share__Block__Wrapper.Positive .ts-symbol--arrow-up {
    display: inline-block; }
  .Share__Block__Wrapper.Positive .Share__Change__Price:before, .Share__Block__Wrapper.Positive .Share__Change__Percent:before {
    content: "+"; }
  .Share__Block__Wrapper.Negative .ts-symbol--arrow-down {
    display: inline-block; }
  .Share__Block__Wrapper.NoChange .ts-symbol--arrow-right {
    display: inline-block; }

.Full__Col .Share__Block__Wrapper div.BlockTitle {
  color: #000; }

@media (min-width: 48em) {
  .Share__Block__Wrapper .Share__Refresh__Time {
    bottom: 25px;
    right: 25px; }
  .Share__Block__Wrapper .ts-link, .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Share__Block__Wrapper .gallery-email-link {
    bottom: 25px; } }

@media (min-width: 62em) {
  .Share__Block__Wrapper {
    padding-bottom: 0; } }

@media (min-width: 75em) {
  .Share__Block__Wrapper .Share__Refresh__Time {
    bottom: 30px;
    right: 30px; }
  .Share__Block__Wrapper .ts-link, .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Share__Block__Wrapper .gallery-email-link {
    bottom: 30px; } }

/*Social icons*/
.Social__Network__Wrapper {
  margin-bottom: 10px; }
  .Social__Network__Wrapper h3 {
    margin-bottom: 25px; }

.Social__Network__Icons {
  margin-top: 50px;
  text-align: center; }
  .Social__Network__Icons > [class*='col-'] {
    text-align: center;
    margin-bottom: 15px;
    padding: 0 5px; }
  .Social__Network__Icons .FollowUs__Title {
    display: none; }

.Social__Icon {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  background-color: #000;
  vertical-align: middle;
  font-size: 26px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 10px;
  margin-right: 10px;
  /*margin-left: 10px;*/
  text-align: center; }
  .Social__Icon a, .Social__Icon .Block__Share {
    display: inline-block;
    margin: 0 auto; }
  .Social__Icon.fb:hover {
    background-color: #4a6eae;
    color: #fff; }
  .Social__Icon.tw:hover {
    background-color: #6fb8e4;
    color: #fff; }
  .Social__Icon.yt:hover {
    background-color: #da2f12;
    color: #fff; }
  .Social__Icon.gp:hover {
    background-color: #e86248;
    color: #fff; }
  .Social__Icon.li:hover {
    background-color: #007bb6;
    color: #fff; }

.Small__Icons .Social__Icon {
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  margin-right: 5px;
  margin-left: 0px; }

.Small__Icons .Social__Network__Icons {
  float: right;
  margin-top: 50px; }

.Small__Icons .FollowUs__Title {
  display: inline-block;
  margin: 0 10px 0 0; }

.col-xs-12.Small__Icons .Social__Network__Icons {
  text-align: left;
  float: none; }
  @media (min-width: 48em) {
    .col-xs-12.Small__Icons .Social__Network__Icons {
      text-align: right; } }

.Teaser--Block {
  position: relative;
  height: 440px;
  overflow: hidden;
  color: white;
  /*margin: 15px 0;*/
  background-color: #9706e2; }
  .Teaser--Block .Teaser--Wrapper {
    height: inherit; }
    .Teaser--Block .Teaser--Wrapper > .row {
      height: inherit; }
  .Teaser--Block .Teaser__Image__Wrapper {
    background-size: cover;
    height: inherit;
    float: right;
    padding: 0; }
    .Teaser--Block .Teaser__Image__Wrapper img {
      margin: 0; }
  .Teaser--Block .Teaser__Heading__Wrapper {
    padding: 25px 20px;
    color: white;
    font-size: 44px;
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    text-transform: uppercase; }
  .Teaser--Block .Teaser__Description__Wrapper {
    padding: 10px 20px; }
  .Teaser--Block .Teaser__Button {
    position: absolute;
    left: 1.5625em;
    bottom: 1.5625em; }
  .Teaser--Block .ts-button {
    margin: 0; }
  .Teaser--Block .colour-purple {
    color: #990ae3; }
  .Teaser--Block .colour-white {
    color: #fff; }
  .Teaser--Block .colour-black {
    color: #000; }

/*.block-100 .Teaser__Info__Wrapper {
    width: 50%;
}*/
.block-75 .Teaser--Block .Teaser__Heading__Wrapper {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 24px;
  /*padding: 0;*/ }

.block-75 .Teaser--Block .Teaser__Description__Wrapper {
  padding: 25px 20px; }

.block-75 .Teaser--Block .Teaser__Image__Wrapper {
  width: 100%; }

.block-75 .Teaser--Block .Teaser__Info__Wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*padding: 15px;*/ }

.block-100 .Teaser__Block .Teaser__Image__Wrapper img, block-50 .Teaser__Block .Teaser__Image__Wrapper img {
  width: 100%; }

.block-100 .Teaser__Block .Teaser__Description__Wrapper, block-50 .Teaser__Block .Teaser__Description__Wrapper {
  margin-left: 50%; }

.block-100 .Teaser--Block .Teaser__Info__Wrapper {
  position: absolute; }

.block-100 .Teaser--Block .Teaser__Heading__Wrapper {
  font-size: 1.5em; }

@media (min-width: 48em) {
  .block-100 .Teaser--Block .Teaser__Info__Wrapper {
    position: inherit; } }

@media (min-width: 62em) {
  .block-100 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 44px; } }

.block-25 .Teaser--Block .Teaser__Heading__Wrapper,
.Right__Col .Teaser--Block .Teaser__Heading__Wrapper,
.Main__Right__Col .Teaser--Block .Teaser__Heading__Wrapper {
  width: 100%;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  padding: 0;
  line-height: 1; }

.block-25 .Teaser--Block .Teaser__Description__Wrapper,
.Right__Col .Teaser--Block .Teaser__Description__Wrapper,
.Main__Right__Col .Teaser--Block .Teaser__Description__Wrapper {
  /*display: none;*/ }

.block-25 .Teaser--Block .Teaser__Image__Wrapper,
.Right__Col .Teaser--Block .Teaser__Image__Wrapper,
.Main__Right__Col .Teaser--Block .Teaser__Image__Wrapper {
  width: 100%; }

.block-25 .Teaser--Block .Teaser__Info__Wrapper,
.Right__Col .Teaser--Block .Teaser__Info__Wrapper,
.Main__Right__Col .Teaser--Block .Teaser__Info__Wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5625em; }

.Right__Col .Teaser--Block,
.Main__Right__Col .Teaser--Block {
  margin-bottom: 2.5rem; }

@media only screen and (min-width: 62em) {
  /*.col-md-4.Main__Right__Col {*/
  .Right__Col .Teaser--Block,
  .Main__Right__Col .Teaser--Block {
    height: 350px; }
  .Right__Col .Block__Row .col-sm-4, .Right__Col .Block__Row .col-sm-6, .Right__Col .Block__Row .col-sm-8, .Right__Col .Block__Row .col-sm-12,
  .Main__Right__Col .Block__Row .col-sm-4,
  .Main__Right__Col .Block__Row .col-sm-6,
  .Main__Right__Col .Block__Row .col-sm-8,
  .Main__Right__Col .Block__Row .col-sm-12 {
    /*width:100%;*/ }
  .Right__Col .Block__Row .Teaser--Block,
  .Main__Right__Col .Block__Row .Teaser--Block {
    width: 100%;
    height: 350px; }
    .Right__Col .Block__Row .Teaser--Block img,
    .Main__Right__Col .Block__Row .Teaser--Block img {
      height: 100%; }
    .Right__Col .Block__Row .Teaser--Block .Teaser__Description__Wrapper,
    .Main__Right__Col .Block__Row .Teaser--Block .Teaser__Description__Wrapper {
      display: none; } }

/*.Right__Col .block-100, .Right__Col .block-50, .block-25 {
    .Teaser__Description__Wrapper {
        width: 100%;
        margin-top: 15px;
        margin-left: 0;
}
        img {
            height: 64px;
            width: 64px;
        }
    
}*/
.Tweet__Feeds__Block {
  position: relative; }
  .Tweet__Feeds__Block .Small__Icon {
    margin-left: 15px; }
  .Tweet__Feeds__Block h3.BlockTitle {
    margin-bottom: 10px; }

@media (min-width: 48em) {
  .col-sm-4 .Tweet__Feeds__Block .twitter-button {
    position: absolute;
    left: 1.5625em;
    bottom: 1.5625em; } }

/* Open Positions Page */
.Open__positions {
  width: 100%;
  overflow: hidden; }
  .Open__positions .openpositions-top {
    clear: both; }
  .Open__positions .openpositions-table {
    margin: 0 15px 0 15px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
    clear: both; }
  .Open__positions .GeneralFilter {
    min-height: 0;
    clear: both; }
    .Open__positions .GeneralFilter .GeneralFilter__ChosenFilters {
      border-bottom: none;
      border-top: 1px solid #e5e5e5; }
    .Open__positions .GeneralFilter .GeneralFilter__FilterDropdowns {
      border-bottom: none; }
  .Open__positions .GeneralFilter__loading {
    clear: both; }
  .Open__positions .Main__Left__Col {
    overflow: visible; }
  .Open__positions .Easy__Cruit__Login__Wrapper {
    font-size: 1rem;
    margin-bottom: 20px; }
    .Open__positions .Easy__Cruit__Login__Wrapper .Easy__Cruit__Login a, .Open__positions .Easy__Cruit__Login__Wrapper .Easy__Cruit__Login .Block__Share {
      color: #9706e2; }
    .Open__positions .Easy__Cruit__Login__Wrapper .Easy__Cruit__LinkedIn span {
      vertical-align: top;
      line-height: 22px; }
  .Open__positions .sortorder {
    float: right;
    display: inline-block;
    bottom: 30px; }
  .Open__positions .sortorder:after {
    content: "";
    display: inline-block;
    background-size: 10px 10px;
    background-position: right 20px center;
    width: 12px;
    height: 12px;
    top: 50%;
    transform: translateY(-50%);
    float: right;
    position: absolute;
    background: #fff url("/Assets/Images/Icons/icon-arrow--down.svg") no-repeat 0 0; }
  .Open__positions .sortorder.reverse:after {
    background: #fff url("/Assets/Images/Icons/icon-arrow--up.svg") no-repeat 0 0; }
  .Open__positions .GeneralFilter--Style2 {
    background: none; }
    .Open__positions .GeneralFilter--Style2 .GeneralFilter__Search {
      width: 100%; }
      .Open__positions .GeneralFilter--Style2 .GeneralFilter__Search .GeneralFilter__Search--MainInput:hover {
        color: #9706e2; }
    .Open__positions .GeneralFilter--Style2 .GeneralFilter__FilterDropdowns .dropdown--list {
      height: auto;
      max-height: 250px; }
  .Open__positions .FilterResult__Table {
    width: 100% !important;
    margin-top: 20px;
    display: table; }
    .Open__positions .FilterResult__Table thead td {
      position: relative; }
      .Open__positions .FilterResult__Table thead td h2 {
        font-size: 0.875rem;
        color: #990ae3;
        width: 110%;
        word-wrap: initial;
        height: inherit;
        display: block;
        overflow: hidden;
        text-transform: none;
        margin-bottom: 0; }
      .Open__positions .FilterResult__Table thead td span {
        width: 10%; }
    .Open__positions .FilterResult__Table thead td:hover {
      cursor: pointer; }
    .Open__positions .FilterResult__Table thead tr:nth-child(1) {
      background-color: white; }
    .Open__positions .FilterResult__Table td:first-of-type {
      min-width: 130px;
      max-width: 150px; }
    .Open__positions .FilterResult__Table td {
      padding: 0.7142857143em 1.4285714286em;
      min-width: 75px;
      max-width: 105px;
      overflow: hidden;
      text-overflow: ellipsis;
      font-size: 0.875rem;
      vertical-align: top; }
    .Open__positions .FilterResult__Table tr:hover {
      color: #9706e2; }
  .Open__positions .FilterResult__Table:hover {
    cursor: pointer; }
  .Open__positions .FilterResult__List {
    display: none;
    background-color: white;
    margin-top: 20px; }
    .Open__positions .FilterResult__List .FilterResult__List--item {
      padding: 20px; }
      .Open__positions .FilterResult__List .FilterResult__List--item .FilterResult__List--item--header {
        font-size: 26px;
        font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        text-transform: initial;
        padding-top: 10px;
        margin-bottom: 0px; }
      .Open__positions .FilterResult__List .FilterResult__List--item span {
        font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
        font-size: 0.75em; }
    .Open__positions .FilterResult__List .FilterResult__List--item--header:hover {
      cursor: pointer; }

/* Open Positions Block */
.Open__Positions__Block.White__Block::after {
  content: ' ';
  position: absolute;
  background-color: white;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 50px; }

.Open__Positions__Block .OpenList {
  height: auto;
  padding-top: 0.625rem; }
  .Open__Positions__Block .OpenList li {
    border-top: 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 0.875em;
    margin-top: 0;
    padding: 0.5rem;
    line-height: normal; }
    .Open__Positions__Block .OpenList li:last-child {
      border-bottom: 0; }
    .Open__Positions__Block .OpenList li a, .Open__Positions__Block .OpenList li .Block__Share {
      color: #222222; }
    .Open__Positions__Block .OpenList li a:hover, .Open__Positions__Block .OpenList li .Block__Share:hover {
      color: #9706e2; }
  .Open__Positions__Block .OpenList .top {
    font-weight: 700; }
  .Open__Positions__Block .OpenList .position-group {
    width: calc(100% - 212px);
    display: inline-block; }
    .Open__Positions__Block .OpenList .position-group .marker {
      width: 5%;
      float: left;
      min-height: 1px; }
    .Open__Positions__Block .OpenList .position-group .position {
      width: 60%;
      display: block;
      float: left;
      min-height: 1px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
    .Open__Positions__Block .OpenList .position-group a.position:hover, .Open__Positions__Block .OpenList .position-group .position.Block__Share:hover {
      color: #9706e2; }
    .Open__Positions__Block .OpenList .position-group .country {
      width: 15%;
      display: block;
      float: left;
      min-height: 1px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
    .Open__Positions__Block .OpenList .position-group .city {
      width: 25%;
      display: block;
      float: left;
      min-height: 1px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
  .Open__Positions__Block .OpenList .date-group {
    width: 212px;
    float: right; }
    .Open__Positions__Block .OpenList .date-group .publish-date {
      width: 105px;
      float: left;
      min-height: 1px;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
    .Open__Positions__Block .OpenList .date-group .closing-date {
      width: 105px;
      display: block;
      float: left;
      min-height: 1px;
      overflow: hidden;
      white-space: nowrap; }

.Open__Positions__Block .See__More__Positions {
  float: right;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 1; }
  .Open__Positions__Block .See__More__Positions:empty {
    display: none; }

.Open__Positions__Block .position-line {
  display: block; }

.block-100 .Open__Positions__Block .marker, .block-75 .Open__Positions__Block .marker, .block-50 .Open__Positions__Block .marker {
  display: none !important; }

.Right__Col .block-100 .Open__Positions__Block .marker {
  display: inline-block !important; }

.block-25 .Open__Positions__Block, .block-50 .Open__Positions__Block,
.Right__Col .block-100 .Open__Positions__Block,
.Main__Right__Col .Open__Positions__Block {
  width: 100% !important; }
  .block-25 .Open__Positions__Block li.top, .block-50 .Open__Positions__Block li.top,
  .Right__Col .block-100 .Open__Positions__Block li.top,
  .Main__Right__Col .Open__Positions__Block li.top {
    display: none !important; }
  .block-25 .Open__Positions__Block .OpenList .position-group, .block-50 .Open__Positions__Block .OpenList .position-group,
  .Right__Col .block-100 .Open__Positions__Block .OpenList .position-group,
  .Main__Right__Col .Open__Positions__Block .OpenList .position-group {
    width: 100%;
    display: block; }
    .block-25 .Open__Positions__Block .OpenList .position-group .marker, .block-50 .Open__Positions__Block .OpenList .position-group .marker,
    .Right__Col .block-100 .Open__Positions__Block .OpenList .position-group .marker,
    .Main__Right__Col .Open__Positions__Block .OpenList .position-group .marker {
      width: 25px !important; }
    .block-25 .Open__Positions__Block .OpenList .position-group .position, .block-50 .Open__Positions__Block .OpenList .position-group .position,
    .Right__Col .block-100 .Open__Positions__Block .OpenList .position-group .position,
    .Main__Right__Col .Open__Positions__Block .OpenList .position-group .position {
      width: calc(100% - 30px) !important;
      float: none; }
    .block-25 .Open__Positions__Block .OpenList .position-group .country, .block-25 .Open__Positions__Block .OpenList .position-group .city, .block-50 .Open__Positions__Block .OpenList .position-group .country, .block-50 .Open__Positions__Block .OpenList .position-group .city,
    .Right__Col .block-100 .Open__Positions__Block .OpenList .position-group .country,
    .Right__Col .block-100 .Open__Positions__Block .OpenList .position-group .city,
    .Main__Right__Col .Open__Positions__Block .OpenList .position-group .country,
    .Main__Right__Col .Open__Positions__Block .OpenList .position-group .city {
      display: none !important; }
  .block-25 .Open__Positions__Block .OpenList .date-group, .block-50 .Open__Positions__Block .OpenList .date-group,
  .Right__Col .block-100 .Open__Positions__Block .OpenList .date-group,
  .Main__Right__Col .Open__Positions__Block .OpenList .date-group {
    display: none !important; }
    .block-25 .Open__Positions__Block .OpenList .date-group .publish-date, .block-25 .Open__Positions__Block .OpenList .date-group .closing-date, .block-50 .Open__Positions__Block .OpenList .date-group .publish-date, .block-50 .Open__Positions__Block .OpenList .date-group .closing-date,
    .Right__Col .block-100 .Open__Positions__Block .OpenList .date-group .publish-date,
    .Right__Col .block-100 .Open__Positions__Block .OpenList .date-group .closing-date,
    .Main__Right__Col .Open__Positions__Block .OpenList .date-group .publish-date,
    .Main__Right__Col .Open__Positions__Block .OpenList .date-group .closing-date {
      display: none !important; }

.block-75 .Open__Positions__Block {
  width: 100% !important; }
  .block-75 .Open__Positions__Block .OpenList .position-group {
    width: calc(100% - 107px) !important; }
    .block-75 .Open__Positions__Block .OpenList .position-group .country {
      width: 15%; }
  .block-75 .Open__Positions__Block .OpenList .date-group {
    width: 107px; }
    .block-75 .Open__Positions__Block .OpenList .date-group .publish-date {
      display: none !important; }

.Right__Col .ts-button {
  margin-top: 1rem; }

.Right__Col .Open__Positions__Block .OpenList li:last-child {
  border: 0; }

@media (max-width: 61.9375em) {
  .block-100 .Open__Positions__Block {
    width: 100% !important; }
    .block-100 .Open__Positions__Block li.top .position-group .country {
      margin-left: 13px; }
    .block-100 .Open__Positions__Block li.top .position-group .city {
      margin-left: -8px;
      margin-right: -13px; }
    .block-100 .Open__Positions__Block .OpenList .position-group {
      width: calc(100% - 107px) !important; }
    .block-100 .Open__Positions__Block .OpenList .date-group {
      width: 107px; }
      .block-100 .Open__Positions__Block .OpenList .date-group .publish-date {
        display: none !important; }
  .block-75 .Open__Positions__Block {
    width: 100% !important; }
    .block-75 .Open__Positions__Block .OpenList .position-group {
      width: calc(100% - 107px) !important; }
      .block-75 .Open__Positions__Block .OpenList .position-group .country {
        width: 40%; }
      .block-75 .Open__Positions__Block .OpenList .position-group .city {
        display: none !important; }
    .block-75 .Open__Positions__Block .OpenList .date-group {
      width: 107px; }
      .block-75 .Open__Positions__Block .OpenList .date-group .publish-date {
        display: none !important; } }

@media (max-width: 47.9375em) {
  .block-100 .Open__Positions__Block, .block-75 .Open__Positions__Block {
    width: 100% !important; }
    .block-100 .Open__Positions__Block li.top, .block-75 .Open__Positions__Block li.top {
      display: none !important; }
    .block-100 .Open__Positions__Block .OpenList .position-group, .block-75 .Open__Positions__Block .OpenList .position-group {
      width: 100% !important; }
      .block-100 .Open__Positions__Block .OpenList .position-group .marker, .block-75 .Open__Positions__Block .OpenList .position-group .marker {
        width: 25px !important;
        display: block !important; }
      .block-100 .Open__Positions__Block .OpenList .position-group .position, .block-75 .Open__Positions__Block .OpenList .position-group .position {
        width: calc(100% - 30px) !important; }
      .block-100 .Open__Positions__Block .OpenList .position-group .country, .block-100 .Open__Positions__Block .OpenList .position-group .city, .block-75 .Open__Positions__Block .OpenList .position-group .country, .block-75 .Open__Positions__Block .OpenList .position-group .city {
        display: none !important; }
    .block-100 .Open__Positions__Block .OpenList .date-group, .block-75 .Open__Positions__Block .OpenList .date-group {
      display: none !important; }
      .block-100 .Open__Positions__Block .OpenList .date-group .publish-date, .block-100 .Open__Positions__Block .OpenList .date-group .closing-date, .block-75 .Open__Positions__Block .OpenList .date-group .publish-date, .block-75 .Open__Positions__Block .OpenList .date-group .closing-date {
        display: none !important; } }

.Job__Apply__BottomText {
  padding: 20px 0px 0 0px; }

.EasyCruit__JobPage .Job__Company__Info--Contact {
  display: block;
  padding-bottom: 15px; }
  .EasyCruit__JobPage .Job__Company__Info--Contact br {
    display: none; }
  .EasyCruit__JobPage .Job__Company__Info--Contact div:nth-child(4) {
    padding-bottom: 10px; }

.Workday__JobPage .Job__Company__Info--Contact {
  display: block;
  padding-bottom: 15px; }
  .Workday__JobPage .Job__Company__Info--Contact br {
    display: none; }
  .Workday__JobPage .Job__Company__Info--Contact div:nth-child(6) {
    padding-bottom: 10px; }

.ts-overlay-job-details .ts-overlay__inner .Page__Main__Content {
  padding-right: 0;
  padding-left: 0; }
  .ts-overlay-job-details .ts-overlay__inner .Page__Main__Content p,
  .ts-overlay-job-details .ts-overlay__inner .Page__Main__Content li {
    font-size: 1rem;
    margin-bottom: 1.25rem; }

@media (min-width: 48em) {
  .ts-overlay-job-details .ts-overlay__inner {
    max-width: 71.25rem; } }

@media (min-width: 62em) {
  .Open__positions .GeneralFilter .GeneralFilter__FilterDropdowns {
    padding-top: 0; }
  .Open__positions h1 {
    margin-bottom: 0.6181818182em; } }

@media (min-width: 75em) {
  .Open__Positions__Block .OpenList {
    height: 400px; }
    .Open__Positions__Block .OpenList li:last-child {
      border-bottom: 1px solid #e5e5e5; } }

@media (min-width: 62em) {
  .block-100 .Open__Positions__Block .OpenList .top .position-group .country {
    margin-left: 13px; }
  .block-100 .Open__Positions__Block .OpenList .top .position-group .city {
    margin-left: -8px;
    margin-right: -13px; }
  .block-100 .Open__Positions__Block .OpenList .position-group {
    width: calc(100% - 402px);
    display: inline-block; }
    .block-100 .Open__Positions__Block .OpenList .position-group .marker {
      width: 5%;
      float: left;
      min-height: 1px; }
    .block-100 .Open__Positions__Block .OpenList .position-group .position {
      width: 50%;
      display: block;
      float: left;
      min-height: 1px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
    .block-100 .Open__Positions__Block .OpenList .position-group a.position:hover, .block-100 .Open__Positions__Block .OpenList .position-group .position.Block__Share:hover {
      color: #9706e2; }
    .block-100 .Open__Positions__Block .OpenList .position-group .country {
      width: 25%;
      display: block;
      float: left;
      min-height: 1px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
    .block-100 .Open__Positions__Block .OpenList .position-group .city {
      width: 25%;
      display: block;
      float: left;
      min-height: 1px;
      text-overflow: ellipsis;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
  .block-100 .Open__Positions__Block .OpenList .date-group {
    width: 402px;
    float: right; }
    .block-100 .Open__Positions__Block .OpenList .date-group .publish-date {
      width: 200px;
      float: left;
      min-height: 1px;
      overflow: hidden;
      white-space: nowrap;
      padding-right: 8px; }
    .block-100 .Open__Positions__Block .OpenList .date-group .closing-date {
      width: 200px;
      display: block;
      float: left;
      min-height: 1px;
      overflow: hidden;
      white-space: nowrap; } }

.error--static header {
  margin-top: 30px;
  background-color: #fff; }
  .error--static header img {
    height: 100%;
    max-height: 44px; }

.Not__Found__Pebble .pebbles .pebble {
  z-index: -1;
  right: 0;
  transform: scale(0.9); }

.error--container {
  margin: 20px auto;
  width: 100%;
  max-width: 735px; }
  .error--container ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .error--container a, .error--container .Block__Share {
    display: block;
    position: relative;
    padding: 0 0 10px 20px;
    text-decoration: none; }
    .error--container a:before, .error--container .Block__Share:before {
      background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0' y='0' viewBox='0 0 9 14'><path d='M1.6,14c-0.4,0-0.8-0.1-1.1-0.4c-0.6-0.6-0.6-1.5,0-2.1L5.2,7L0.5,2.5c-0.6-0.6-0.6-1.5,0-2.1s1.6-0.6,2.2,0l5.9,5.5c0.6,0.6,0.6,1.5,0,2.1l-5.9,5.5C2.4,13.9,2,14,1.6,14z'/></svg>");
      background-repeat: no-repeat;
      content: '';
      display: inline-block;
      height: 15px;
      position: absolute;
      left: 0;
      top: 4px;
      width: 10px; }

.error--type {
  font-size: 20px; }

/*Calender Event Page*/
.Calender__Page .EventCategories {
  font-size: 0.75em;
  letter-spacing: 1px;
  margin-bottom: 15px; }
  .Calender__Page .EventCategories span {
    display: inline-block;
    margin-right: 5px;
    padding-right: 5px;
    border-right: 1px solid #fff; }
    .Calender__Page .EventCategories span:last-child {
      border: 0; }

.Calender__Page .GeneralFilter .GeneralFilter__FilterDropdowns {
  /*display: block;
        display: -webkit-box;
         display: -ms-box;*/ }

/*Calender Event block*/
.Calender__Event__Block {
  /*.Preamble {
        display: none;
    }*/ }
  .Calender__Event__Block h3.BlockTitle {
    margin-bottom: 30px !important;
    color: #990ae3;
    line-height: 0.9em;
    float: left; }
  .Calender__Event__Block ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
    width: 100%; }
  .Calender__Event__Block .EventDate {
    font-size: 0.75em;
    letter-spacing: 1px; }
  .Calender__Event__Block h4 {
    padding: 5px 0 15px;
    font-size: 1.5em;
    margin: 0; }
    .Calender__Event__Block h4 a, .Calender__Event__Block h4 .Block__Share {
      /*text-overflow: ellipsis;*/
      width: 100%;
      display: block;
      /*white-space: nowrap;
            overflow: hidden;*/ }
  .Calender__Event__Block .ViewCalender {
    font-size: 0.75em;
    letter-spacing: 1px;
    color: #000;
    /*position: absolute;
        bottom: 40px;
        right: 40px;
        top: auto;*/
    background: transparent url("/Assets/Images/sprite_32px.png") no-repeat 0 -2249px;
    line-height: 30px;
    padding-left: 26px;
    display: inline-block;
    float: none; }
    .Calender__Event__Block .ViewCalender:hover {
      background-position: 0 -2349px;
      color: #990ae3; }

.Main__Col .block-100 .Calender__Event__Block h3.BlockTitle, .Main__Col .block-75 .Calender__Event__Block h3.BlockTitle {
  margin-bottom: 15px !important; }

.Main__Col .block-100 .Calender__Event__Block h4, .Main__Col .block-75 .Calender__Event__Block h4 {
  padding: 5px 0 15px; }

.Main__Col .block-100 .Calender__Event__Block .ViewCalender, .Main__Col .block-75 .Calender__Event__Block .ViewCalender {
  font-size: 0.75em;
  line-height: 26px;
  float: right;
  margin-bottom: 30px; }

.Main__Col .block-100 .Calender__Event__Block .Preamble, .Main__Col .block-75 .Calender__Event__Block .Preamble {
  display: block; }

.Main__Col .block-100 .Calender__Event__Block ul, .Main__Col .block-75 .Calender__Event__Block ul {
  overflow: hidden;
  /*li {
            float: left;
            padding-right: 60px;

            &:last-child {
                padding-right: 0;
            }
        }*/ }

.Main__Col .block-100 .Calender__Event__Block ul li {
  width: 33.33333333%;
  padding: 0 30px 0 0; }
  .Main__Col .block-100 .Calender__Event__Block ul li:last-child {
    padding-right: 15px; }

.Main__Col .block-75 .Calender__Event__Block ul li {
  width: 50%; }
  .Main__Col .block-75 .Calender__Event__Block ul li + li + li {
    display: none; }

/*Calender block*/
.Main__Col .block-25 .Calender__Event__Block .ViewCalender, .Main__Col .block-25 .Calender__Event__Block h3.BlockTitle, .Right__Col .Calender__Event__Block .ViewCalender, .Right__Col .Calender__Event__Block h3.BlockTitle, .Full__Col .Main__Right__Col .block-100 .Calender__Event__Block .ViewCalender, .Full__Col .Main__Right__Col .block-100 .Calender__Event__Block h3.BlockTitle {
  float: none; }

.Main__Col .block-25 .Calender__Event__Block .ViewCalender, .Right__Col .Calender__Event__Block .ViewCalender, .Full__Col .Main__Right__Col .block-100 .Calender__Event__Block .ViewCalender {
  margin-bottom: 45px; }

.Main__Col .block-25 .Calender__Event__Block ul li, .Right__Col .Calender__Event__Block ul li, .Full__Col .Main__Right__Col .block-100 .Calender__Event__Block ul li {
  width: 100%;
  padding: 0 0 30px;
  float: none; }
  .Main__Col .block-25 .Calender__Event__Block ul li h4, .Right__Col .Calender__Event__Block ul li h4, .Full__Col .Main__Right__Col .block-100 .Calender__Event__Block ul li h4 {
    font-size: 1.25em; }

.Action__Page .Right__Col .Page__Block .Calender__Event__Block {
  height: auto; }

.Calender__Page.Event__Page h3 {
  margin-bottom: 10px; }

.Action__Page .Stories--Block {
  margin-top: 45px; }

.Action__Page .Right__Col .Page__Block .White__Block {
  /*height: $block-height--big;
            overflow: hidden;*/ }

.Action__Page .Action__Content__Area__Top .Page__Block .White__Block {
  height: 440px;
  overflow: hidden; }

.Action__Page .Action__Content__Area__Top .Page__Block .Calender__Event__Block {
  height: 245px;
  overflow: hidden; }

.Action__Page .Action__Content__Area__Top .block-25 .Page__Block .White__Block {
  height: 440px;
  overflow: hidden; }

@media (min-width: 62em) {
  .Action__Page h1 {
    margin-bottom: 0.6181818182em; } }

.Search__Page .GeneralFilter {
  min-height: 1px; }

.Search__Page em {
  font-weight: bold; }

.Search__Page .dropdown--list {
  height: 200px;
  background-color: #f2f2f2; }

.Search__Page .News__Flow__Wrapper {
  border: none; }

.Search__Page--results h3 {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  text-transform: uppercase; }

.Search__Page--results__img img {
  width: 100%;
  padding-bottom: 20px; }

@media only screen and (min-width: 30em) {
  .Search__Page--results__img img {
    width: 200px;
    padding-right: 25px;
    padding-bottom: 0; } }

.Right__Col h3 {
  margin: 0; }

.Right__Col .GeneralFilter {
  padding: 0; }

.button--search {
  border: none;
  right: -20px; }

.Search__Page--suggestions .ts-h2 {
  margin-top: 0.8333333333em; }

@media (min-width: 62em) {
  .Search__Page .ts-h1 {
    margin-bottom: 0.6181818182em; } }

.ui-autocomplete {
  background-color: #f2f2f2;
  padding: 0;
  list-style: none;
  position: absolute;
  z-index: 3;
  text-align: left; }
  .ui-autocomplete li {
    padding: 15px;
    cursor: pointer;
    display: block; }

.no-touchevents .ui-state-hover,
.no-touchevents .ui-widget-content .ui-state-hover,
.no-touchevents .ui-widget-header .ui-state-hover,
.no-touchevents .ui-state-focus,
.no-touchevents .ui-widget-content .ui-state-focus,
.no-touchevents .ui-widget-header .ui-state-focus {
  color: #9706e2;
  background-color: #f2f2f2; }

.hero {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: 1px solid #f2f2f2; }
  .hero p {
    font-size: 1.125rem;
    margin-bottom: 1em; }
  .hero .ts-button {
    margin: 0; }
  .hero .pebble-01 {
    /*@include orbitAnimation(hero-pebble-01, 10%, 10, true);
        animation: floatAnimation-hero-pebble-01 80s linear infinite;*/
    top: -240px;
    left: -420px;
    width: 417px;
    height: auto; }
  .hero .pebble-02 {
    /*@include orbitAnimation(hero-pebble-02, 10%, 10, false);
        animation: floatAnimation-hero-pebble-02 80s linear infinite;*/
    right: -700px;
    bottom: -170px;
    width: 599px;
    height: auto; }

.hero-text,
.hero-image {
  position: relative;
  z-index: 1; }

.hero-text {
  padding: 1.25rem 0; }

.hero-image {
  text-align: center; }
  .hero-image img {
    display: inline-block; }

.hero-White .hero-text {
  color: #fff; }

.hero-White .ts-h1 {
  color: #fff; }

.hero-White .ts-button {
  background-color: #fff;
  color: #990ae3; }
  .hero-White .ts-button:hover, .hero-White .ts-button:active, .hero-White .ts-button:focus {
    background-color: #990ae3;
    color: #fff; }

.hero-White .White__Block {
  background: none; }

.hero-Black .hero-text {
  color: #000; }

.hero-Black .ts-h1 {
  color: #000; }

.page-menu {
  display: block; }

.page-menu-sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3; }

.ts-on-page-navigation__visible-list::after {
  background: transparent; }

.ts-on-page-navigation__visible-list-item + .ts-on-page-navigation__visible-list-item {
  padding-left: 36px; }

.ts-on-page-navigation__visible-list-item a, .ts-on-page-navigation__visible-list-item .Block__Share {
  font-size: 14px;
  padding: 30px 0;
  transition: none; }

.ts-on-page-navigation__hidden-list {
  opacity: 1;
  display: none;
  padding: 1.5625rem; }
  .ts-on-page-navigation__more-button--opened + .ts-on-page-navigation__hidden-list {
    display: block; }

.ts-on-page-navigation__hidden-list-item--visible {
  margin-bottom: 0.625rem; }
  .ts-on-page-navigation__hidden-list-item--visible:last-child {
    margin: 0; }

@media only screen and (min-width: 768px) {
  .hero {
    height: 370px; }
  .page-menu-placeholder {
    min-height: 80px; }
    .page-menu-placeholder .page-menu.ts-on-page-navigation {
      min-height: 80px; } }

@media only screen and (max-width: 30em) {
  .ts-on-page-navigation__visible-list::before {
    content: '';
    display: inline-block;
    width: 100%; } }

@media (min-width: 48em) {
  .hero p {
    font-size: 24px; }
  .hero-text {
    padding: 3.75rem 0; }
  .ts-on-page-navigation__more-button {
    overflow: visible; }
  .ts-on-page-navigation__more-button--opened:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid white;
    z-index: 99999; }
  .ts-on-page-navigation__hidden-list {
    overflow-y: scroll; } }

@media (min-width: 62em) {
  .hero {
    height: 370px;
    margin-top: -110px;
    padding-top: 110px; }
    .hero .container,
    .hero .row,
    .hero [class*="col"] {
      height: 100%; }
    .hero .row {
      display: table; }
    .hero [class*="col"] {
      display: table-cell;
      vertical-align: middle;
      float: none; }
  .hero-text {
    padding: 0; } }

.Share__This__Story .ts-h2,
.Share__This__Story ul,
.Share__This__Story li {
  display: inline-block;
  padding: 0;
  margin: 0; }

.Share__This__Story .ts-h2 {
  border: 0; }

.Share__This__Story li {
  margin-left: 0.625rem;
  padding: 0; }

.ts-contact-block {
  padding: 1.25rem 0;
  border-color: #CCCCCC; }
  .ts-contact-block .ts-contact-block__list {
    padding: 1rem 0;
    margin-bottom: 0;
    list-style: none; }
  .ts-contact-block .ts-contact-block__list-item {
    margin-top: 0.625rem; }
    .ts-contact-block .ts-contact-block__list-item:first-child {
      margin: 0; }
  .ts-contact-block .ts-h2 {
    margin: 0;
    padding: 0;
    line-height: 1; }
  .ts-contact-block .ts-contact-block__header {
    padding-bottom: 0.625rem; }
    .ts-contact-block .ts-contact-block__header p {
      margin: 0.625rem 0; }
  .ts-contact-block .ts-link, .ts-contact-block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .ts-contact-block .gallery-email-link {
    margin-top: 1rem;
    display: inline-block; }
  .ts-contact-block .ts-contact-block__social-list {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem; }
  .ts-contact-block .ts-contact-block__social-list + p {
    margin: 0; }
    .ts-contact-block .ts-contact-block__social-list + p a, .ts-contact-block .ts-contact-block__social-list + p .Block__Share {
      color: #990ae3; }
  .ts-contact-block .ts-contact-block__twitter-list {
    font-size: 0.875rem; }
  .ts-contact-block .ts-contact-block__twitter-list-item {
    padding: 0.625rem 0; }

.Right__Col .ts-contact-block {
  height: auto;
  border: 0;
  padding: 0; }
  .Right__Col .ts-contact-block .ts-h2 {
    margin-bottom: 1rem;
    padding-bottom: 1rem; }
  .Right__Col .ts-contact-block .ts-contact-block__header {
    border: 0;
    padding: 0; }
    .Right__Col .ts-contact-block .ts-contact-block__header p {
      margin: 0 0 1em 0;
      font-size: 1rem; }
  .Right__Col .ts-contact-block .ts-contact-block__list {
    border: 0;
    padding: 0; }

@media (min-width: 48em) {
  .ts-contact-block {
    height: 440px;
    padding: 1.5625rem; } }

@media (min-width: 62em) {
  .Right__Col .ts-contact-block {
    padding: 0; }
    .Right__Col .ts-contact-block .ts-contact-block__list-image {
      width: 8.125rem; }
    .Right__Col .ts-contact-block .ts-contact-block__list-text {
      margin-left: 9.125rem; } }

@media (min-width: 75em) {
  .ts-contact-block {
    padding: 1.875rem; } }

.ts-overlay {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: scroll;
  overflow-x: hidden; }
  .ts-overlay::before {
    background-color: transparent; }

.ts-overlay__inner {
  top: 0;
  left: 0;
  -webkit-transform: none;
  transform: none;
  max-width: 100%;
  max-height: none;
  min-height: 100%;
  height: auto;
  padding: 3.125rem 0 0 1.25rem;
  overflow: hidden; }
  .ts-overlay__inner .ts-overlay__close {
    top: 0.9375rem;
    right: 0.9375rem; }

.ts-overlay__inner__placeholder {
  height: 100%;
  padding-right: 1.25rem;
  padding-bottom: 2.5rem; }

@media (min-width: 48em) {
  .ts-overlay {
    /*top: 1.25rem;
        right: 1.25rem;
        bottom: 1.25rem;
        left: 1.25rem;*/ }
  .ts-overlay__inner {
    top: 1.5625rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-bottom: 25px;
    max-height: none;
    height: auto;
    padding: 5rem 1.875rem 5rem 5rem; }
    .ts-overlay__inner .ts-overlay__close {
      top: 1.875rem;
      right: 1.875rem; }
  .ts-overlay__inner__placeholder {
    padding-right: 3.125rem;
    padding-bottom: 0; } }

.Stories--Block {
  position: relative; }
  .Stories--Block:hover .pebble {
    animation-play-state: paused; }
  .Stories--Block .pebble-01 {
    /*@include orbitAnimation(story-pebble-01, 15%, 10, false);
        animation: floatAnimation-story-pebble-01 80s linear infinite;*/
    width: 31.1875rem;
    height: 32.75rem;
    top: 3.125rem;
    right: -14.375rem; }
  .Stories--Block .pebble-02 {
    /*@include orbitAnimation(story-pebble-02, 15%, 10, true);
        animation: floatAnimation-story-pebble-02 80s linear infinite;*/
    width: 26.0625rem;
    height: 27.5rem;
    bottom: 1.875rem;
    left: -15.625rem; }
  .Stories--Block .ts-h2 {
    margin-bottom: 0.875rem; }

.Story__Block {
  position: relative;
  z-index: 1; }
  .Story__Block .Block__Preamble,
  .Story__Block .ts-link,
  .Story__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link,
  .Page__Block .Gallery__Block .gallery-content-container .Story__Block .gallery-email-link {
    margin-top: 1.25rem;
    margin-bottom: 0;
    max-height: 210px;
    overflow: hidden; }
  
  .Story__Block .ts-link,
  .Story__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link,
  .Page__Block .Gallery__Block .gallery-content-container .Story__Block .gallery-email-link {
    display: inline-block; }

.Story__Block .col-sm-6, .Story__Block .col-sm-12 {
  position: static; }

.block-25 .Story__Block .Block__Preamble {
  display: block;
  margin-top: 10px; }

.Stories--Block .Page__Block .Story__Block {
  height: auto; }

.Block__Image {
  overflow: hidden;
  position: relative;
  margin-bottom: 0.5rem;
  height: 100%; }
  .Block__Image img {
    width: 100%; }

.Block__Text .ts-h2 {
  color: #990ae3;
  margin-bottom: 0; }

.Block__Header {
  margin-bottom: 0.1875rem;
  display: block;
  padding: 0;
  list-style: none; }
  .Block__Header li {
    text-transform: uppercase;
    color: #222222;
    display: inline-block;
    font-size: 0.75em;
    margin-right: 0.625rem;
    padding-right: 0.9375rem;
    float: left;
    position: relative;
    letter-spacing: 0.0625rem;
    white-space: nowrap; }
    .Block__Header li:before {
      content: "|";
      position: absolute;
      right: 0; }
    .Block__Header li:last-child {
      margin-right: 0;
      padding-right: 0; }
      .Block__Header li:last-child:before {
        content: ""; }

.Block__Share {
  position: relative; }
  .Block__Share:hover {
    color: #990ae3; }

.Share__Services {
  display: none;
  position: absolute;
  top: 1.5625rem;
  padding: 1.25rem;
  background-color: #fff;
  z-index: 9999;
  white-space: normal;
  max-width: 116px; }
  .Share__Services .Share__Service {
    display: inline-block;
    float: left; }

.Right__Col .Story__Block [class*=col] {
  width: 100%;
  float: none; }

.Right__Col .Story__Block .Block__Image {
  height: auto;
  margin-bottom: 0.5rem; }
  .Right__Col .Story__Block .Block__Image img {
    width: 100%;
    max-width: 100%; }

.Right__Col .Story__Block .ts-h2 {
  border: 0;
  margin: 0 0 0.4em;
  padding: 0;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase; }

@media (min-width: 48em) {
  .Block__Image {
    margin-bottom: 0; }
  .Stories--Block .block-25,
  .Stories--Block .block-50 {
    width: 100%; } }

@media (min-width: 62em) {
  .Right__Col .Story__Block {
    padding: 0;
    box-shadow: none; }
    .Right__Col .Story__Block .ts-h2 {
      margin-top: 0.5rem; } }

@media (min-width: 75em) {
  .Block__Image img {
    height: 100%;
    width: auto;
    max-width: none;
    max-height: none; }
  .Stories--Block .Page__Block .Story__Block {
    height: 440px; }
  .Stories--Block .container,
  .Stories--Block .container-fluid,
  .Stories--Block .row,
  .Stories--Block [class*=col] {
    height: 100%; }
  .Stories--Block .block-25 {
    width: 33.33333333%; }
    .Stories--Block .block-25 .row {
      height: auto; }
    .Stories--Block .block-25 [class*="col"] {
      width: 100%;
      height: auto; }
    .Stories--Block .block-25 .Block__Image {
      margin-bottom: 1rem;
      width: 100%; }
    .Stories--Block .block-25 img {
      position: static;
      transform: none;
      width: 100%;
      top: 0;
      left: 0; }
  .Stories--Block .block-50 {
    width: 50%; }
  .Stories--Block .block-100 .ts-h2 {
    font-size: 2.5rem;
    line-height: 1; }
  .Stories--Block .block-100 .Block__Preamble {
    font-size: 1.25rem; } }

.Sense__Block {
  position: relative;
  z-index: 1; }
  .Sense__Block .Small__Blocks .Page__Block .White__Block {
    height: 100% !important; }
  .Sense__Block .Block__Preamble,
  .Sense__Block .ts-link,
  .Sense__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link,
  .Page__Block .Gallery__Block .gallery-content-container .Sense__Block .gallery-email-link {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    max-height: 210px;
    overflow: hidden; }
  .Sense__Block .mainFilterInput {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
    height: 50px;
    border-radius: 2px;
    border: solid gray 1px;
    padding: 0 0 0 25px; }
  .Sense__Block .GeneralFilter {
    display: block;
    min-height: 0; }
  
  .Sense__Block .ts-link,
  .Sense__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link,
  .Page__Block .Gallery__Block .gallery-content-container .Sense__Block .gallery-email-link {
    display: inline-block; }
  .Sense__Block .ts-button {
    margin: 0.625rem 0; }
  .Sense__Block .minispinner1 {
    margin-top: 34px; }
  .Sense__Block #resultDiv {
    display: none;
    padding-top: 15px; }
  .Sense__Block #errorMsg {
    display: none;
    margin-top: 15px;
    color: red; }
  .Sense__Block #registrationForm {
    margin-top: 0.875rem; }

@media only screen and (max-width: 768px) {
  .Sense__Block .featureContainer {
    margin-top: 25px; } }

.Sense__Block .col-sm-6, .Sense__Block .col-sm-12 {
  position: static; }

@media (min-width: 62em) {
  .block-75 .Sense__Block .senseInstructions {
    width: 56%; }
  .block-75 .Sense__Block .GeneralFilter {
    width: 22%; }
  .block-50 .Sense__Block .senseInstructions, .block-25 .Sense__Block .senseInstructions {
    width: 100%; }
  .block-50 .Sense__Block .registrationForm, .block-25 .Sense__Block .registrationForm {
    width: 100%; }
  .block-50 .Sense__Block .GeneralFilter, .block-25 .Sense__Block .GeneralFilter {
    width: 50%; }
  .block-50 .Sense__Block .searchButtonWrapper, .block-25 .Sense__Block .searchButtonWrapper {
    width: 50%; }
  .block-50 .Sense__Block .imageWrapper, .block-50 .Sense__Block .featureWrapper, .block-25 .Sense__Block .imageWrapper, .block-25 .Sense__Block .featureWrapper {
    width: 100%; }
  .block-one-fourth .Sense__Block .senseInstructions {
    width: 100%; }
  .block-one-fourth .Sense__Block .registrationForm {
    width: 100%; }
  .block-one-fourth .Sense__Block .GeneralFilter {
    width: 100%; }
  .block-one-fourth .Sense__Block .searchButtonWrapper {
    width: 100%; }
  .block-one-fourth .Sense__Block .imageWrapper, .block-one-fourth .Sense__Block .featureWrapper {
    width: 100%; } }

@media (min-width: 75em) {
  .block-75 .Sense__Block .senseInstructions {
    width: 56%; }
  .block-75 .Sense__Block .GeneralFilter {
    width: 22%; }
  .block-50 .Sense__Block .senseInstructions, .block-25 .Sense__Block .senseInstructions {
    width: 100%; }
  .block-50 .Sense__Block .registrationForm, .block-25 .Sense__Block .registrationForm {
    width: 100%; }
  .block-50 .Sense__Block .GeneralFilter, .block-25 .Sense__Block .GeneralFilter {
    width: 50%; }
  .block-50 .Sense__Block .searchButtonWrapper, .block-25 .Sense__Block .searchButtonWrapper {
    width: 50%; }
  .block-50 .Sense__Block .imageWrapper, .block-50 .Sense__Block .featureWrapper, .block-25 .Sense__Block .imageWrapper, .block-25 .Sense__Block .featureWrapper {
    width: 100%; }
  .block-one-fourth .Sense__Block .senseInstructions {
    width: 100%; }
  .block-one-fourth .Sense__Block .registrationForm {
    width: 100%; }
  .block-one-fourth .Sense__Block .GeneralFilter {
    width: 100%; }
  .block-one-fourth .Sense__Block .searchButtonWrapper {
    width: 100%; }
  .block-one-fourth .Sense__Block .imageWrapper, .block-one-fourth .Sense__Block .featureWrapper {
    width: 100%; } }

.block-50 .Sense__Block .featureContainer, .block-25 .Sense__Block .featureContainer, .block-one-fourth .Sense__Block .featureContainer {
  margin-top: 25px; }

.block-50 .Sense__Block #errorMsg, .block-25 .Sense__Block #errorMsg, .block-one-fourth .Sense__Block #errorMsg {
  width: 100%; }

.block-25 .Sense__Block .senseInstructions {
  height: 280px;
  overflow: hidden; }

.block-25 .Sense__Block .Block__Preamble {
  display: block;
  margin-top: 10px; }

.Page__Block .Sense__Block {
  height: auto; }

.Block__Header {
  margin-bottom: 0.1875rem;
  display: block;
  padding: 0;
  list-style: none; }
  .Block__Header li {
    text-transform: uppercase;
    color: #222222;
    display: inline-block;
    font-size: 0.75em;
    margin-right: 0.625rem;
    padding-right: 0.9375rem;
    float: left;
    position: relative;
    letter-spacing: 0.0625rem;
    white-space: nowrap; }
    .Block__Header li:before {
      content: "|";
      position: absolute;
      right: 0; }
    .Block__Header li:last-child {
      margin-right: 0;
      padding-right: 0; }
      .Block__Header li:last-child:before {
        content: ""; }

.Right__Col .Sense__Block [class*=col] {
  width: 100%;
  float: none; }

.Right__Col .Sense__Block .Block__Image {
  height: auto;
  margin-bottom: 0.5rem; }
  .Right__Col .Sense__Block .Block__Image img {
    width: 100%;
    max-width: 100%; }

.Right__Col .Sense__Block .ts-h2 {
  border: 0;
  margin: 0 0 0.4em;
  padding: 0;
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase; }

@media (min-width: 62em) {
  .Right__Col .Story__Block {
    padding: 0;
    box-shadow: none; }
    .Right__Col .Story__Block .ts-h2 {
      margin-top: 0.5rem; } }

#id_matrix input[type="submit"] {
  border: 1px solid transparent;
  font-size: .875rem;
  background-color: #990ae3;
  border-radius: 2.0833333334em;
  color: #FFF;
  line-height: 1;
  padding: 1.0625rem 1.875rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .08571428571em;
  -webkit-transition: background-color .15s ease,color .15s ease;
  transition: background-color .15s ease,color .15s ease;
  white-space: nowrap;
  vertical-align: middle;
  margin: .0625rem .375rem; }

#id_matrix input[type="submit"]:hover {
  background-color: #c0f;
  color: #FFF; }

#id_matrix input[type="text"] {
  margin-left: .625rem;
  height: 40px;
  border-radius: 2px;
  border: solid gray 1px;
  padding: inherit; }

#id_matrix textarea {
  margin-left: .625rem;
  height: 90px;
  border-radius: 2px;
  border: solid gray 1px;
  padding: inherit; }

#id_matrix select {
  margin-left: .625rem;
  height: 40px;
  border-radius: 2px;
  border: solid gray 1px;
  padding: inherit; }

#id_matrix .field-validation-error {
  color: red; }

.Landing__Page {
  padding-top: 2rem; }

.Landing__Page__Contentarea {
  background-color: #ebebeb;
  padding: 0 0 2rem;
  margin: 2rem 0 0; }

.full-width-Image-and-text-Block {
  max-height: 620px;
  color: #fff; }
  .full-width-Image-and-text-Block img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    position: relative; }
  .full-width-Image-and-text-Block .text-Block {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translate(0%, -50%);
    text-align: center;
    width: 100%; }
    .full-width-Image-and-text-Block .text-Block .banner-title {
      font-size: 3rem;
      line-height: 3.625rem;
      font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
      text-transform: uppercase;
      max-width: 776px;
      margin: 0 auto 30px; }
    .full-width-Image-and-text-Block .text-Block .banner-description {
      max-width: 710px;
      margin: 0 auto 60px;
      font-size: 1.375rem;
      line-height: 1.625rem; }
  @media only screen and (max-width: 768px) {
    .full-width-Image-and-text-Block {
      max-height: initial;
      text-align: left;
      margin: 0 -15px; }
      .full-width-Image-and-text-Block img {
        height: 490px; }
      .full-width-Image-and-text-Block .text-Block {
        position: relative;
        top: initial;
        left: 0;
        transform: initial;
        padding: 35px 15px 55px;
        text-align: center;
        width: 100%;
        background-color: #f2f2f2; }
        .full-width-Image-and-text-Block .text-Block .banner-title {
          font-size: 2.375rem;
          line-height: 2.8125rem;
          color: #990ae3;
          text-align: left;
          margin: 0 auto 15px; }
        .full-width-Image-and-text-Block .text-Block .banner-description {
          font-size: 1.4375rem;
          line-height: 1.75rem;
          color: #000;
          margin: initial;
          text-align: left; }
        .full-width-Image-and-text-Block .text-Block .ts-button-left {
          display: block;
          text-align: left;
          margin-top: 17px; } }

.telia-cards-wrapper .cards-header-title {
  font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
  font-size: 3.5rem;
  line-height: 3.625rem;
  margin-bottom: 45px;
  margin-top: 40px;
  color: #9809E2;
  text-align: center;
  text-transform: uppercase; }

.telia-cards-wrapper .dark-violet {
  background-color: #990ae3; }

.telia-cards-wrapper .tc-ripple-bg {
  background-size: auto 100%;
  background-position: center; }

.telia-cards-wrapper .vivid-violet {
  background-color: #642D95; }

.telia-cards-wrapper .gray-smoke {
  background-color: #f2f2f2; }
  .telia-cards-wrapper .gray-smoke .card-title {
    color: #9809E2 !important; }
  .telia-cards-wrapper .gray-smoke .card-description {
    color: #000; }
  .telia-cards-wrapper .gray-smoke .ts-button {
    background-color: #990ae3;
    color: #fff; }
  .telia-cards-wrapper .gray-smoke .ts-button--secondary:hover {
    background-color: #cc00ff;
    text-decoration: none; }

.telia-cards-wrapper .ts-button--secondary:hover {
  text-decoration: none; }

.telia-cards-wrapper .text-align-left {
  text-align: left; }

.telia-cards-wrapper .text-align-center {
  text-align: center; }

.telia-cards-wrapper .padding-w-34 {
  padding: 86px 34px 76px; }

.telia-cards-wrapper .padding-w-44 {
  padding: 86px 44px 76px; }

.telia-cards-wrapper .valign-top {
  vertical-align: top; }

.telia-cards-wrapper .valign-middle {
  vertical-align: middle; }

.telia-cards-wrapper .telia-cards-block {
  display: table-cell;
  max-width: 570px;
  color: #fff; }
  .telia-cards-wrapper .telia-cards-block .card-title {
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    font-size: 3rem;
    line-height: 3.625rem;
    margin-bottom: 44px;
    word-break: break-word;
    text-transform: uppercase; }
  .telia-cards-wrapper .telia-cards-block .card-description {
    font-size: 1.375rem;
    line-height: 1.625rem;
    margin-bottom: 44px;
    white-space: pre-line; }
  .telia-cards-wrapper .telia-cards-block.white-block {
    background-color: #FFF;
    padding: 0 44px; }
    .telia-cards-wrapper .telia-cards-block.white-block .card-title {
      /*font-size: 2.125rem;
                line-height: 2.5625rem;*/
      color: #9809E2;
      /*margin-bottom: 30px;*/ }
    .telia-cards-wrapper .telia-cards-block.white-block .card-description {
      color: #000; }

@media only screen and (max-width: 768px) {
  .telia-cards-wrapper {
    margin: 0 -15px; }
    .telia-cards-wrapper .cards-header-title {
      font-size: 2.8125rem;
      line-height: 2.8125rem;
      text-align: left;
      margin-top: 45px;
      margin-bottom: 65px;
      padding: 0 15px; }
    .telia-cards-wrapper .telia-cards-block {
      display: block;
      padding: 66px 15px 60px;
      max-width: 100%; }
      .telia-cards-wrapper .telia-cards-block .card-title {
        font-size: 2.8125rem;
        line-height: 3.8125rem;
        margin-bottom: 31px; }
      .telia-cards-wrapper .telia-cards-block .card-description {
        font-size: 1.4375rem;
        line-height: 1.75rem;
        margin-bottom: 27px; }
      .telia-cards-wrapper .telia-cards-block .ts-button {
        font-size: 1.4375rem;
        line-height: 1.75rem;
        text-transform: none; }
      .telia-cards-wrapper .telia-cards-block.white-block {
        background-color: #FFF;
        padding: 0 15px;
        margin-bottom: 50px; }
        .telia-cards-wrapper .telia-cards-block.white-block .card-title {
          font-size: 2.375rem;
          line-height: 2.8125rem;
          color: #9809E2;
          margin-bottom: 25px; }
        .telia-cards-wrapper .telia-cards-block.white-block .card-description {
          font-size: 1.4375rem;
          line-height: 1.75rem;
          color: #000; }
    .telia-cards-wrapper .gray-smoke {
      text-align: left; }
    .telia-cards-wrapper .sm-text-align-left {
      text-align: left; }
    .telia-cards-wrapper .sm-text-align-center {
      text-align: center; } }

.telia-cards-wrapper .inner-image-only {
  margin: auto 64px;
  width: 356px; }

@media only screen and (max-width: 1024px) {
  .telia-cards-wrapper .inner-image-only {
    margin: auto !important;
    width: 480px; } }

.telia-cards-wrapper .block-25 {
  padding: 0px; }

.telia-cards-wrapper .block-50 {
  padding: 0px;
  display: grid; }

/* LARGE DEVICES
@media all and (min-width: 768px){
    .MenuItem__Wrapper:not(:last-of-type)::after{
        content:"";
        position: relative;
        height:20px;
        top:12px;
        border-right:1px solid $main--fifth;  
    }
    .MenuItem__Wrapper:hover{
        border-bottom: 3px solid $main--first;
        a{
            text-decoration:none;
        }
    }
    .MainMenu{
        display:block;
    }
}
     */
/* Special Fixes for IE 11*/
/*@media all and (-ms-high-contrast:none){
*::-ms-backdrop, .dropdown { /*IE11* /
        background-size: 8% !important;
    }
}*/
@media screen and (max-width: 1199px) {
  .Hero--Pebble {
    height: 500px; }
  .Hero--Container {
    position: relative; }
    .Hero--Container h1.BannerTitle {
      font-size: 44px; }
    .Hero--Container .StartPage .StartPage--HeroBlock .Hero--Container p {
      font-size: 18px; } }

@media screen and (max-width: 991px) {
  .Hero--Pebble {
    height: 440px;
    width: 50%; }
  .Hero--Container h1.BannerTitle {
    margin-top: 0; }
  .StartPage .StartPage--HeroBlock .Hero--Container p {
    font-size: 20px; } }

@media all and (min-width: 768px) {
  .pagination2 .paginationRegular, .pagination1 .paginationRegular {
    display: inline-block; }
  .pagination2 .paginationThin, .pagination1 .paginationThin {
    display: none; } }

@media screen and (max-width: 767px) {
  .Hero--Pebble {
    height: 400px;
    left: 20%;
    top: -20%; }
  .Hero--Container h1.BannerTitle {
    margin-top: 40px; }
  .Hero--Container .StandardButton {
    position: relative !important;
    bottom: 0 !important; }
  .GeneralFilter__FilterDropdowns .dropdown {
    width: inherit; }
  .block-75 .Profile__Description {
    display: none; }
  .block-100 .Teaser--Block .Teaser__Image__Wrapper {
    height: 440px; } }

/* MEDIUM DEVICES */
/* Up to but not including 768 */
@media screen and (max-width: 767px) {
  .Main__Left__Col .shadowRight, .Page__Content__Wrapper .shadowRight {
    right: 15px; }
  .StartPage .Hero--Container {
    position: relative; }
  .StartPage .StartPage--HeroBlock p {
    font-size: 18px; }
  .StartPage .StartPage--HeroBlock .HeroBlock--Image {
    position: relative !important; }
  .StartPage .StartPage--HeroBlock.Fixed_Ratio_Wrapper:before {
    padding-top: 0% !important; }
  .Open__positions .FilterResult__Table {
    display: none; }
  .Open__positions .openpositions-table {
    display: none; }
  .Open__positions .FilterResult__List {
    display: block !important; }
  .Open__positions .GeneralFilter .GeneralFilter__ChosenFilters {
    border-bottom: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5; } }

@media screen and (max-width: 768px) {
  .StartPage .StartPage--HeroBlock.Fixed_Ratio_Wrapper:before, .Action__Page .StartPage--HeroBlock.Fixed_Ratio_Wrapper:before {
    padding-top: 55%; }
  .Main__Right__Col .block-100 .Open__Positions__Block .OpenList .position-group, .Right__Col .block-100 .Open__Positions__Block .OpenList .position-group {
    width: 100% !important; }
  .dropdown__Wrapper {
    /* A very subtle fix for making filters in flex-box behave on iPad when switching between portrait and landscape */
    -webkit-flex-basis: 225px !important;
    flex-basis: 225px !important; }
  .pagination2 .paginationRegular, .pagination1 .paginationRegular {
    display: none; }
  .pagination2 .paginationThin, .pagination1 .paginationThin {
    display: block; }
  .Main__Wrapper h1,
  .pageTitle,
  .hero .ts-h1 {
    font-size: 2.75em; }
  .long__text-fix {
    font-size: 1.75em !important; }
  .Action__Page .Long__Text__Row > [class*='col-'] {
    width: 100%; }
  .Action__Page .Long__Text__Row .Social__Network__Icons {
    text-align: left;
    float: none;
    margin-top: 0;
    margin-bottom: 30px; }
  .Full__Col .Main__Right__Col .Page__Block:first-child {
    margin-top: 0; }
  .Full__Col .White__Block.Job__Company__Info {
    padding: 25px 20px; }
  .RelatedContent__Wrapper .RelatedContent {
    width: 100%; }
  /*content page 1*/
  .ContentPage1__MainArticle {
    /*.block-75, .block-25 {
            width: 50%;
        }*/
    /*.block-25{
            width:50%;
        }*/ }
    .ContentPage1__MainArticle .block-25, .ContentPage1__MainArticle .block-50, .ContentPage1__MainArticle .block-75, .ContentPage1__MainArticle .block-100 {
      width: 100%; }
    .ContentPage1__MainArticle .News__Block__List .block-100 .News__Block__12 li {
      float: none;
      width: 100%; }
  .GeneralFilter .GeneralFilter__Search {
    width: 100% !important; }
    .GeneralFilter .GeneralFilter__Search .GeneralFilter__Search--MainInput {
      padding-right: 0px; }
  /*Gallery Block tab view*/
  .Gallery__BlocksPage .block-25, .Gallery__BlocksPage .block-75, .Gallery__BlocksPage .block-100,
  .Gallery__BlocksPage .Size4, .Gallery__BlocksPage .Size8, .Gallery__BlocksPage .Size12 {
    width: 50%;
    float: left; }
  .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Image__Wrapper {
    width: 100%; }
  .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper {
    position: absolute;
    bottom: 0;
    background-color: #272727;
    width: 100%;
    color: #fff;
    opacity: 0.8;
    padding: 10px 20px; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper h3 {
      margin: 10px 0;
      color: #fff;
      width: 100%;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .Profile__Description__Wrapper, .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .Profile__Contact__Info {
      display: none; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .Profile__Desig, .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .See__More {
      display: block; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .Profile__Desig {
      width: 100%;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .See__More a, .Gallery__Page .Gallery__BlocksPage .Gallery__Block .Profile__Info_Wrapper .See__More .Block__Share {
      padding: 15px 0 5px;
      color: #fff; }
  .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Desig {
    display: block;
    white-space: normal;
    word-break: break-word;
    text-overflow: initial; }
  .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Contact__Info {
    display: block;
    white-space: normal;
    word-break: break-word;
    text-overflow: initial;
    margin-top: 15px; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Contact__Info a, .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Contact__Info .Block__Share {
      color: #fff; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Contact__Info div {
      display: block;
      margin-bottom: 2px; }
      .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Contact__Info div:first-child:after {
        content: ""; }
  .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .See__More {
    display: block;
    bottom: 10px;
    right: 20px;
    position: absolute;
    width: 100%;
    z-index: 9; }
    .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .See__More a, .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .See__More .Block__Share {
      color: #fff; }
  .Gallery__Page .Gallery__BlocksPage .Gallery__Block:hover .Profile__Info_Wrapper {
    top: 0; }
  /* Gallery Block Tab view*/
  /*Calender block*/
  .Main__Col .block-100 .Calender__Event__Block ul li {
    padding-right: 30px; }
  .Action__Page .Right__Col .block-100,
  .Action__Page .Right__Col .block-75,
  .Action__Page .Right__Col .block-25 {
    width: 50%;
    float: left; }
    .Action__Page .Right__Col .block-100 .Page__Block .White__Block,
    .Action__Page .Right__Col .block-75 .Page__Block .White__Block,
    .Action__Page .Right__Col .block-25 .Page__Block .White__Block {
      height: 440px;
      overflow: hidden; }
      .Action__Page .Right__Col .block-100 .Page__Block .White__Block .Link__List__Wrap,
      .Action__Page .Right__Col .block-75 .Page__Block .White__Block .Link__List__Wrap,
      .Action__Page .Right__Col .block-25 .Page__Block .White__Block .Link__List__Wrap {
        height: 220px;
        overflow: hidden; }
  .Action__Page .Action__Content__Area__Top .block-25 {
    width: 50%;
    /*float: left;*/ }
  .Action__Page .Action__Content__Area__Top .block-75 {
    clear: both;
    width: 100%; }
  .Action__Page .Action__Content__Area__Top .Page__Block .White__Block, .Action__Page .Action__Content__Area__Top .Right__Col .Page__Block .White__Block {
    height: 440px;
    overflow: hidden; }
    .Action__Page .Action__Content__Area__Top .Page__Block .White__Block .Link__List__Wrap, .Action__Page .Action__Content__Area__Top .Right__Col .Page__Block .White__Block .Link__List__Wrap {
      height: 220px;
      overflow: hidden; }
    .Action__Page .Action__Content__Area__Top .Page__Block .White__Block h4 a, .Action__Page .Action__Content__Area__Top .Page__Block .White__Block h4 .Block__Share, .Action__Page .Action__Content__Area__Top .Right__Col .Page__Block .White__Block h4 a, .Action__Page .Action__Content__Area__Top .Right__Col .Page__Block .White__Block h4 .Block__Share {
      white-space: normal; }
  .Action__Page .Action__Content__Area__Top .Page__Block .Calender__Event__Block {
    height: auto; } }

/* S DEVICES */
@media screen and (max-width: 635px) {
  .GeneralFilter .dropdown__Wrapper {
    width: 100% !important; }
  .GeneralFilter__FilterDropdowns {
    margin-right: 0px !important; } }

/* XS DEVICES */
@media screen and (max-width: 480px) {
  .paginationWrapper a.pagination__next, .paginationWrapper .pagination__next.Block__Share {
    padding-left: 5px; }
  .ContentPage1 .ContentPage1__DynamicTop {
    display: block; }
  .ContentPage1 .DynamicVisibilityBlock {
    max-width: 100%; }
  .paginationThin__Current--extra1 {
    display: none !important; }
  .a.pagination__prev, a.pagination__next, .pagination__next.Block__Share {
    padding: 17px 8px !important; }
  .Main__Wrapper h1,
  h1.pageTitle,
  h2.pageTitle,
  .hero .ts-h1 {
    font-size: 2.5em; }
  .long__text-fix {
    font-size: 1.1875em !important; }
  .StartPage .StartPage--HeroBlock p {
    font-size: 14px; }
  .News__Flow__Wrapper {
    display: inline-block !important; }
    .News__Flow__Wrapper .News__Flow__Wrapper--image--Wrapper {
      width: 100% !important;
      max-width: 100%;
      padding-bottom: 20px; }
      .News__Flow__Wrapper .News__Flow__Wrapper--image--Wrapper .News__Flow__Wrapper--image {
        width: 100%;
        padding-right: 0px !important; }
  .News__Flow .GeneralFilter .ClearFilter {
    /*position: relative; 
                float: right;
                right: 0;
                top: 0px;
                background: none;*/ }
  .News__Flow .GeneralFilter .GeneralFilter__FilterDropdowns {
    display: block; }
    .News__Flow .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown {
      width: 100%;
      margin-top: 10px; }
  .News__Flow .News__Flow__Wrapper {
    display: inline-block;
    width: 100%;
    border: none; }
    .News__Flow .News__Flow__Wrapper .News__Flow__Wrapper--image--Wrapper {
      width: 100% !important;
      max-width: 100%; }
      .News__Flow .News__Flow__Wrapper .News__Flow__Wrapper--image--Wrapper .News__Flow__Wrapper--image {
        max-width: 100%;
        padding-right: 0px; }
  .Page__Content__Wrapper .SearchPage__Wrapper {
    display: block;
    width: 100%; }
    .Page__Content__Wrapper .SearchPage__Wrapper .Search__Page--results__img {
      width: 100%;
      display: inline-block; }
    .Page__Content__Wrapper .SearchPage__Wrapper .News__Flow__Wrapper--content {
      display: block;
      width: 100%; }
  .GeneralFilter .dropdown__Wrapper, .GeneralFilter .dropdown--list {
    width: 100% !important; }
  .GeneralFilter .GeneralFilter__Search {
    width: 100%; }
    .GeneralFilter .GeneralFilter__Search .GeneralFilter__Search--MainInput {
      padding: 0px; }
    .GeneralFilter .GeneralFilter__Search .ClearFilter {
      position: absolute;
      float: right;
      top: 27px;
      right: 80px; }
  .GeneralFilter .GeneralFilter__FilterDropdowns {
    display: block; }
    .GeneralFilter .GeneralFilter__FilterDropdowns .dropdown {
      width: 100%; }
  /*Open position new*/
  .Open__positions .Easy__Cruit__Login__Wrapper, .Open__positions .GeneralFilter--Style2 .GeneralFilter__Search .GeneralFilter__Search--MainInput {
    width: 100%;
    float: none; }
  .Open__positions .Easy__Cruit__Login__Wrapper {
    margin-bottom: 10px;
    font-size: 12px; }
  /*Gallery Block mobile view*/
  .Gallery__BlocksPage .block-25, .Gallery__BlocksPage .block-75, .Gallery__BlocksPage .block-100,
  .Gallery__BlocksPage .Size4, .Gallery__BlocksPage .Size8, .Gallery__BlocksPage .Size12 {
    width: 100%;
    float: left; }
  /* //Gallery Block mobile view*/
  /*Calender block*/
  .Main__Col .block-100 .Calender__Event__Block .ViewCalender, .Main__Col .block-100 .Calender__Event__Block h3.BlockTitle, .Main__Col .block-75 .Calender__Event__Block .ViewCalender, .Main__Col .block-75 .Calender__Event__Block h3.BlockTitle, .Main__Col .block-25 .Calender__Event__Block .ViewCalender, .Main__Col .block-25 .Calender__Event__Block h3.BlockTitle {
    float: none; }
  .Main__Col .block-100 .Calender__Event__Block .ViewCalender, .Main__Col .block-75 .Calender__Event__Block .ViewCalender, .Main__Col .block-25 .Calender__Event__Block .ViewCalender {
    margin-bottom: 45px; }
  .Main__Col .block-100 .Calender__Event__Block ul li, .Main__Col .block-75 .Calender__Event__Block ul li, .Main__Col .block-25 .Calender__Event__Block ul li {
    width: 100%;
    padding-bottom: 30px;
    float: none; }
    .Main__Col .block-100 .Calender__Event__Block ul li h4, .Main__Col .block-75 .Calender__Event__Block ul li h4, .Main__Col .block-25 .Calender__Event__Block ul li h4 {
      font-size: 1.25em; }
  .Full__Col .Main__Right__Col .block-25, .Full__Col .Main__Right__Col .block-50, .Full__Col .Main__Right__Col .block-75, .Full__Col .Main__Right__Col .block-100,
  .col-sm-4.block-25, .col-sm-68.block-50, .col-sm-8.block-75, .col-sm-12.block-100 {
    width: 100%;
    float: none;
    margin-bottom: 20px; }
  .Main__Col .Page__Content__Wrapper .Page__Block, .Main__Col .Page__Content__Wrapper .Block__Row .Page__Block, .Main__Col .Page__Content__Wrapper .Block__Row .Teaser--Block {
    height: auto; }
  .Action__Page {
    /*h4 {
            padding: 5px 0;
            font-size: $font-size--s;
        }*/ }
    .Action__Page .Right__Col .block-100,
    .Action__Page .Right__Col .block-75,
    .Action__Page .Right__Col .block-25 {
      width: 100%; }
      .Action__Page .Right__Col .block-100 .Page__Block .White__Block,
      .Action__Page .Right__Col .block-75 .Page__Block .White__Block,
      .Action__Page .Right__Col .block-25 .Page__Block .White__Block {
        height: auto; }
    .Action__Page h1, .Action__Page .Social__Network__Icons {
      float: none; }
    .Action__Page .Social__Network__Icons {
      margin-top: 0;
      margin-bottom: 30px; }
    .Action__Page .Action__Content__Area__Top .block-25 {
      width: 100%; }
    .Action__Page .Action__Content__Area__Top .Page__Block .Calender__Event__Block, .Action__Page .Action__Content__Area__Top .Page__Block .White__Block {
      height: auto; }
  /*News block*/
  .News__Block__Wrapper .Extras .Extras__Date {
    width: 100%; }
  .Big__Blocks .block-100 .News__Block__12 .News__Block__List li, .Bottom__Content .block-100 .News__Block__12 .News__Block__List li {
    float: none;
    width: 100%;
    height: auto; }
    .Big__Blocks .block-100 .News__Block__12 .News__Block__List li .News__Block__Wrapper .News__Link, .Bottom__Content .block-100 .News__Block__12 .News__Block__List li .News__Block__Wrapper .News__Link {
      margin: 0; }
  .Big__Blocks .News__Block__12 li .Icons, .Bottom__Content .News__Block__12 li .Icons {
    display: none; }
  .Big__Blocks .News__Block__Wrapper .News__Link, .Bottom__Content .News__Block__Wrapper .News__Link {
    margin-bottom: 0; }
  .Big__Blocks .News__Block__Wrapper li:nth-child(3), .Big__Blocks .News__Block__Wrapper li:nth-child(4), .Bottom__Content .News__Block__Wrapper li:nth-child(3), .Bottom__Content .News__Block__Wrapper li:nth-child(4) {
    display: block; } }

@media print {
  *, :after, :before {
    background: initial !important; }
  p {
    /*font-weight:bolder;*/ }
  .Main__Wrapper h1,
  h1.pageTitle,
  h2.pageTitle,
  .hero .ts-h1 {
    font-size: 2.25em;
    color: #000; }
  header, footer, .Cookie__Banner, .header-search-form, .MainFooter__Wrapper, .ts-navigation-main__buttons, #epi-quickNavigator, .GeneralFilter__FilterDropdowns .ts-on-page-navigation__visible-list, .page-menu-placeholder, .Breadcrumb__Placeholder, .ts-button, iframe:not([title='Disqus']) {
    display: none !important; }
  .main-content .hero {
    border: none;
    margin: 0;
    padding: 0;
    height: auto; }
    .main-content .hero .container .row .col-md-6 {
      width: 100%; }
  a[href]:after, .Block__Share[href]:after {
    display: none; }
  img {
    /*max-width: 100%;*/
    page-break-inside: avoid; }
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-sm-12, .col-md-12, .col-lg-12 {
    width: 100%; }
  .col-sm-11, .col-md-11, .col-lg-11 {
    width: 91.66666666666666%; }
  .col-sm-10, .col-md-10, .col-lg-10 {
    width: 83.33333333333334%; }
  .col-sm-9, .col-md-9, .col-lg-9 {
    width: 75%; }
  .col-sm-8, .col-md-8, .col-lg-8 {
    width: 66.66666666666666%; }
  .col-sm-7, .col-md-7, .col-lg-7 {
    width: 58.333333333333336%; }
  .col-sm-6, .col-md-6, .col-lg-6 {
    width: 50%; }
  .col-sm-5, .col-md-5, .col-lg-5 {
    width: 41.66666666666667%; }
  .col-sm-4, .col-md-4, .col-lg-4 {
    width: 33.33333333333333%; }
  .col-sm-3, .col-md-3, .col-lg-3 {
    width: 25%; }
  .col-sm-2, .col-md-2, .col-lg-2 {
    width: 16.666666666666664%; }
  .col-sm-1, .col-md-1, .col-lg-1 {
    width: 8.333333333333332%; }
  .Main__Col.col-md-8, .Main__Col.col-md-6 {
    width: 100%; }
  .Right__Col {
    width: 25%;
    float: left;
    margin-left: 0 !important; }
    .Right__Col p {
      font-size: .875rem; }
    .Right__Col .Teaser--Block .Profile__Description h3 {
      font-size: 0.75em; }
  .ts-overlay-open .ts-overlay {
    opacity: 1;
    z-index: 10000000000000;
    background-color: white; }
  .block-100 .Page__Block .Gallery__Block .gallery-content-container {
    float: left;
    display: block; }
  .block-100 .Page__Block .Gallery__Block .gallery-image-container {
    width: 440px;
    height: 440px;
    float: left;
    max-width: 50%; }
  .Gallery__Block {
    overflow: hidden !important; }
    .Gallery__Block .ts-link, .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link {
      display: none !important; }
    .Gallery__Block .gallery-image-container img {
      height: auto !important;
      width: 100% !important; }
    .Gallery__Block .gallery-content-container {
      float: none !important;
      display: block !important; }
  .Teaser--Block {
    background-color: #f2f2f2 !important;
    height: auto !important; }
    .Teaser--Block .Teaser__Info__Wrapper {
      position: inherit !important; }
  .Story__Block {
    border: 1px solid #808080 !important;
    min-height: 440px !important;
    max-height: inherit !important;
    height: auto !important;
    width: 100%; }
    
    .Story__Block .ts-link,
    .Story__Block .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link,
    .Page__Block .Gallery__Block .gallery-content-container .Story__Block .gallery-email-link {
      display: none !important; }
  .Gallery__Block, .Share__Block__Placeholder, .Teaser--Block, .Story__Block {
    page-break-inside: avoid; }
  .Page__Block .Gallery__Block {
    overflow: inherit !important; }
  h2, h3 {
    page-break-after: avoid; }
  img {
    max-width: 100% !important; }
  article {
    page-break-before: always; }
  ul, img {
    page-break-inside: avoid; }
  table {
    height: auto !important;
    page-break-before: always; }
    table tr {
      page-break-inside: avoid; }
  body.ts-overlay-open {
    overflow-y: visible !important; }
    body.ts-overlay-open .Content--Area {
      display: none !important; }
    body.ts-overlay-open .ts-overlay {
      position: static !important;
      height: auto !important;
      max-height: auto !important; }
      body.ts-overlay-open .ts-overlay .ts-overlay__inner {
        overflow-y: visible !important;
        height: auto !important;
        max-height: auto !important; }
        body.ts-overlay-open .ts-overlay .ts-overlay__inner img {
          page-break-inside: avoid; } }

/*@page {
    size: A4;
    margin: 0;
}*/
.Theme2016 iframe[src*="//telia-external.videomarketing.co"] {
  width: 100% !important;
  height: 50% !important;
  top: auto !important; }

.Theme2016 .Content--Area {
  box-shadow: 0px -2px 2px 0 rgba(0, 0, 0, 0.1); }

.Theme2016 .pebbles {
  display: none !important; }

.Theme2016 .header-top {
  background-color: rgba(242, 242, 242, 0.5); }

.Theme2016 .header-menu {
  z-index: 3; }

.Theme2016 .header-main {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1); }
  .Theme2016 .header-main.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    backface-visibility: hidden; }
    .Theme2016 .header-main.fixed.hideTop {
      -moz-transform: translatey(-72px);
      -o-transform: translatey(-72px);
      -ms-transform: translatey(-72px);
      -webkit-transform: translatey(-72px);
      transform: translatey(-72px); }
    .Theme2016 .header-main.fixed.hideAll {
      -moz-transform: translateY(-100%);
      -o-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%); }

.Theme2016 .header-logo {
  margin-top: 12px;
  background-color: white;
  z-index: 3; }

.Theme2016 .header-search-form {
  top: 30px;
  right: 10px; }
  .Theme2016 .header-search-form .Header__Search__Icon {
    top: -3px;
    padding: 0; }

.Theme2016 .search-form-open input {
  padding-top: 17px; }

.Theme2016 .header-menu-container:before {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0)); }

.Theme2016 .Menu__placeholder {
  width: 100%;
  padding: 0 50px 0 0; }

.Theme2016 .MainMenu a, .Theme2016 .MainMenu .Block__Share {
  font-size: 1rem;
  padding: 28px 10px 20px;
  line-height: 1.4rem; }

.Theme2016 .MenuItem__Wrapper.selected {
  font-weight: 700; }

.Theme2016 .SecondaryMenu {
  display: block;
  position: relative;
  background: none;
  border: 0;
  width: auto; }
  .Theme2016 .SecondaryMenu .menu {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    display: block;
    padding: 1rem 15px 0; }

.Theme2016 .SecondaryMenu__Items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden; }

.Theme2016 .SecondaryMenu__Item {
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0rem 2rem 1rem 0;
  font-size: 0.875em; }
  .Theme2016 .SecondaryMenu__Item.selected {
    font-weight: 700; }
  .Theme2016 .SecondaryMenu__Item a:hover, .Theme2016 .SecondaryMenu__Item .Block__Share:hover, .Theme2016 .SecondaryMenu__Item a:active, .Theme2016 .SecondaryMenu__Item .Block__Share:active, .Theme2016 .SecondaryMenu__Item a:focus, .Theme2016 .SecondaryMenu__Item .Block__Share:focus {
    color: #990ae3;
    text-decoration: none; }
  .Theme2016 .SecondaryMenu__Item > ul {
    display: none;
    position: absolute;
    top: 100%;
    top: calc(100% - 2px);
    right: auto;
    max-width: 260px;
    min-width: 160px;
    background: #f2f2f2;
    padding: 1.25rem 1.25rem 0;
    margin-top: 2px; }
    .Theme2016 .SecondaryMenu__Item > ul li {
      display: block;
      font-weight: 500;
      margin: 0 0 0.8rem;
      overflow-wrap: break-word;
      word-wrap: break-word;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      -moz-hyphens: auto;
      hyphens: auto; }
      .Theme2016 .SecondaryMenu__Item > ul li.selected {
        font-weight: 700; }
  .Theme2016 .SecondaryMenu__Item.active {
    cursor: pointer; }
    .Theme2016 .SecondaryMenu__Item.active > ul {
      display: inline-block; }

.Theme2016 .Breadcrumbs {
  margin-bottom: 0.5rem;
  margin-top: 2.5rem; }
  .Theme2016 .Breadcrumbs:before {
    content: ''; }
  .Theme2016 .Breadcrumbs li {
    font-size: 0.875rem; }
    .Theme2016 .Breadcrumbs li:after {
      color: #6e6e6e;
      content: '/';
      margin: 0; }
    .Theme2016 .Breadcrumbs li:first-child {
      display: none; }
    .Theme2016 .Breadcrumbs li:last-child {
      display: none; }
    .Theme2016 .Breadcrumbs li:nth-last-child(2):after {
      display: none; }
    .Theme2016 .Breadcrumbs li a, .Theme2016 .Breadcrumbs li .Block__Share {
      color: #6e6e6e;
      text-transform: uppercase; }
      .Theme2016 .Breadcrumbs li a:hover, .Theme2016 .Breadcrumbs li .Block__Share:hover, .Theme2016 .Breadcrumbs li a:active, .Theme2016 .Breadcrumbs li .Block__Share:active, .Theme2016 .Breadcrumbs li a:focus, .Theme2016 .Breadcrumbs li .Block__Share:focus {
        color: #990ae3; }

.Theme2016 .Main__Wrapper.Big__Blocks > .ts-h2 {
  color: #990ae3;
  margin: 0.75em 0; }

.Theme2016 .Landing__Page__Contentarea .List__Block header {
  background-color: #ebebeb; }

.Theme2016 .Landing__Page__Secondary__Content {
  background: white; }

.Theme2016 .Page__Secondary__Content {
  margin-top: 1rem;
  margin-bottom: 1rem; }
  .Theme2016 .Page__Secondary__Content tr {
    background: white; }

.Theme2016 .MainFooter__Wrapper {
  margin-top: 0; }

.Theme2016 .StartPage .Stories--Block {
  background-color: #f3f3f3;
  margin: 0 -700px; }

.Theme2016 .StartPage .stories-block__container {
  margin: 0 700px;
  padding-bottom: 40px; }

.Theme2016 .block-25 .Page__Block .Block__Text {
  padding-left: 30px; }

.Theme2016 .block-25 .Teaser--Block, .Theme2016 .block-one-fourth .Teaser--Block {
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.Theme2016 .block-50 .Teaser--Block .Teaser__Image__Wrapper {
  width: 100%; }

.Theme2016 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
  width: 100%; }

.Theme2016 .block-50 .Teaser--Block .Teaser__Description__Wrapper {
  width: 100%; }

.Theme2016 .Page__Block .Story__Block {
  overflow: hidden;
  padding: 0;
  position: relative; }
  .Theme2016 .Page__Block .Story__Block .row > div {
    padding-right: 0; }
  .Theme2016 .Page__Block .Story__Block .Block__Image {
    margin-right: 15px;
    max-height: 350px; }
  .Theme2016 .Page__Block .Story__Block .Block__Text {
    padding: 20px 35px 50px 20px; }
    .Theme2016 .Page__Block .Story__Block .Block__Text .ts-link, .Theme2016 .Page__Block .Story__Block .Block__Text .Gallery__Block .gallery-content-container .gallery-email-link, .Theme2016 .Page__Block .Gallery__Block .gallery-content-container .Story__Block .Block__Text .gallery-email-link {
      position: absolute;
      bottom: 15px;
      right: 20px;
      width: 0;
      height: 28px;
      padding-left: 28px;
      background-color: #CCCCCC;
      border-radius: 50%; }
      .Theme2016 .Page__Block .Story__Block .Block__Text .ts-link svg, .Theme2016 .Page__Block .Story__Block .Block__Text .Gallery__Block .gallery-content-container .gallery-email-link svg, .Theme2016 .Page__Block .Gallery__Block .gallery-content-container .Story__Block .Block__Text .gallery-email-link svg {
        left: 11px;
        fill: white; }
  .Theme2016 .Page__Block .Story__Block .ts-h2 {
    color: #222222; }

.Theme2016 .Open__Positions__Block {
  position: relative; }

.Theme2016 .List__Block {
  background-color: #f3f3f3; }
  .Theme2016 .List__Block.News__Kit__List header .view-all {
    display: none; }
  .Theme2016 .List__Block.News__Block__Wrapper .hide-newslist {
    background-color: #f3f3f3; }
  .Theme2016 .List__Block.News__Block__Wrapper ul {
    margin-bottom: 70px;
    height: 330px;
    overflow: hidden; }
  .Theme2016 .List__Block.News__Block__Wrapper li {
    border-bottom: none; }
  .Theme2016 .List__Block.Open__Positions__Block .Open__Positions__Block__Placeholder {
    height: auto;
    padding-bottom: 70px; }
  .Theme2016 .List__Block.Open__Positions__Block .News__Block__List {
    height: 400px; }
  .Theme2016 .List__Block.Open__Positions__Block .OpenList {
    height: 100%;
    overflow: hidden; }
  .Theme2016 .List__Block.Open__Positions__Block li {
    border-bottom: none; }
  .Theme2016 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder {
    height: auto;
    padding-bottom: 70px; }
  .Theme2016 .List__Block.Open__Positions__Block .News__Block__List {
    height: 400px; }
  .Theme2016 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder.OpenList {
    width: 100%; }
  .Theme2016 .List__Block.Open__Positions__Block .Workday__Joblisting__Block .dropdown__Wrapper {
    margin-bottom: 0.25em !important; }
  .Theme2016 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder ul {
    width: 100%; }
  .Theme2016 .List__Block.Open__Positions__Block .GeneralFilter__Tags {
    height: 100%; }
  .Theme2016 .List__Block.Open__Positions__Block .OpenList {
    height: 100%;
    overflow: hidden; }
  .Theme2016 .List__Block.Open__Positions__Block li {
    border-bottom: none; }
  .Theme2016 .List__Block header {
    background-color: white;
    position: static; }
    .Theme2016 .List__Block header .view-all {
      left: 10px;
      right: auto;
      bottom: 10px;
      border: 1px solid transparent;
      border-radius: 2.0833333334em;
      line-height: 1;
      padding: 1.0625rem 1.875rem;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: .08571428571em;
      margin: .0625rem .375rem;
      background-color: #FFF; }
      .Theme2016 .List__Block header .view-all:hover {
        background-color: #990ae3;
        color: #FFF; }
      .Theme2016 .List__Block header .view-all:active {
        background-color: #9b009b;
        color: white; }
  .Theme2016 .List__Block .ts-h2 {
    color: #990ae3;
    margin: 0.75em 0 0.25em 0; }
  .Theme2016 .List__Block ul {
    height: 400px;
    border: 0; }
  .Theme2016 .List__Block li {
    border-top: 0;
    border-bottom: 1px solid #e7e7e7; }

.Theme2016 .block-75 .Teaser--Block .teaser-block__content-container {
  width: 100%; }

.Theme2016 .block-75 .Teaser--Block .Teaser__Heading__Wrapper {
  width: 100%; }

.Theme2016 .block-75 .Teaser--Block .Teaser__Description__Wrapper {
  width: 100%; }

.Theme2016 .Teaser--Block .ts-button--secondary {
  border-color: #FFF;
  background-color: #FFF;
  color: #990ae3; }

.Theme2016 .Teaser--Block .ts-button--secondary:hover {
  border-color: #cc00ff;
  background-color: #cc00ff;
  color: #FFF; }

.Theme2016 .Teaser--Block .teaser-block__content-container {
  position: absolute;
  padding: 25px 20px;
  width: 100%; }

.Theme2016 .Teaser--Block .Teaser__Info__Wrapper {
  padding: 0;
  position: static !important; }

.Theme2016 .Teaser--Block .Teaser__Heading__Wrapper {
  padding: 0;
  font-size: 2em;
  position: static;
  float: none; }

.Theme2016 .Teaser--Block .Teaser__Description__Wrapper {
  float: none;
  padding: 25px 20px 25px 0; }

.Theme2016 .Teaser--Block .Teaser__Button {
  position: static; }

.Theme2016 .Teaser--Block .ts-button {
  /*padding: 0;
           background-color: transparent;
           color: white;
           text-overflow: ellipsis;
           overflow:hidden;
           white-space:nowrap;
           width: 100%;*/ }
  .Theme2016 .Teaser--Block .ts-button.colour-black-2016 {
    color: #000; }
  .Theme2016 .Teaser--Block .ts-button.colour-white-2016 {
    color: white; }

.Theme2016 .Right__Col .Teaser--Block .Teaser__Heading__Wrapper {
  font-size: 1.5em !important; }

.Theme2016 .block-100 .Share__Block__Placeholder {
  padding: 40px 0; }

.Theme2016 .block-100 .Share__Block__Wrapper {
  height: 220px;
  background-image: none;
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Block__Header {
    width: auto;
    width: initial;
    display: inline-block;
    padding-right: 30px;
    position: relative; }
  .Theme2016 .block-100 .Share__Block__Wrapper .ts-h2 {
    position: static; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Symbol {
    position: absolute;
    display: inline-block;
    left: 0;
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-size: 1.5rem; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Block__Content {
    padding-top: 40px; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Price {
    color: #990ae3; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap .Change__Trend__Icon .ts-symbol {
    fill: #7FD322; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap .Share__Change__Price, .Theme2016 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap .Share__Change__Percent {
    font-weight: 700;
    color: #7FD322; }
  .Theme2016 .block-100 .Share__Block__Wrapper.Negative .Change__Trend__Icon .ts-symbol {
    fill: #da2f12; }
  .Theme2016 .block-100 .Share__Block__Wrapper.Negative .Share__Change__Price, .Theme2016 .block-100 .Share__Block__Wrapper.Negative .Share__Change__Percent {
    font-weight: 700;
    color: #da2f12; }
  .Theme2016 .block-100 .Share__Block__Wrapper.Positive .Change__Trend__Icon .ts-symbol {
    fill: #7FD322; }
  .Theme2016 .block-100 .Share__Block__Wrapper.Positive .Share__Change__Price, .Theme2016 .block-100 .Share__Block__Wrapper.Positive .Share__Change__Percent {
    color: #7FD322; }
  .Theme2016 .block-100 .Share__Block__Wrapper .ts-link, .Theme2016 .block-100 .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Theme2016 .block-100 .Share__Block__Wrapper .gallery-email-link {
    right: 0;
    bottom: 0;
    color: #222222;
    padding-right: 20px;
    font-size: 0.75em;
    display: inline-block;
    line-height: 71px;
    font-weight: 700;
    text-transform: uppercase; }
    .Theme2016 .block-100 .Share__Block__Wrapper .ts-link svg, .Theme2016 .block-100 .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link svg, .Page__Block .Gallery__Block .gallery-content-container .Theme2016 .block-100 .Share__Block__Wrapper .gallery-email-link svg {
      display: none; }
  .Theme2016 .block-100 .Share__Block__Wrapper .ts-symbol {
    position: static;
    float: right; }
  .Theme2016 .block-100 .Share__Block__Wrapper .Share__Refresh__Time {
    position: static;
    display: inline-block;
    color: #a0a0a0;
    float: right;
    line-height: 25px; }

.Theme2016 .ts-footer-nav__li__top-level-text {
  border-color: #AF4BE9; }

.Theme2016 .ts-footer-sub-menu__ul__li {
  border-color: #AF4BE9; }

.Theme2016 .ts-footer-sub-menu__ul__li__a {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  color: #ffffff; }
  .Theme2016 .ts-footer-sub-menu__ul__li__a:hover {
    color: #DDAEF6; }

@media (min-width: 48em) {
  .Theme2016 .hero .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%; }
  .Theme2016 .hero .hero-image-container {
    max-height: 100%; }
  .Theme2016 .hero [class*="col"] {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    display: inline-block;
    height: auto;
    max-width: 75%; }
  .Theme2016 .hero.hero-Left [class*="col"] {
    float: left; }
  .Theme2016 .hero.hero-Center [class*="col"] {
    margin: auto;
    text-align: center; }
  .Theme2016 .hero.hero-Right [class*="col"] {
    margin-left: auto;
    text-align: right; }
  .Theme2016 .hero.third-level-hero {
    height: 270px; }
  .Theme2016 .hero .Block__Header li {
    float: none; }
  .Theme2016 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 2.5em; }
  .Theme2016 .Page__Block .Story__Block .Block__Image {
    margin-right: 0;
    max-height: none; }
  .Theme2016 .Page__Block .Story__Block .Block__Text {
    padding-left: 0; }
  .Theme2016 .List__Block.Open__Positions__Block .Open__Positions__Block__Placeholder {
    height: 400px; }
  .Theme2016 .List__Block.Open__Positions__Block .block-100 Open__Positions__Block__Placeholder, .Theme2016 .List__Block.Open__Positions__Block Open__Positions__Workday__Block__Placeholder {
    height: 460px; }
  .Theme2016 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder.dropdown--list {
    background-color: #f3f3f3; }
  .Theme2016 .block-100 .teaser-block__content-container .Teaser__Heading__Wrapper {
    font-size: 1.5em; }
  .Theme2016 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 1.5em; }
  .Theme2016 .block-25:not(.expand) .Teaser--Block, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block {
    /*.ts-button{
                       color: $primary--color;
                   }*/ }
    .Theme2016 .block-25:not(.expand) .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper {
      height: 230px;
      float: none;
      width: auto;
      width: initial; }
    .Theme2016 .block-25:not(.expand) .Teaser--Block .teaser-block__content-container, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block .teaser-block__content-container {
      width: 100%; }
    .Theme2016 .block-25:not(.expand) .Teaser--Block .Teaser__Info__Wrapper, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Info__Wrapper {
      position: static; }
    .Theme2016 .block-25:not(.expand) .Teaser--Block .Teaser__Heading__Wrapper, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Heading__Wrapper {
      width: 100%;
      float: none;
      font-size: 1.5em;
      color: #990ae3; }
    .Theme2016 .block-25:not(.expand) .Teaser--Block .Teaser__Description__Wrapper, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Description__Wrapper {
      float: none;
      width: 100%;
      display: none; }
    .Theme2016 .block-25:not(.expand) .Teaser--Block .Teaser__Button, .Theme2016 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Button {
      padding-top: 20px; }
  .Theme2016 .block-one-fourth .Teaser--Block:not(.expand) .Teaser__Heading__Wrapper {
    font-size: 1.2em; }
  .Theme2016 .block-one-fourth .Teaser--Block:not(.expand) .teaser-block__content-container {
    padding: 25px 14px; } }

@media (min-width: 62em) {
  .Theme2016 .Menu__placeholder {
    padding: 0 60px 0 20px;
    min-height: 70px; }
  .Theme2016 .menu-to-left {
    -moz-transform: translateX(-165px);
    -o-transform: translateX(-165px);
    -ms-transform: translateX(-165px);
    -webkit-transform: translateX(-165px);
    transform: translateX(-165px); }
  .Theme2016 .hero {
    height: 29.625rem;
    margin-top: -150px;
    padding-top: 148px; }
    .Theme2016 .hero .White__Block {
      background: none; }
    .Theme2016 .hero.third-level-hero {
      height: 25.875rem; }
  .Theme2016 .main-content {
    padding-top: 150px; }
  .Theme2016 .Page__Secondary__Content {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem; }
  .Theme2016 .StartPage {
    position: relative;
    top: -80px; }
    .Theme2016 .StartPage .hero {
      margin-top: -120px;
      padding-top: 150px; }
  .Theme2016 .Main__Wrapper.Big__Blocks > .ts-h2 {
    font-size: 2rem; }
  .Theme2016 .block-75 .Teaser--Block .teaser-block__content-container {
    width: 85%; }
  .Theme2016 .block-100 .Share__Block__Placeholder {
    padding: 40px 0; }
  .Theme2016 .block-100 .Share__Block__Wrapper {
    height: inherit;
    padding: 23px 100px 23px 30px; }
    .Theme2016 .block-100 .Share__Block__Wrapper .Share__Block__Header {
      padding-right: 60px; }
    .Theme2016 .block-100 .Share__Block__Wrapper .ts-h2 {
      position: static; }
    .Theme2016 .block-100 .Share__Block__Wrapper .Share__Block__Content {
      position: static;
      transform: none;
      padding: 0;
      width: auto;
      width: initial;
      display: inline-block; }
    .Theme2016 .block-100 .Share__Block__Wrapper .Share__Price {
      display: inline-block;
      font-size: 1.5em;
      margin: 0;
      padding-right: 100px; }
    .Theme2016 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap {
      display: inline-block; }
  .Theme2016 .block-100 .teaser-block__content-container .Teaser__Heading__Wrapper {
    font-size: 2.5em; }
  .Theme2016 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 2em; }
  .Theme2016 .StartPageVideo {
    position: relative;
    padding-top: 2em; }
  .Theme2016 .falback-image {
    position: relative;
    padding-bottom: 0; }
  .Theme2016 .falback-image img {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%; }
  .Theme2016 .videoWrapper {
    position: relative;
    padding-bottom: 53%;
    height: 0; }
  .Theme2016 .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .Theme2016 .videoWrappertwentythree {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%; }
  .Theme2016 .videoWrappertwentythree iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; } }

@media (min-width: 75em) {
  .Theme2016 .block-100 .teaser-block__content-container .Teaser__Heading__Wrapper {
    font-size: 2.7em; }
  .Theme2016 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 2.5em; }
  .Theme2016 .block-25 .Teaser--Block, .Theme2016 .block-one-fourth .Teaser--Block {
    /*.ts-button{
                   color: $primary--color;
               }*/ }
    .Theme2016 .block-25 .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper, .Theme2016 .block-one-fourth .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper {
      height: 230px;
      float: none;
      width: auto;
      width: initial; }
    .Theme2016 .block-25 .Teaser--Block .teaser-block__content-container, .Theme2016 .block-one-fourth .Teaser--Block .teaser-block__content-container {
      width: 100%; }
    .Theme2016 .block-25 .Teaser--Block .Teaser__Info__Wrapper, .Theme2016 .block-one-fourth .Teaser--Block .Teaser__Info__Wrapper {
      position: static; }
    .Theme2016 .block-25 .Teaser--Block .Teaser__Heading__Wrapper, .Theme2016 .block-one-fourth .Teaser--Block .Teaser__Heading__Wrapper {
      width: 100%;
      float: none;
      font-size: 1.5em;
      color: #990ae3; }
    .Theme2016 .block-25 .Teaser--Block .Teaser__Description__Wrapper, .Theme2016 .block-one-fourth .Teaser--Block .Teaser__Description__Wrapper {
      float: none;
      width: 100%;
      display: none; }
    .Theme2016 .block-25 .Teaser--Block .Teaser__Button, .Theme2016 .block-one-fourth .Teaser--Block .Teaser__Button {
      padding-top: 20px; }
  .Theme2016 .block-one-fourth .Teaser__Heading__Wrapper {
    font-size: 1.5em; }
  .Theme2016 .block-one-fourth .teaser-block__content-container {
    padding: 25px 14px; }
  .Theme2016 .block-25 .Page__Block .Story__Block .Block__Image {
    height: 270px; }
    .Theme2016 .block-25 .Page__Block .Story__Block .Block__Image img {
      height: auto; }
  .Theme2016 .block-25 .Page__Block .Story__Block .Block__Text {
    padding: 20px;
    padding-top: 0; }
  .Theme2016 .block-25 .Page__Block .Story__Block .Block__Preamble {
    display: none; } }

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .Theme2016 .MainMenu a, .Theme2016 .MainMenu .Block__Share,
  .Theme2016 .MainMenu .Block__Share {
    font-size: 15px;
    padding: 28px 5px 20px; } }

@media (min-width: 992px) {
  .Theme2016 .bannerWidth {
    width: 75%; } }

@media (device-width: 768px) {
  .videoWrapper {
    position: relative;
    padding-bottom: 53%;
    height: 0; }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .videoWrappertwentythree {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%; }
  .videoWrappertwentythree iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; } }

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .videoWrapper {
    position: relative;
    padding-bottom: 53%;
    height: 0; }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .videoWrappertwentythree {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%; }
  .videoWrappertwentythree iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; } }

.Theme2019 .hero {
  /*margin-top: 0 !important;*/
  padding-top: 0 !important;
  border: none !important; }
  .Theme2019 .hero img {
    width: 100% !important;
    min-height: 644px !important;
    position: absolute !important;
    object-fit: cover !important; }
  .Theme2019 .hero .hero-text {
    padding: 200px 0 0 !important;
    margin: 0 !important; }
  .Theme2019 .hero p {
    color: #fff !important; }
  @media only screen and (max-width: 991.98px) {
    .Theme2019 .hero {
      height: auto !important; }
      .Theme2019 .hero img {
        min-height: 490px !important;
        position: relative !important;
        object-fit: cover !important; }
      .Theme2019 .hero .bannerWidth {
        background-color: #f2f2f2 !important; }
      .Theme2019 .hero .hero-text {
        padding: 60px 0 0 !important;
        margin: 0 0 55px !important; }
      .Theme2019 .hero p {
        color: #000 !important; } }
  @media only screen and (min-width: 1024px) {
    .Theme2019 .hero .hero-text {
      padding: 150px 0 0 !important;
      margin: 0 !important; } }
  @media only screen and (min-width: 1280px) {
    .Theme2019 .hero .hero-text {
      padding: 200px 0 0 !important;
      margin: 0 !important; } }

.Theme2019 iframe[src*="//telia-external.videomarketing.co"] {
  width: 100% !important;
  height: 50% !important;
  top: auto !important; }

.Theme2019 .Content--Area {
  box-shadow: 0px -2px 2px 0 rgba(0, 0, 0, 0.1); }

.Theme2019 .pebbles {
  display: none !important; }

.Theme2019 .header-top {
  background-color: rgba(242, 242, 242, 0.5); }

.Theme2019 .header-menu {
  z-index: 3; }

.Theme2019 .header-main {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1); }
  .Theme2019 .header-main.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    backface-visibility: hidden; }
    .Theme2019 .header-main.fixed.hideTop {
      -moz-transform: translatey(-72px);
      -o-transform: translatey(-72px);
      -ms-transform: translatey(-72px);
      -webkit-transform: translatey(-72px);
      transform: translatey(-72px); }
    .Theme2019 .header-main.fixed.hideAll {
      -moz-transform: translateY(-100%);
      -o-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%); }

.Theme2019 .header-logo {
  margin-top: 12px; }

.Theme2019 .header-search-form {
  top: 30px;
  right: 10px; }
  .Theme2019 .header-search-form .Header__Search__Icon {
    top: -3px;
    padding: 0; }

.Theme2019 .search-form-open input {
  padding-top: 17px; }

.Theme2019 .header-menu-container {
  overflow: hidden; }
  .Theme2019 .header-menu-container:before {
    content: '';
    display: block;
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: -webkit-linear-gradient(left, white, rgba(255, 255, 255, 0));
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0)); }

.Theme2019 .Menu__placeholder {
  width: 100%;
  padding: 0 50px 0 0; }

.Theme2019 .MainMenu a, .Theme2019 .MainMenu .Block__Share {
  font-size: 1rem;
  padding: 28px 10px 20px;
  line-height: 1.4rem; }

.Theme2019 .MenuItem__Wrapper.selected {
  font-weight: 700; }

.Theme2019 .SecondaryMenu {
  display: block;
  position: relative;
  background: none;
  border: 0;
  width: auto; }
  .Theme2019 .SecondaryMenu .menu {
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    display: block;
    padding: 1rem 15px 0; }

.Theme2019 .SecondaryMenu__Items {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden; }

.Theme2019 .SecondaryMenu__Item {
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  margin: 0rem 2rem 1rem 0;
  font-size: 0.875em; }
  .Theme2019 .SecondaryMenu__Item.selected {
    font-weight: 700; }
  .Theme2019 .SecondaryMenu__Item a:hover, .Theme2019 .SecondaryMenu__Item .Block__Share:hover, .Theme2019 .SecondaryMenu__Item a:active, .Theme2019 .SecondaryMenu__Item .Block__Share:active, .Theme2019 .SecondaryMenu__Item a:focus, .Theme2019 .SecondaryMenu__Item .Block__Share:focus {
    color: #990ae3;
    text-decoration: none; }
  .Theme2019 .SecondaryMenu__Item > ul {
    display: none;
    position: absolute;
    top: 100%;
    top: calc(100% - 2px);
    right: auto;
    max-width: 260px;
    min-width: 160px;
    background: #f2f2f2;
    padding: 1.25rem 1.25rem 0;
    margin-top: 2px; }
    .Theme2019 .SecondaryMenu__Item > ul li {
      display: block;
      font-weight: 500;
      margin: 0 0 0.8rem;
      overflow-wrap: break-word;
      word-wrap: break-word;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      -moz-hyphens: auto;
      hyphens: auto; }
      .Theme2019 .SecondaryMenu__Item > ul li.selected {
        font-weight: 700; }
  .Theme2019 .SecondaryMenu__Item.active {
    cursor: pointer; }
    .Theme2019 .SecondaryMenu__Item.active > ul {
      display: inline-block; }

.Theme2019 .Breadcrumbs {
  margin-bottom: 0.5rem;
  margin-top: 2.5rem; }
  .Theme2019 .Breadcrumbs:before {
    content: ''; }
  .Theme2019 .Breadcrumbs li {
    font-size: 0.875rem; }
    .Theme2019 .Breadcrumbs li:after {
      color: #6e6e6e;
      content: '/';
      margin: 0; }
    .Theme2019 .Breadcrumbs li:first-child {
      display: none; }
    .Theme2019 .Breadcrumbs li:last-child {
      display: none; }
    .Theme2019 .Breadcrumbs li:nth-last-child(2):after {
      display: none; }
    .Theme2019 .Breadcrumbs li a, .Theme2019 .Breadcrumbs li .Block__Share {
      color: #6e6e6e;
      text-transform: uppercase; }
      .Theme2019 .Breadcrumbs li a:hover, .Theme2019 .Breadcrumbs li .Block__Share:hover, .Theme2019 .Breadcrumbs li a:active, .Theme2019 .Breadcrumbs li .Block__Share:active, .Theme2019 .Breadcrumbs li a:focus, .Theme2019 .Breadcrumbs li .Block__Share:focus {
        color: #990ae3; }

.Theme2019 .Main__Wrapper.Big__Blocks > .ts-h2 {
  color: #990ae3;
  margin: 0.75em 0; }

.Theme2019 .Landing__Page__Contentarea .List__Block header {
  background-color: #ebebeb; }

.Theme2019 .Landing__Page__Secondary__Content {
  background: white; }

.Theme2019 .Page__Secondary__Content {
  margin-top: 1rem;
  margin-bottom: 1rem; }
  .Theme2019 .Page__Secondary__Content tr {
    background: white; }

.Theme2019 .MainFooter__Wrapper {
  margin-top: 0; }

.Theme2019 .StartPage .Stories--Block {
  background-color: #f3f3f3;
  margin: 0 -700px; }

.Theme2019 .StartPage .stories-block__container {
  margin: 0 700px;
  padding-bottom: 40px; }

.Theme2019 .block-25 .Page__Block .Block__Text {
  padding-left: 30px; }

.Theme2019 .block-25 .Teaser--Block, .Theme2019 .block-one-fourth .Teaser--Block {
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }

.Theme2019 .block-50 .Teaser--Block .Teaser__Image__Wrapper {
  width: 100%; }

.Theme2019 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
  width: 100%; }

.Theme2019 .block-50 .Teaser--Block .Teaser__Description__Wrapper {
  width: 100%; }

.Theme2019 .Page__Block .Story__Block {
  overflow: hidden;
  padding: 0;
  position: relative; }
  .Theme2019 .Page__Block .Story__Block .row > div {
    padding-right: 0; }
  .Theme2019 .Page__Block .Story__Block .Block__Image {
    margin-right: 15px;
    max-height: 350px; }
  .Theme2019 .Page__Block .Story__Block .Block__Text {
    padding: 20px 35px 50px 20px; }
    .Theme2019 .Page__Block .Story__Block .Block__Text .ts-link, .Theme2019 .Page__Block .Story__Block .Block__Text .Gallery__Block .gallery-content-container .gallery-email-link, .Theme2019 .Page__Block .Gallery__Block .gallery-content-container .Story__Block .Block__Text .gallery-email-link {
      position: absolute;
      bottom: 15px;
      right: 20px;
      width: 0;
      height: 28px;
      padding-left: 28px;
      background-color: #CCCCCC;
      border-radius: 50%; }
      .Theme2019 .Page__Block .Story__Block .Block__Text .ts-link svg, .Theme2019 .Page__Block .Story__Block .Block__Text .Gallery__Block .gallery-content-container .gallery-email-link svg, .Theme2019 .Page__Block .Gallery__Block .gallery-content-container .Story__Block .Block__Text .gallery-email-link svg {
        left: 11px;
        fill: white; }
  .Theme2019 .Page__Block .Story__Block .ts-h2 {
    color: #222222; }

.Theme2019 .Open__Positions__Block {
  position: relative; }

.Theme2019 .List__Block {
  background-color: #f3f3f3; }
  .Theme2019 .List__Block.News__Kit__List header .view-all {
    display: none; }
  .Theme2019 .List__Block.News__Block__Wrapper .hide-newslist {
    background-color: #f3f3f3; }
  .Theme2019 .List__Block.News__Block__Wrapper ul {
    margin-bottom: 70px;
    height: 330px;
    overflow: hidden; }
  .Theme2019 .List__Block.News__Block__Wrapper li {
    border-bottom: none; }
  .Theme2019 .List__Block.Open__Positions__Block .Open__Positions__Block__Placeholder {
    height: auto;
    padding-bottom: 70px; }
  .Theme2019 .List__Block.Open__Positions__Block .News__Block__List {
    height: 400px; }
  .Theme2019 .List__Block.Open__Positions__Block .OpenList {
    height: 100%;
    overflow: hidden; }
  .Theme2019 .List__Block.Open__Positions__Block li {
    border-bottom: none; }
  .Theme2019 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder {
    height: auto;
    padding-bottom: 70px; }
  .Theme2019 .List__Block.Open__Positions__Block .News__Block__List {
    height: 400px; }
  .Theme2019 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder.OpenList {
    width: 100%; }
  .Theme2019 .List__Block.Open__Positions__Block .Workday__Joblisting__Block .dropdown__Wrapper {
    margin-bottom: 0.25em !important; }
  .Theme2019 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder ul {
    width: 100%; }
  .Theme2019 .List__Block.Open__Positions__Block .GeneralFilter__Tags {
    height: 100%; }
  .Theme2019 .List__Block.Open__Positions__Block .OpenList {
    height: 100%;
    overflow: hidden; }
  .Theme2019 .List__Block.Open__Positions__Block li {
    border-bottom: none; }
  .Theme2019 .List__Block header {
    background-color: white;
    position: static; }
    .Theme2019 .List__Block header .view-all {
      left: 10px;
      right: auto;
      bottom: 10px;
      border: 1px solid transparent;
      border-radius: 2.0833333334em;
      line-height: 1;
      padding: 1.0625rem 1.875rem;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: .08571428571em;
      margin: .0625rem .375rem;
      background-color: #FFF; }
      .Theme2019 .List__Block header .view-all:hover {
        background-color: #990ae3;
        color: #FFF; }
      .Theme2019 .List__Block header .view-all:active {
        background-color: #9b009b;
        color: white; }
  .Theme2019 .List__Block .ts-h2 {
    color: #990ae3;
    margin: 0.75em 0 0.25em 0; }
  .Theme2019 .List__Block ul {
    height: 400px;
    border: 0; }
  .Theme2019 .List__Block li {
    border-top: 0;
    border-bottom: 1px solid #e7e7e7; }

.Theme2019 .block-75 .Teaser--Block .teaser-block__content-container {
  width: 100%; }

.Theme2019 .block-75 .Teaser--Block .Teaser__Heading__Wrapper {
  width: 100%; }

.Theme2019 .block-75 .Teaser--Block .Teaser__Description__Wrapper {
  width: 100%; }

.Theme2019 .Teaser--Block .ts-button--secondary {
  border-color: #FFF;
  background-color: #FFF;
  color: #990ae3; }

.Theme2019 .Teaser--Block .ts-button--secondary:hover {
  border-color: #cc00ff;
  background-color: #cc00ff;
  color: #FFF; }

.Theme2019 .Teaser--Block .teaser-block__content-container {
  position: absolute;
  padding: 25px 20px;
  width: 100%; }

.Theme2019 .Teaser--Block .Teaser__Info__Wrapper {
  padding: 0;
  position: static !important; }

.Theme2019 .Teaser--Block .Teaser__Heading__Wrapper {
  padding: 0;
  font-size: 2em;
  position: static;
  float: none; }

.Theme2019 .Teaser--Block .Teaser__Description__Wrapper {
  float: none;
  padding: 25px 20px 25px 0; }

.Theme2019 .Teaser--Block .Teaser__Button {
  position: static; }

.Theme2019 .Teaser--Block .ts-button {
  /*padding: 0;
           background-color: transparent;
           color: white;
           text-overflow: ellipsis;
           overflow:hidden;
           white-space:nowrap;
           width: 100%;*/ }
  .Theme2019 .Teaser--Block .ts-button.colour-black-2016 {
    color: #000; }
  .Theme2019 .Teaser--Block .ts-button.colour-white-2016 {
    color: white; }

.Theme2019 .Right__Col .Teaser--Block .Teaser__Heading__Wrapper {
  font-size: 1.5em !important; }

.Theme2019 .block-100 .Share__Block__Placeholder {
  padding: 40px 0; }

.Theme2019 .block-100 .Share__Block__Wrapper {
  height: 220px;
  background-image: none;
  background-color: #f3f3f3;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Block__Header {
    width: auto;
    width: initial;
    display: inline-block;
    padding-right: 30px;
    position: relative; }
  .Theme2019 .block-100 .Share__Block__Wrapper .ts-h2 {
    position: static; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Symbol {
    position: absolute;
    display: inline-block;
    left: 0;
    font-family: "Pebble", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-size: 1.5rem; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Block__Content {
    padding-top: 40px; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Price {
    color: #990ae3; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap .Change__Trend__Icon .ts-symbol {
    fill: #7FD322; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap .Share__Change__Price, .Theme2019 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap .Share__Change__Percent {
    font-weight: 700;
    color: #7FD322; }
  .Theme2019 .block-100 .Share__Block__Wrapper.Negative .Change__Trend__Icon .ts-symbol {
    fill: #da2f12; }
  .Theme2019 .block-100 .Share__Block__Wrapper.Negative .Share__Change__Price, .Theme2019 .block-100 .Share__Block__Wrapper.Negative .Share__Change__Percent {
    font-weight: 700;
    color: #da2f12; }
  .Theme2019 .block-100 .Share__Block__Wrapper.Positive .Change__Trend__Icon .ts-symbol {
    fill: #7FD322; }
  .Theme2019 .block-100 .Share__Block__Wrapper.Positive .Share__Change__Price, .Theme2019 .block-100 .Share__Block__Wrapper.Positive .Share__Change__Percent {
    color: #7FD322; }
  .Theme2019 .block-100 .Share__Block__Wrapper .ts-link, .Theme2019 .block-100 .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link, .Page__Block .Gallery__Block .gallery-content-container .Theme2019 .block-100 .Share__Block__Wrapper .gallery-email-link {
    right: 0;
    bottom: 0;
    color: #222222;
    padding-right: 20px;
    font-size: 0.75em;
    display: inline-block;
    line-height: 71px;
    font-weight: 700;
    text-transform: uppercase; }
    .Theme2019 .block-100 .Share__Block__Wrapper .ts-link svg, .Theme2019 .block-100 .Share__Block__Wrapper .Page__Block .Gallery__Block .gallery-content-container .gallery-email-link svg, .Page__Block .Gallery__Block .gallery-content-container .Theme2019 .block-100 .Share__Block__Wrapper .gallery-email-link svg {
      display: none; }
  .Theme2019 .block-100 .Share__Block__Wrapper .ts-symbol {
    position: static;
    float: right; }
  .Theme2019 .block-100 .Share__Block__Wrapper .Share__Refresh__Time {
    position: static;
    display: inline-block;
    color: #a0a0a0;
    float: right;
    line-height: 25px; }

.Theme2019 .ts-footer-nav__li__top-level-text {
  border-color: #AF4BE9; }

.Theme2019 .ts-footer-sub-menu__ul__li {
  border-color: #AF4BE9; }

.Theme2019 .ts-footer-sub-menu__ul__li__a {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  color: #ffffff; }
  .Theme2019 .ts-footer-sub-menu__ul__li__a:hover {
    color: #DDAEF6; }

@media (min-width: 48em) {
  .Theme2019 .hero .row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: 100%; }
  .Theme2019 .hero .hero-image-container {
    max-height: 100%; }
  .Theme2019 .hero [class*="col"] {
    -webkit-box-flex: 1 1 auto;
    -moz-box-flex: 1 1 auto;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    display: inline-block;
    height: auto;
    max-width: 75%; }
  .Theme2019 .hero.hero-Left [class*="col"] {
    float: left; }
  .Theme2019 .hero.hero-Center [class*="col"] {
    margin: auto;
    text-align: center; }
  .Theme2019 .hero.hero-Right [class*="col"] {
    margin-left: auto;
    text-align: right; }
  .Theme2019 .hero.third-level-hero {
    height: 270px; }
  .Theme2019 .hero .Block__Header li {
    float: none; }
  .Theme2019 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 2.5em; }
  .Theme2019 .Page__Block .Story__Block .Block__Image {
    margin-right: 0;
    max-height: none; }
  .Theme2019 .Page__Block .Story__Block .Block__Text {
    padding-left: 0; }
  .Theme2019 .List__Block.Open__Positions__Block .Open__Positions__Block__Placeholder {
    height: 400px; }
  .Theme2019 .List__Block.Open__Positions__Block .block-100 Open__Positions__Block__Placeholder, .Theme2019 .List__Block.Open__Positions__Block Open__Positions__Workday__Block__Placeholder {
    height: 460px; }
  .Theme2019 .List__Block.Open__Positions__Block .Open__Positions__Workday__Block__Placeholder.dropdown--list {
    background-color: #f3f3f3; }
  .Theme2019 .block-100 .teaser-block__content-container .Teaser__Heading__Wrapper {
    font-size: 1.5em; }
  .Theme2019 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 1.5em; }
  .Theme2019 .block-25:not(.expand) .Teaser--Block, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block {
    /*.ts-button{
                       color: $primary--color;
                   }*/ }
    .Theme2019 .block-25:not(.expand) .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper {
      height: 230px;
      float: none;
      width: auto;
      width: initial; }
    .Theme2019 .block-25:not(.expand) .Teaser--Block .teaser-block__content-container, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block .teaser-block__content-container {
      width: 100%; }
    .Theme2019 .block-25:not(.expand) .Teaser--Block .Teaser__Info__Wrapper, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Info__Wrapper {
      position: static; }
    .Theme2019 .block-25:not(.expand) .Teaser--Block .Teaser__Heading__Wrapper, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Heading__Wrapper {
      width: 100%;
      float: none;
      font-size: 1.5em;
      color: #990ae3; }
    .Theme2019 .block-25:not(.expand) .Teaser--Block .Teaser__Description__Wrapper, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Description__Wrapper {
      float: none;
      width: 100%;
      display: none; }
    .Theme2019 .block-25:not(.expand) .Teaser--Block .Teaser__Button, .Theme2019 .block-one-fourth:not(.expand) .Teaser--Block .Teaser__Button {
      padding-top: 20px; }
  .Theme2019 .block-one-fourth .Teaser--Block:not(.expand) .Teaser__Heading__Wrapper {
    font-size: 1.2em; }
  .Theme2019 .block-one-fourth .Teaser--Block:not(.expand) .teaser-block__content-container {
    padding: 25px 14px; } }

@media (min-width: 62em) {
  .Theme2019 {
    /*.hero {
            height: remCalc(474px);
            margin-top: -$header-menu;
            padding-top: 148px;
            .White__Block {
                background: none;
            }
            &.third-level-hero{
                height: remCalc(414px);
            }
        }*/ }
    .Theme2019 .Menu__placeholder {
      padding: 0 60px 0 20px;
      min-height: 70px; }
    .Theme2019 .menu-to-left {
      -moz-transform: translateX(-165px);
      -o-transform: translateX(-165px);
      -ms-transform: translateX(-165px);
      -webkit-transform: translateX(-165px);
      transform: translateX(-165px); }
    .Theme2019 .main-content {
      padding-top: 190px; }
    .Theme2019 .Page__Secondary__Content {
      margin-top: 2.5rem;
      margin-bottom: 2.5rem; }
    .Theme2019 .StartPage {
      position: relative;
      top: -80px; }
      .Theme2019 .StartPage .hero {
        margin-top: -120px;
        padding-top: 190px; }
    .Theme2019 .Main__Wrapper.Big__Blocks > .ts-h2 {
      font-size: 2rem; }
    .Theme2019 .block-75 .Teaser--Block .teaser-block__content-container {
      width: 85%; }
    .Theme2019 .block-100 .Share__Block__Placeholder {
      padding: 40px 0; }
    .Theme2019 .block-100 .Share__Block__Wrapper {
      height: inherit;
      padding: 23px 100px 23px 30px; }
      .Theme2019 .block-100 .Share__Block__Wrapper .Share__Block__Header {
        padding-right: 60px; }
      .Theme2019 .block-100 .Share__Block__Wrapper .ts-h2 {
        position: static; }
      .Theme2019 .block-100 .Share__Block__Wrapper .Share__Block__Content {
        position: static;
        transform: none;
        padding: 0;
        width: auto;
        width: initial;
        display: inline-block; }
      .Theme2019 .block-100 .Share__Block__Wrapper .Share__Price {
        display: inline-block;
        font-size: 1.5em;
        margin: 0;
        padding-right: 100px; }
      .Theme2019 .block-100 .Share__Block__Wrapper .Share__Changes__Wrap {
        display: inline-block; }
    .Theme2019 .block-100 .teaser-block__content-container .Teaser__Heading__Wrapper {
      font-size: 2.5em; }
    .Theme2019 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
      font-size: 2em; }
    .Theme2019 .StartPageVideo {
      position: relative;
      padding-top: 2em; }
    .Theme2019 .falback-image {
      position: relative;
      padding-bottom: 0; }
    .Theme2019 .falback-image img {
      /*position: absolute;*/
      top: 0;
      left: 0;
      width: 100%; }
    .Theme2019 .videoWrapper {
      position: relative;
      padding-bottom: 53%;
      height: 0; }
    .Theme2019 .videoWrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .Theme2019 .videoWrappertwentythree {
      width: 100%;
      height: 0;
      position: relative;
      padding-bottom: 56.25%; }
    .Theme2019 .videoWrappertwentythree iframe {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; } }

@media (min-width: 75em) {
  .Theme2019 .block-100 .teaser-block__content-container .Teaser__Heading__Wrapper {
    font-size: 2.7em; }
  .Theme2019 .block-50 .Teaser--Block .Teaser__Heading__Wrapper {
    font-size: 2.5em; }
  .Theme2019 .block-25 .Teaser--Block, .Theme2019 .block-one-fourth .Teaser--Block {
    /*.ts-button{
                   color: $primary--color;
               }*/ }
    .Theme2019 .block-25 .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper, .Theme2019 .block-one-fourth .Teaser--Block .Teaser--Wrapper .Teaser__Image__Wrapper {
      height: 230px;
      float: none;
      width: auto;
      width: initial; }
    .Theme2019 .block-25 .Teaser--Block .teaser-block__content-container, .Theme2019 .block-one-fourth .Teaser--Block .teaser-block__content-container {
      width: 100%; }
    .Theme2019 .block-25 .Teaser--Block .Teaser__Info__Wrapper, .Theme2019 .block-one-fourth .Teaser--Block .Teaser__Info__Wrapper {
      position: static; }
    .Theme2019 .block-25 .Teaser--Block .Teaser__Heading__Wrapper, .Theme2019 .block-one-fourth .Teaser--Block .Teaser__Heading__Wrapper {
      width: 100%;
      float: none;
      font-size: 1.5em;
      color: #990ae3; }
    .Theme2019 .block-25 .Teaser--Block .Teaser__Description__Wrapper, .Theme2019 .block-one-fourth .Teaser--Block .Teaser__Description__Wrapper {
      float: none;
      width: 100%;
      display: none; }
    .Theme2019 .block-25 .Teaser--Block .Teaser__Button, .Theme2019 .block-one-fourth .Teaser--Block .Teaser__Button {
      padding-top: 20px; }
  .Theme2019 .block-one-fourth .Teaser__Heading__Wrapper {
    font-size: 1.5em; }
  .Theme2019 .block-one-fourth .teaser-block__content-container {
    padding: 25px 14px; }
  .Theme2019 .block-25 .Page__Block .Story__Block .Block__Image {
    height: 270px; }
    .Theme2019 .block-25 .Page__Block .Story__Block .Block__Image img {
      height: auto; }
  .Theme2019 .block-25 .Page__Block .Story__Block .Block__Text {
    padding: 20px;
    padding-top: 0; }
  .Theme2019 .block-25 .Page__Block .Story__Block .Block__Preamble {
    display: none; } }

@media only screen and (max-width: 768px) {
  .ts-header.tsab-header {
    margin-top: 18px; } }

.Landing__Page .Main__Wrapper {
  padding: 1.875rem 0 0; }

.OnePagerPage__Area .Main__Wrapper .telia-cards-wrapper {
  padding: 1.875rem 0 0; }

.OnePagerPage__Area .Main__Wrapper .full-width-Image-and-text-Block {
  padding: 1.875rem 0 0;
  max-height: none; }

.Landing__Page__Contentarea {
  background-color: white;
  shape-margin: -7rem; }

@media only screen and (min-width: 1920px) {
  .Theme2019 .hero img {
    min-height: 950px !important; } }

@media only screen and (min-width: 1920px) {
  .Theme2019 .hero {
    min-height: 950px !important; } }
